# aws_instance.example will be created
+ resource "aws_instance" "example" {
+ ami = "ami-0c55b159cbfafe1f0"
+ arn = (known after apply)
.
.
.
+ source_dest_check = true
+ spot_instance_request_id = (known after apply)
+ subnet_id = (known after apply)
+ tags_all = {
+ "Name" = "my-testing-instance"
+ "disposable" = "yes"
}
.
.
.
+ ebs_block_device {
+ delete_on_termination = (known after apply)
+ device_name = (known after apply)
+ encrypted = (known after apply)
+ iops = (known after apply)
+ kms_key_id = (known after apply)
+ snapshot_id = (known after apply)
+ tags = (known after apply)
+ tags_all = (known after apply)
+ throughput = (known after apply)
+ volume_id = (known after apply)
+ volume_size = (known after apply)
+ volume_type = (known after apply)
}
Plan: 1 to add, 0 to change, 0 to destroy.
aws_instance.example: Creating...
aws_instance.example: Still creating... [10s elapsed]
aws_instance.example: Still creating... [20s elapsed]
aws_instance.example: Still creating... [30s elapsed]
aws_instance.example: Creation complete after 35s [id=i-05da38bd017500ca6]
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
Helpers facilitate assessment to properly size PoC's scope. To use them, just load the script:
source helpers.sh
Helper | Description | Version |
---|---|---|
find_override_with_content | Finds specific file name and with specific content. | 1.0 |
find_by_env | Finds recursively all *.tfvars files where * matches a given set of stages | 1.0 |