Last active
March 29, 2022 00:53
-
-
Save kodelint/f72e1402e23dd301626ade3a5461bbd3 to your computer and use it in GitHub Desktop.
Autotf Verify Output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INFO 2022-03-28 17:50:29 will run terraform init, plan on [autotf-testing01.tfvars] | |
+------------------+----------------+-------------------------+-----------------------------------+ | |
| Resource Name | Backend Bucket | TFVars Name | Backend Key | | |
+------------------+----------------+-------------------------+-----------------------------------+ | |
| autotf-testing01 | autotf-testing | autotf-testing01.tfvars | stage/s3/autotf-testing01.tfstate | | |
+------------------+----------------+-------------------------+-----------------------------------+ | |
Initializing the backend... | |
Successfully configured the backend "s3"! Terraform will automatically | |
use this backend unless the backend configuration changes. | |
Initializing provider plugins... | |
- Finding latest version of hashicorp/aws... | |
- Installing hashicorp/aws v4.8.0... | |
- Installed hashicorp/aws v4.8.0 (signed by HashiCorp) | |
Terraform has created a lock file .terraform.lock.hcl to record the provider | |
selections it made above. Include this file in your version control repository | |
so that Terraform can guarantee to make the same selections by default when | |
you run "terraform init" in the future. | |
Terraform has been successfully initialized! | |
You may now begin working with Terraform. Try running "terraform plan" to see | |
any changes that are required for your infrastructure. All Terraform commands | |
should now work. | |
If you ever set or change modules or backend configuration for Terraform, | |
rerun this command to reinitialize your working directory. If you forget, other | |
commands will detect it and remind you to do so if necessary. | |
Acquiring state lock. This may take a few moments... | |
Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols: | |
+ create | |
Terraform will perform the following actions: | |
# aws_s3_bucket.bucket will be created | |
+ resource "aws_s3_bucket" "bucket" { | |
+ acceleration_status = (known after apply) | |
+ acl = (known after apply) | |
+ arn = (known after apply) | |
+ bucket = "autotf-testing01" | |
+ bucket_domain_name = (known after apply) | |
+ bucket_regional_domain_name = (known after apply) | |
+ cors_rule = (known after apply) | |
+ force_destroy = false | |
+ grant = (known after apply) | |
+ hosted_zone_id = (known after apply) | |
+ id = (known after apply) | |
+ lifecycle_rule = (known after apply) | |
+ logging = (known after apply) | |
+ object_lock_enabled = (known after apply) | |
+ policy = (known after apply) | |
+ region = (known after apply) | |
+ replication_configuration = (known after apply) | |
+ request_payer = (known after apply) | |
+ server_side_encryption_configuration = (known after apply) | |
+ tags = { | |
+ "Environment" = "Dev" | |
+ "Name" = "autotf-testing01" | |
} | |
+ tags_all = { | |
+ "Environment" = "Dev" | |
+ "Name" = "autotf-testing01" | |
} | |
+ versioning = (known after apply) | |
+ website = (known after apply) | |
+ website_domain = (known after apply) | |
+ website_endpoint = (known after apply) | |
+ object_lock_configuration { | |
+ object_lock_enabled = (known after apply) | |
+ rule = (known after apply) | |
} | |
} | |
Plan: 1 to add, 0 to change, 0 to destroy. | |
Changes to Outputs: | |
+ bucket_name = (known after apply) | |
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── | |
Note: You didn't use the -out option to save this plan, so Terraform can't guarantee to take exactly these actions if you run "terraform apply" now. | |
Releasing state lock. This may take a few moments... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment