|
| 1 | + |
| 2 | +# |
| 3 | + |
| 4 | +make tf_plan output |
| 5 | + |
| 6 | + |
| 7 | +``` |
| 8 | +Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols: |
| 9 | + + create |
| 10 | +
|
| 11 | +Terraform will perform the following actions: |
| 12 | +
|
| 13 | + # google_bigquery_dataset.project_dataset will be created |
| 14 | + + resource "google_bigquery_dataset" "project_dataset" { |
| 15 | + + creation_time = (known after apply) |
| 16 | + + dataset_id = "project_dataset" |
| 17 | + + default_collation = (known after apply) |
| 18 | + + delete_contents_on_destroy = false |
| 19 | + + effective_labels = (known after apply) |
| 20 | + + etag = (known after apply) |
| 21 | + + id = (known after apply) |
| 22 | + + is_case_insensitive = (known after apply) |
| 23 | + + last_modified_time = (known after apply) |
| 24 | + + location = "US" |
| 25 | + + max_time_travel_hours = (known after apply) |
| 26 | + + project = "axial-gist-411121" |
| 27 | + + self_link = (known after apply) |
| 28 | + + storage_billing_model = (known after apply) |
| 29 | + + terraform_labels = (known after apply) |
| 30 | + } |
| 31 | +
|
| 32 | + # google_storage_bucket.project-bucket will be created |
| 33 | + + resource "google_storage_bucket" "project-bucket" { |
| 34 | + + effective_labels = (known after apply) |
| 35 | + + force_destroy = true |
| 36 | + + id = (known after apply) |
| 37 | + + location = "US" |
| 38 | + + name = "data-engineering-zoomcamp-2024-project" |
| 39 | + + project = (known after apply) |
| 40 | + + public_access_prevention = (known after apply) |
| 41 | + + self_link = (known after apply) |
| 42 | + + storage_class = "STANDARD" |
| 43 | + + terraform_labels = (known after apply) |
| 44 | + + uniform_bucket_level_access = (known after apply) |
| 45 | + + url = (known after apply) |
| 46 | +
|
| 47 | + + lifecycle_rule { |
| 48 | + + action { |
| 49 | + + type = "AbortIncompleteMultipartUpload" |
| 50 | + } |
| 51 | + + condition { |
| 52 | + + age = 1 |
| 53 | + + matches_prefix = [] |
| 54 | + + matches_storage_class = [] |
| 55 | + + matches_suffix = [] |
| 56 | + + with_state = (known after apply) |
| 57 | + } |
| 58 | + } |
| 59 | + } |
| 60 | +
|
| 61 | +Plan: 2 to add, 0 to change, 0 to destroy. |
| 62 | +
|
| 63 | +``` |
| 64 | + |
| 65 | +# make tf_apply output |
| 66 | + |
| 67 | + |
| 68 | +``` |
| 69 | +Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols: |
| 70 | + + create |
| 71 | +
|
| 72 | +Terraform will perform the following actions: |
| 73 | +
|
| 74 | + # google_bigquery_dataset.project_dataset will be created |
| 75 | + + resource "google_bigquery_dataset" "project_dataset" { |
| 76 | + + creation_time = (known after apply) |
| 77 | + + dataset_id = "project_dataset" |
| 78 | + + default_collation = (known after apply) |
| 79 | + + delete_contents_on_destroy = false |
| 80 | + + effective_labels = (known after apply) |
| 81 | + + etag = (known after apply) |
| 82 | + + id = (known after apply) |
| 83 | + + is_case_insensitive = (known after apply) |
| 84 | + + last_modified_time = (known after apply) |
| 85 | + + location = "US" |
| 86 | + + max_time_travel_hours = (known after apply) |
| 87 | + + project = "axial-gist-411121" |
| 88 | + + self_link = (known after apply) |
| 89 | + + storage_billing_model = (known after apply) |
| 90 | + + terraform_labels = (known after apply) |
| 91 | + } |
| 92 | +
|
| 93 | + # google_storage_bucket.project-bucket will be created |
| 94 | + + resource "google_storage_bucket" "project-bucket" { |
| 95 | + + effective_labels = (known after apply) |
| 96 | + + force_destroy = true |
| 97 | + + id = (known after apply) |
| 98 | + + location = "US" |
| 99 | + + name = "data-engineering-zoomcamp-2024-project" |
| 100 | + + project = (known after apply) |
| 101 | + + public_access_prevention = (known after apply) |
| 102 | + + self_link = (known after apply) |
| 103 | + + storage_class = "STANDARD" |
| 104 | + + terraform_labels = (known after apply) |
| 105 | + + uniform_bucket_level_access = (known after apply) |
| 106 | + + url = (known after apply) |
| 107 | +
|
| 108 | + + lifecycle_rule { |
| 109 | + + action { |
| 110 | + + type = "AbortIncompleteMultipartUpload" |
| 111 | + } |
| 112 | + + condition { |
| 113 | + + age = 1 |
| 114 | + + matches_prefix = [] |
| 115 | + + matches_storage_class = [] |
| 116 | + + matches_suffix = [] |
| 117 | + + with_state = (known after apply) |
| 118 | + } |
| 119 | + } |
| 120 | + } |
| 121 | +
|
| 122 | +Plan: 2 to add, 0 to change, 0 to destroy. |
| 123 | +
|
| 124 | +Do you want to perform these actions? |
| 125 | + Terraform will perform the actions described above. |
| 126 | + Only 'yes' will be accepted to approve. |
| 127 | +
|
| 128 | + Enter a value: yes |
| 129 | +
|
| 130 | +google_bigquery_dataset.project_dataset: Creating... |
| 131 | +google_storage_bucket.project-bucket: Creating... |
| 132 | +google_bigquery_dataset.project_dataset: Creation complete after 1s [id=projects/axial-gist-411121/datasets/project_dataset] |
| 133 | +google_storage_bucket.project-bucket: Creation complete after 1s [id=data-engineering-zoomcamp-2024-project] |
| 134 | +
|
| 135 | +Apply complete! Resources: 2 added, 0 changed, 0 destroyed. |
| 136 | +
|
| 137 | +``` |
0 commit comments