Return to Tech/infra

terraform plan

$ terraform plan
Refreshing Terraform state in-memory prior to plan...
The refreshed state will be used to calculate this plan, but will not be
persisted to local or remote state storage.

data.aws_ssm_parameter.amzn2_ami: Refreshing state...

------------------------------------------------------------------------

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:

  # aws_instance.demo will be created
  + resource "aws_instance" "demo" {
      + ami                             = "ami-*"
      + arn                             = (known after apply)
      + associate_public_ip_address     = (known after apply)
      + availability_zone               = (known after apply)
      + cpu_core_count                  = (known after apply)
      + cpu_threads_per_core            = (known after apply)
      + get_password_data               = false
      + host_id                         = (known after apply)
      + id                              = (known after apply)
      + instance_state                  = (known after apply)
      + instance_type                   = "t2.micro"
      + ipv6_address_count              = (known after apply)
      + ipv6_addresses                  = (known after apply)
      + key_name                        = (known after apply)
      + network_interface_id            = (known after apply)
      + password_data                   = (known after apply)
      + placement_group                 = (known after apply)
      + primary_network_interface_id    = (known after apply)
      + private_dns                     = (known after apply)
      + private_ip                      = (known after apply)
      + security_groups                 = (known after apply)
      + source_dest_check               = true
      + subnet_id                       = (known after apply)
      + tenancy                         = (known after apply)
      + volume_tags                     = (known after apply)
      + vpc_security_group_ids          = (known after apply)

      + ebs_block_device {
          + delete_on_termination   = (known after apply)
          + device_name             = (known after apply)
          + encrypted               = (known after apply)
          + iops                    = (known after apply)
          + snapshot_id             = (known after apply)
          + volume_id               = (known after apply)
          + volume_size             = (known after apply)
          + volume_type             = (known after apply)
      }

      + ephemeral_block_device {
          + device_name  = (known after apply)
          + no_device    = (known after apply)
          + virtual_name = (known after apply)
      }

      + network_interface {
          + delete_on_termination   = (known after apply)
          + device_index            = (known after apply)
          + network_interface_id    = (known after apply)
      }

      + root_block_device {
          + delete_on_termination   = (known after apply)
          + iops                    = (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.

------------------------------------------------------------------------

Note: You didn't specify an "-out" parameter to save this plan, so Terraform
can't guarantee that exactly these action will be performed if
"terraform apply" is subsequently run.

Return to Tech/infra/Terraform
Return to Tech/infra