Open lra opened 8 months ago
Terraform v1.7.4 on darwin_arm64 + provider registry.terraform.io/oracle/oci v5.31.0
oci_streaming_stream_pool
Going from:
resource "oci_streaming_stream_pool" "this" { compartment_id = oci_identity_compartment.this.id name = "kafka" kafka_settings { auto_create_topics_enable = false log_retention_hours = 7 * 24 num_partitions = 1 } private_endpoint_settings { subnet_id = oci_core_subnet.private.id } }
To:
resource "oci_streaming_stream_pool" "this" { compartment_id = oci_identity_compartment.this.id name = "kafka" kafka_settings { auto_create_topics_enable = false log_retention_hours = 7 * 24 num_partitions = 1 } }
Terraform plan should recreate the oci_streaming_stream_pool resource.
The plan is showing no change: No changes. Your infrastructure matches the configuration.
No changes. Your infrastructure matches the configuration.
terraform apply
private_endpoint_settings
terraform plan
Thank you for reporting the issue. We have raised an internal ticket to track this. Our service engineers will get back to you.
Community Note
Terraform Version and Provider Version
Affected Resource(s)
oci_streaming_stream_pool
Terraform Configuration Files
Going from:
To:
Expected Behavior
Terraform plan should recreate the oci_streaming_stream_pool resource.
Actual Behavior
The plan is showing no change:
No changes. Your infrastructure matches the configuration.
Steps to Reproduce
terraform apply
private_endpoint_settings
blockterraform plan