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/1bedd2125f271734c9033924fce59727 to your computer and use it in GitHub Desktop.
Save recursivecodes/1bedd2125f271734c9033924fce59727 to your computer and use it in GitHub Desktop.
plan.sh
$ terraform plan
An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
  + create
Terraform will perform the following actions:
  # oci_objectstorage_bucket.create_bucket will be created
  + resource "oci_objectstorage_bucket" "create_bucket" {
      + access_type                  = "ObjectRead"
      + approximate_count            = (known after apply)
      + approximate_size             = (known after apply)
      + bucket_id                    = (known after apply)
      + compartment_id               = "ocid1.compartment.oc1..[redacted]"
      + created_by                   = (known after apply)
      + defined_tags                 = (known after apply)
      + etag                         = (known after apply)
      + freeform_tags                = (known after apply)
      + id                           = (known after apply)
      + is_read_only                 = (known after apply)
      + kms_key_id                   = (known after apply)
      + name                         = "my_new_bucket"
      + namespace                    = "toddrsharp"
      + object_events_enabled        = (known after apply)
      + object_lifecycle_policy_etag = (known after apply)
      + replication_enabled          = (known after apply)
      + storage_tier                 = (known after apply)
      + time_created                 = (known after apply)
      + versioning                   = (known after apply)
    }
Plan: 1 to add, 0 to change, 0 to destroy.
Changes to Outputs:
  - bucket_summaries = [
      - "archive-demo",
      - "barn-captures",
      - "custom-images",
      - "doggos",
      - "insulin-helper-uploads",
      - "micronaut-lab-assets",
      - "object-upload-demo-public",
      - "oss-storage-bucket",
      - "readme-assets",
      - "rocket-chat-uploads",
      - "usage_reports",
      - "wallet",
    ] -> null
  + new_bucket       = {
      + access_type                  = "ObjectRead"
      + approximate_count            = (known after apply)
      + approximate_size             = (known after apply)
      + bucket_id                    = (known after apply)
      + compartment_id               = "ocid1.compartment.oc1..[redacted]"
      + created_by                   = (known after apply)
      + defined_tags                 = (known after apply)
      + etag                         = (known after apply)
      + freeform_tags                = (known after apply)
      + id                           = (known after apply)
      + is_read_only                 = (known after apply)
      + kms_key_id                   = (known after apply)
      + metadata                     = null
      + name                         = "my_new_bucket"
      + namespace                    = "toddrsharp"
      + object_events_enabled        = (known after apply)
      + object_lifecycle_policy_etag = (known after apply)
      + replication_enabled          = (known after apply)
      + retention_rules              = []
      + storage_tier                 = (known after apply)
      + time_created                 = (known after apply)
      + timeouts                     = null
      + versioning                   = (known after apply)
    }
------------------------------------------------------------------------
Note: You didn't specify an "-out" parameter to save this plan, so Terraform
can't guarantee that exactly these actions will be performed if
"terraform apply" is subsequently run.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment