-
Notifications
You must be signed in to change notification settings - Fork 69
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Community Note
- Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
- Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
- If you are interested in working on this issue or have submitted a pull request, please leave a comment
Terraform Version and Provider Version
Terraform v1.5.6
on darwin_amd64
+ provider registry.terraform.io/oracle/oci v5.11.0
Affected Resource(s)
oci_core_instance
Terraform Configuration Files
module "instance" {
source = "oracle-terraform-modules/compute-instance/oci"
instance_count = 1
compartment_ocid = var.compartment_id
shape = "VM.Standard.A1.Flex"
source_ocid = lookup(data.oci_core_images.ampere_ubuntu_images.images[0], "id")
subnet_ocids = [var.subnet_id]
ssh_authorized_keys = "~/.ssh/id_rsa.pub"
instance_flex_memory_in_gbs = 6
instance_flex_ocpus = 1
}
Debug Output
Panic Output
Expected Behavior
Be able to specify a region separately to the provider config.
Actual Behavior
Uses region of provider at the time the instance was created even if changed later on.
Steps to Reproduce
terraform apply
to create an instance.- Change provider region.
terraform apply
- Should say no changes required.
Or just try to specify a different region than the provider. Apologies if this is already possible somehow and I've missed it!
Important Factoids
References
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working