Jacob C. Smith

Results 2 comments of Jacob C. Smith
trafficstars

To work around this bug we used the `ignore_changes` lifecycle attribute to instruct terraform to ignore changes to `bucket_listing_action`. Once added, terraform no longer attempts to recreate the `oci_objectstorage_preauthrequest` resource.

Using your example it would be like this ``` resource "oci_objectstorage_preauthrequest" "pkg" { access_type = "AnyObjectRead" bucket_listing_action = "ListObjects" bucket = "pkg" name = "pkg_repo_readonly" namespace = var.tenancy_namespace time_expires =...