-
Notifications
You must be signed in to change notification settings - Fork 724
Open
Labels
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
7.22.0
Affected Resource(s)
oci_integration_integration_instance
Terraform Configuration Files
resource "oci_integration_integration_instance" "oic_xxx_instance" {
compartment_id = oci_identity_compartment.cmp-xxx-01.id
display_name = "oic-xxx-01"
domain_id = data.oci_identity_domain.default_domain_id.id
integration_instance_type = "ENTERPRISEX" # or "ENTERPRISE"
consumption_model = "UCM" # or "GOV"
is_byol = false
shape = "PRODUCTION" # or "DEVELOPMENT"
message_packs = 1
#is_file_server_enabled = true
is_visual_builder_enabled = false
freeform_tags = local.tags
}Debug Output
Panic Output
Expected Behavior
Terraform should not show system_tags as a planned change if it is not user-configurable.
Actual Behavior
# oci_integration_integration_instance.oic_ytelse_instance will be updated in-place
~ resource "oci_integration_integration_instance" "oic_xx_instance" {
id = "ocid1.integrationinstance.oc19.eu-frankfurt-2.xx"
+ system_tags = (known after apply)
# (24 unchanged attributes hidden)
}
Steps to Reproduce
terraform plan