Skip to content

Instantly share code, notes, and snippets.

@recursivecodes
Created February 22, 2021 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save recursivecodes/c4e13d1ad3c6650ff38b96fc6e5bed15 to your computer and use it in GitHub Desktop.
Save recursivecodes/c4e13d1ad3c6650ff38b96fc6e5bed15 to your computer and use it in GitHub Desktop.
apply.sh
$ terraform apply
oci_objectstorage_bucket.create_bucket: Refreshing state... [id=n/toddrsharp/b/my_new_bucket]
An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
  ~ update in-place
Terraform will perform the following actions:
  # oci_objectstorage_bucket.create_bucket will be updated in-place
  ~ resource "oci_objectstorage_bucket" "create_bucket" {
      ~ access_type           = "ObjectRead" -> "NoPublicAccess"
        id                    = "n/toddrsharp/b/my_new_bucket"
        name                  = "my_new_bucket"
        # (16 unchanged attributes hidden)
    }
Plan: 0 to add, 1 to change, 0 to destroy.
Changes to Outputs:
  ~ new_bucket = {
      ~ access_type                  = "ObjectRead" -> "NoPublicAccess"
        # (22 unchanged elements hidden)
    }
Do you want to perform these actions?
  Terraform will perform the actions described above.
  Only 'yes' will be accepted to approve.
  Enter a value: yes
oci_objectstorage_bucket.create_bucket: Modifying... [id=n/toddrsharp/b/my_new_bucket]
oci_objectstorage_bucket.create_bucket: Modifications complete after 3s [id=n/toddrsharp/b/my_new_bucket]
Apply complete! Resources: 0 added, 1 changed, 0 destroyed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment