Skip to content

Instantly share code, notes, and snippets.

@Gary-Armstrong
Last active January 6, 2016 16:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gary-Armstrong/cfb08af3b8c802bd8770 to your computer and use it in GitHub Desktop.
Save Gary-Armstrong/cfb08af3b8c802bd8770 to your computer and use it in GitHub Desktop.
Terraform Adventure in which Commenting or Removing the Instance Resource does not Cause a Destroy
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ grep aws_instance terraform.tfstate
"aws_instance.bastion": {
"type": "aws_instance",
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform destroy -target=aws_instance.bastion
Do you really want to destroy?
Terraform will delete all your managed infrastructure.
There is no undo. Only 'yes' will be accepted to confirm.
Enter a value: yes
Apply complete! Resources: 0 added, 0 changed, 0 destroyed.
armstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ grep aws_instance terraform.tfstate
"aws_instance.bastion": {
"type": "aws_instance",
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
You are looking for "aws_instance.bastion" resource. It has a Name tag of "bastion-qa-useast1b-01".
1. # terraform destroy
2. Removed .tfstate backup file
3. Moved terraform.tfstate to a different filename (terraform.tfstate.has.stray.bastion)
4. After this a `terraform show` would naturally no longer contain a reference to the instance "aws_instance.bastion".
Contents of .tfstate with unremovable instance:
{
"version": 1,
"serial": 79,
"modules": [
{
"path": [
"root"
],
"outputs": {},
"resources": {
"aws_instance.bastion": {
"type": "aws_instance",
"depends_on": [
"aws_security_group.admin_sg",
"aws_subnet.public",
"aws_subnet.public",
"module.common-ami"
],
"primary": null,
"tainted": [
{
"id": "i-cd08d07c",
"attributes": {
"ami": "ami-61bbf104",
"associate_public_ip_address": "true",
"availability_zone": "us-east-1b",
"ebs_block_device.#": "0",
"ebs_optimized": "false",
"ephemeral_block_device.#": "0",
"iam_instance_profile": "",
"id": "i-cd08d07c",
"instance_type": "t2.micro",
"key_name": "sunfod-qa-us-east-1-general",
"monitoring": "false",
"private_dns": "ip-10-233-212-30.ec2.internal",
"private_ip": "10.233.212.30",
"public_dns": "",
"public_ip": "54.209.87.49",
"root_block_device.#": "1",
"root_block_device.0.delete_on_termination": "false",
"root_block_device.0.iops": "0",
"root_block_device.0.volume_size": "8",
"root_block_device.0.volume_type": "standard",
"security_groups.#": "0",
"source_dest_check": "true",
"subnet_id": "subnet-adfbe486",
"tags.#": "1",
"tags.Name": "bastion-qa-useast1b-01",
"tenancy": "default",
"vpc_security_group_ids.#": "1",
"vpc_security_group_ids.2604585730": "sg-4a342e2c"
},
"meta": {
"schema_version": "1"
}
}
]
}
}
},
{
"path": [
"root",
"common-ami"
],
"outputs": {
"amis_aws_nat_hvm": "ami-303b1458",
"amis_community_centos_6_hvm_20140929": "ami-c2a818aa",
"amis_community_centos_6_hvm_20150928": "ami-57cd8732",
"amis_community_centos_7_hvm": "ami-61bbf104",
"amis_community_ubuntu_1404": "ami-4c7a3924",
"amis_community_ubuntu_1404_hvm": "ami-767a391e",
"amis_grid_stable": "ami-aa094ec2"
},
"resources": {}
},
{
"path": [
"root",
"common-vpc"
],
"outputs": {
"grid_gem_external_ips": "52.22.5.54/32,52.22.72.144/32",
"twc_cidr_blocks_offices": "38.88.201.170/32,65.202.103.0/24,65.212.71.0/24,71.13.156.240/28,96.8.80.0/20,97.87.220.32/27,97.87.220.64/28,151.237.234.130/32,168.215.93.194/32,185.57.95.64/27,209.234.189.74/32"
},
"resources": {}
}
]
}
This file has been truncated, but you can view the full file.
Last login: Mon Dec 14 11:17:41 on ttys000
garmstrong-ml:~ gary.armstrong$ cd git-repos/wcs-env-wxmix/
garmstrong-ml:wcs-env-wxmix gary.armstrong$ ls
README.md config-common config-dev-aws-us-east-1 config-qa-aws-us-east-1
garmstrong-ml:wcs-env-wxmix gary.armstrong$ cd config-qa-aws-us-east-1/
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ls -la
total 320
drwxr-xr-x 22 gary.armstrong TWC_NETOPS\Domain Users 748 Dec 8 09:12 .
drwxr-xr-x 8 gary.armstrong TWC_NETOPS\Domain Users 272 Dec 3 15:39 ..
drwxr-xr-x 3 gary.armstrong TWC_NETOPS\Domain Users 102 Nov 20 16:24 .terraform
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 38 Nov 20 16:17 autoscaling_groups.tf -> ../config-common/autoscaling_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 dns.tf -> ../config-common/dns.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 elbs.tf -> ../config-common/elbs.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 166 Nov 20 16:17 env.properties
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 36 Nov 20 16:17 external_modules.tf -> ../config-common/external_modules.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 iam.tf -> ../config-common/iam.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 instances.tf -> ../config-common/instances.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 28 Nov 20 16:17 keypairs.tf -> ../config-common/keypairs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 34 Nov 20 16:17 launch_configs.tf -> ../config-common/launch_configs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 main.tf -> ../config-common/main.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 30 Nov 20 16:17 s3_buckets.tf -> ../config-common/s3_buckets.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 192 Nov 24 11:00 secrets_override.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 35 Nov 20 16:17 security_groups.tf -> ../config-common/security_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 26 Nov 20 16:17 templates -> ../config-common/templates
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 44867 Dec 11 16:47 terraform.tfstate
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 45465 Dec 11 16:47 terraform.tfstate.backup
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 1508 Dec 11 11:31 terraform.tfvars
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 variables.tf -> ../config-common/variables.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 vpc.tf -> ../config-common/vpc.tf
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform show
aws_eip.nat:
id = eipalloc-71da2015
association_id = eipassoc-9359feea
domain = vpc
instance = i-2e3e0790
network_interface = eni-80e2a9a0
private_ip = 10.233.212.27
public_ip = 52.3.137.17
vpc = true
aws_eip.testnode:
id = eipalloc-68da200c
association_id = eipassoc-7258ff0b
domain = vpc
instance = i-ef3e0751
network_interface = eni-caeaa1ea
private_ip = 10.233.212.32
public_ip = 52.7.61.81
vpc = true
aws_iam_instance_profile.testnode_profile:
id = wxmix-qa-us-east-1-testnode_profile
arn = arn:aws:iam::133124267079:instance-profile/wxmix-qa-us-east-1-testnode_profile
name = wxmix-qa-us-east-1-testnode_profile
path = /
roles.# = 1
roles.2588860927 = wxmix-qa-us-east-1-testnode_role
aws_iam_policy.testnode_policy:
id = arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-testnode_policy
arn = arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-testnode_policy
description = wxmix-qa-us-east-1-testnode_policy
name = wxmix-qa-us-east-1-testnode_policy
path = /
policy = {
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"ec2:Describe*"
],
"Effect": "Allow",
"Resource": "*"
}
]
}
aws_iam_policy_attachment.testnode_policy-attach:
id = wxmix-qa-us-east-1-testnode_policy-attach
groups.# = 0
name = wxmix-qa-us-east-1-testnode_policy-attach
policy_arn = arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-testnode_policy
roles.# = 1
roles.2588860927 = wxmix-qa-us-east-1-testnode_role
users.# = 0
aws_iam_role.testnode_role:
id = wxmix-qa-us-east-1-testnode_role
arn = arn:aws:iam::133124267079:role/wxmix-qa-us-east-1-testnode_role
assume_role_policy = {
"Version": "2012-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {
"Service": "ec2.amazonaws.com"
},
"Effect": "Allow",
"Sid": ""
}
]
}
name = wxmix-qa-us-east-1-testnode_role
path = /
unique_id = AROAJU3VI5V255TQT7Q7G
aws_instance.nat:
id = i-2e3e0790
ami = ami-303b1458
associate_public_ip_address = true
availability_zone = us-east-1b
ebs_block_device.# = 0
ebs_optimized = false
ephemeral_block_device.# = 0
iam_instance_profile =
instance_type = t2.small
key_name = sunfod-qa-us-east-1-general
monitoring = false
private_dns = ip-10-233-212-27.ec2.internal
private_ip = 10.233.212.27
public_dns =
public_ip = 52.3.137.17
root_block_device.# = 1
root_block_device.0.delete_on_termination = true
root_block_device.0.iops = 24
root_block_device.0.volume_size = 8
root_block_device.0.volume_type = gp2
security_groups.# = 0
source_dest_check = false
subnet_id = subnet-1ab3a731
tags.# = 1
tags.Name = nat-wxmix-qa
tenancy = default
vpc_security_group_ids.# = 2
vpc_security_group_ids.1336833865 = sg-d85f54be
vpc_security_group_ids.2988567153 = sg-c69d8ba0
aws_instance.testnode.0:
id = i-ef3e0751
ami = ami-aa094ec2
associate_public_ip_address = true
availability_zone = us-east-1b
ebs_block_device.# = 0
ebs_optimized = false
ephemeral_block_device.# = 0
iam_instance_profile = wxmix-qa-us-east-1-testnode_profile
instance_type = t2.small
key_name = sunfod-qa-us-east-1-general
monitoring = false
private_dns = ip-10-233-212-32.ec2.internal
private_ip = 10.233.212.32
public_dns =
public_ip = 52.7.61.81
root_block_device.# = 1
root_block_device.0.delete_on_termination = false
root_block_device.0.iops = 24
root_block_device.0.volume_size = 8
root_block_device.0.volume_type = gp2
security_groups.# = 0
source_dest_check = true
subnet_id = subnet-1ab3a731
tags.# = 1
tags.Name = wxmix-qa-testnode-0
tenancy = default
vpc_security_group_ids.# = 2
vpc_security_group_ids.2879623615 = sg-569d8a30
vpc_security_group_ids.2988567153 = sg-c69d8ba0
aws_instance.testnode.1:
id = i-30d94c86
ami = ami-aa094ec2
associate_public_ip_address = true
availability_zone = us-east-1c
ebs_block_device.# = 0
ebs_optimized = false
ephemeral_block_device.# = 0
iam_instance_profile = wxmix-qa-us-east-1-testnode_profile
instance_type = t2.small
key_name = sunfod-qa-us-east-1-general
monitoring = false
private_dns = ip-10-233-212-99.ec2.internal
private_ip = 10.233.212.99
public_dns =
public_ip = 54.85.52.148
root_block_device.# = 1
root_block_device.0.delete_on_termination = false
root_block_device.0.iops = 24
root_block_device.0.volume_size = 8
root_block_device.0.volume_type = gp2
security_groups.# = 0
source_dest_check = true
subnet_id = subnet-eff53699
tags.# = 1
tags.Name = wxmix-qa-testnode-1
tenancy = default
vpc_security_group_ids.# = 2
vpc_security_group_ids.2879623615 = sg-569d8a30
vpc_security_group_ids.2988567153 = sg-c69d8ba0
aws_instance.testnode.2:
id = i-e0e71851
ami = ami-aa094ec2
associate_public_ip_address = true
availability_zone = us-east-1b
ebs_block_device.# = 0
ebs_optimized = false
ephemeral_block_device.# = 0
iam_instance_profile = wxmix-qa-us-east-1-testnode_profile
instance_type = t2.small
key_name = sunfod-qa-us-east-1-general
monitoring = false
private_dns = ip-10-233-212-62.ec2.internal
private_ip = 10.233.212.62
public_dns =
public_ip = 54.85.9.48
root_block_device.# = 1
root_block_device.0.delete_on_termination = false
root_block_device.0.iops = 24
root_block_device.0.volume_size = 8
root_block_device.0.volume_type = gp2
security_groups.# = 0
source_dest_check = true
subnet_id = subnet-1ab3a731
tags.# = 1
tags.Name = wxmix-qa-testnode-2
tenancy = default
vpc_security_group_ids.# = 2
vpc_security_group_ids.2879623615 = sg-569d8a30
vpc_security_group_ids.2988567153 = sg-c69d8ba0
aws_internet_gateway.main:
id = igw-464dac22
tags.# = 1
tags.Name = igw-wxmix-us-east-1
vpc_id = vpc-5ce67138
aws_main_route_table_association.a:
id = rtbassoc-70cc3017
original_route_table_id = rtb-b781c3d3
route_table_id = rtb-b381c3d7
vpc_id = vpc-5ce67138
aws_route_table.private:
id = rtb-9a9edcfe
propagating_vgws.# = 0
route.# = 2
route.3408485293.cidr_block = 10.224.32.0/19
route.3408485293.gateway_id =
route.3408485293.instance_id =
route.3408485293.network_interface_id =
route.3408485293.vpc_peering_connection_id = pcx-e405da8d
route.4124621908.cidr_block = 0.0.0.0/0
route.4124621908.gateway_id =
route.4124621908.instance_id = i-2e3e0790
route.4124621908.network_interface_id = eni-80e2a9a0
route.4124621908.vpc_peering_connection_id =
tags.# = 1
tags.Name = rtb-wxmix-us-east-1-private
vpc_id = vpc-5ce67138
aws_route_table.public:
id = rtb-b381c3d7
propagating_vgws.# = 0
route.# = 2
route.1693343196.cidr_block = 0.0.0.0/0
route.1693343196.gateway_id = igw-464dac22
route.1693343196.instance_id =
route.1693343196.network_interface_id =
route.1693343196.vpc_peering_connection_id =
route.3408485293.cidr_block = 10.224.32.0/19
route.3408485293.gateway_id =
route.3408485293.instance_id =
route.3408485293.network_interface_id =
route.3408485293.vpc_peering_connection_id = pcx-e405da8d
tags.# = 1
tags.Name = rtb-wxmix-us-east-1-main
vpc_id = vpc-5ce67138
aws_route_table_association.private.0:
id = rtbassoc-f6b95291
route_table_id = rtb-9a9edcfe
subnet_id = subnet-09b3a722
aws_route_table_association.private.1:
id = rtbassoc-f7b95290
route_table_id = rtb-9a9edcfe
subnet_id = subnet-fef53688
aws_route_table_association.public.0:
id = rtbassoc-09b9526e
route_table_id = rtb-b381c3d7
subnet_id = subnet-1ab3a731
aws_route_table_association.public.1:
id = rtbassoc-08b9526f
route_table_id = rtb-b381c3d7
subnet_id = subnet-eff53699
aws_security_group.admin_sg:
id = sg-c69d8ba0
description = Terraform-controlled SG admin_sg
egress.# = 1
egress.482069346.cidr_blocks.# = 1
egress.482069346.cidr_blocks.0 = 0.0.0.0/0
egress.482069346.from_port = 0
egress.482069346.protocol = -1
egress.482069346.security_groups.# = 0
egress.482069346.self = false
egress.482069346.to_port = 0
ingress.# = 2
ingress.1799340084.cidr_blocks.# = 1
ingress.1799340084.cidr_blocks.0 = 0.0.0.0/0
ingress.1799340084.from_port = -1
ingress.1799340084.protocol = icmp
ingress.1799340084.security_groups.# = 0
ingress.1799340084.self = false
ingress.1799340084.to_port = -1
ingress.3272338883.cidr_blocks.# = 12
ingress.3272338883.cidr_blocks.0 = 38.88.201.170/32
ingress.3272338883.cidr_blocks.1 = 65.202.103.0/24
ingress.3272338883.cidr_blocks.10 = 209.234.189.74/32
ingress.3272338883.cidr_blocks.11 = 99.170.166.187/32
ingress.3272338883.cidr_blocks.2 = 65.212.71.0/24
ingress.3272338883.cidr_blocks.3 = 71.13.156.240/28
ingress.3272338883.cidr_blocks.4 = 96.8.80.0/20
ingress.3272338883.cidr_blocks.5 = 97.87.220.32/27
ingress.3272338883.cidr_blocks.6 = 97.87.220.64/28
ingress.3272338883.cidr_blocks.7 = 151.237.234.130/32
ingress.3272338883.cidr_blocks.8 = 168.215.93.194/32
ingress.3272338883.cidr_blocks.9 = 185.57.95.64/27
ingress.3272338883.from_port = 22
ingress.3272338883.protocol = tcp
ingress.3272338883.security_groups.# = 0
ingress.3272338883.self = false
ingress.3272338883.to_port = 22
name = admin_sg
owner_id = 133124267079
tags.# = 0
vpc_id = vpc-5ce67138
aws_security_group.nat:
id = sg-d85f54be
description = Allow traffic from the VPC CIDR to the NAT instance
egress.# = 1
egress.482069346.cidr_blocks.# = 1
egress.482069346.cidr_blocks.0 = 0.0.0.0/0
egress.482069346.from_port = 0
egress.482069346.protocol = -1
egress.482069346.security_groups.# = 0
egress.482069346.self = false
egress.482069346.to_port = 0
ingress.# = 1
ingress.2810018813.cidr_blocks.# = 1
ingress.2810018813.cidr_blocks.0 = 10.233.212.0/24
ingress.2810018813.from_port = 0
ingress.2810018813.protocol = -1
ingress.2810018813.security_groups.# = 0
ingress.2810018813.self = false
ingress.2810018813.to_port = 0
name = nat
owner_id = 133124267079
tags.# = 0
vpc_id = vpc-5ce67138
aws_security_group.wxmix:
id = sg-569d8a30
description = Terraform-controlled SG wxmix
egress.# = 0
ingress.# = 2
ingress.2454898860.cidr_blocks.# = 1
ingress.2454898860.cidr_blocks.0 = 205.156.51.233/32
ingress.2454898860.from_port = 20
ingress.2454898860.protocol = tcp
ingress.2454898860.security_groups.# = 0
ingress.2454898860.self = false
ingress.2454898860.to_port = 21
ingress.611665594.cidr_blocks.# = 1
ingress.611665594.cidr_blocks.0 = 10.233.212.0/24
ingress.611665594.from_port = 0
ingress.611665594.protocol = tcp
ingress.611665594.security_groups.# = 0
ingress.611665594.self = false
ingress.611665594.to_port = 0
name = wxmix
owner_id = 133124267079
tags.# = 0
vpc_id = vpc-5ce67138
aws_security_group_rule.admin_egress_all:
id = sgrule-4104191513
cidr_blocks.# = 1
cidr_blocks.0 = 0.0.0.0/0
from_port = 0
protocol = -1
security_group_id = sg-c69d8ba0
self = false
to_port = 0
type = egress
aws_security_group_rule.admin_ingress_22_offices:
id = sgrule-755440424
cidr_blocks.# = 11
cidr_blocks.0 = 38.88.201.170/32
cidr_blocks.1 = 65.202.103.0/24
cidr_blocks.10 = 209.234.189.74/32
cidr_blocks.2 = 65.212.71.0/24
cidr_blocks.3 = 71.13.156.240/28
cidr_blocks.4 = 96.8.80.0/20
cidr_blocks.5 = 97.87.220.32/27
cidr_blocks.6 = 97.87.220.64/28
cidr_blocks.7 = 151.237.234.130/32
cidr_blocks.8 = 168.215.93.194/32
cidr_blocks.9 = 185.57.95.64/27
from_port = 22
protocol = tcp
security_group_id = sg-c69d8ba0
self = false
to_port = 22
type = ingress
aws_security_group_rule.admin_ingress_22_wfh_ip:
id = sgrule-884422654
cidr_blocks.# = 1
cidr_blocks.0 = 99.170.166.187/32
from_port = 22
protocol = tcp
security_group_id = sg-c69d8ba0
self = false
to_port = 22
type = ingress
aws_security_group_rule.admin_ingress_ICMP:
id = sgrule-2324443751
cidr_blocks.# = 1
cidr_blocks.0 = 0.0.0.0/0
from_port = -1
protocol = icmp
security_group_id = sg-c69d8ba0
self = false
to_port = -1
type = ingress
aws_security_group_rule.nat_egress_all:
id = sgrule-2101272131
cidr_blocks.# = 1
cidr_blocks.0 = 0.0.0.0/0
from_port = 0
protocol = -1
security_group_id = sg-d85f54be
self = false
to_port = 0
type = egress
aws_security_group_rule.nat_ingress_all:
id = sgrule-547285924
cidr_blocks.# = 1
cidr_blocks.0 = 10.233.212.0/24
from_port = 0
protocol = -1
security_group_id = sg-d85f54be
self = false
to_port = 0
type = ingress
aws_security_group_rule.wxmix_ftp:
id = sgrule-2436237028
cidr_blocks.# = 1
cidr_blocks.0 = 205.156.51.233/32
from_port = 20
protocol = tcp
security_group_id = sg-569d8a30
self = false
to_port = 21
type = ingress
aws_security_group_rule.wxmix_subnet:
id = sgrule-3048502840
cidr_blocks.# = 1
cidr_blocks.0 = 10.233.212.0/24
from_port = 0
protocol = tcp
security_group_id = sg-569d8a30
self = false
to_port = 0
type = ingress
aws_subnet.private.0:
id = subnet-09b3a722
availability_zone = us-east-1b
cidr_block = 10.233.212.128/26
map_public_ip_on_launch = false
tags.# = 1
tags.Name = sn-wxmix-us-east-1-private-b
vpc_id = vpc-5ce67138
aws_subnet.private.1:
id = subnet-fef53688
availability_zone = us-east-1c
cidr_block = 10.233.212.192/26
map_public_ip_on_launch = false
tags.# = 1
tags.Name = sn-wxmix-us-east-1-private-c
vpc_id = vpc-5ce67138
aws_subnet.public.0:
id = subnet-1ab3a731
availability_zone = us-east-1b
cidr_block = 10.233.212.0/26
map_public_ip_on_launch = false
tags.# = 1
tags.Name = sn-wxmix-us-east-1-public-b
vpc_id = vpc-5ce67138
aws_subnet.public.1:
id = subnet-eff53699
availability_zone = us-east-1c
cidr_block = 10.233.212.64/26
map_public_ip_on_launch = false
tags.# = 1
tags.Name = sn-wxmix-us-east-1-public-c
vpc_id = vpc-5ce67138
aws_vpc.main:
id = vpc-5ce67138
cidr_block = 10.233.212.0/24
default_network_acl_id = acl-1561fe71
default_security_group_id = sg-aa456fcc
dhcp_options_id = dopt-ed33c383
main_route_table_id = rtb-b381c3d7
tags.# = 1
tags.Name = vpc-wxmix-us-east-1
aws_vpc_peering_connection.legacy_sun_vpc:
id = pcx-e405da8d
accept_status = active
auto_accept = true
peer_owner_id = 133124267079
peer_vpc_id = vpc-1033c37e
tags.# = 0
vpc_id = vpc-5ce67138
null_resource.provision_testnode.0:
id = 5333494719866085379
null_resource.provision_testnode.1: (tainted)
id = <not created>
null_resource.provision_testnode.2: (tainted)
id = <not created>
module.common-ami
0 resource(s)
module.common-vpc
0 resource(s)
Outputs:
VPC id = vpc-5ce67138
aws_instance nat ip = 52.3.137.17
aws_instance testnode ip = 52.7.61.81
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ls -la
total 320
drwxr-xr-x 22 gary.armstrong TWC_NETOPS\Domain Users 748 Dec 8 09:12 .
drwxr-xr-x 8 gary.armstrong TWC_NETOPS\Domain Users 272 Dec 3 15:39 ..
drwxr-xr-x 3 gary.armstrong TWC_NETOPS\Domain Users 102 Nov 20 16:24 .terraform
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 38 Nov 20 16:17 autoscaling_groups.tf -> ../config-common/autoscaling_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 dns.tf -> ../config-common/dns.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 elbs.tf -> ../config-common/elbs.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 166 Nov 20 16:17 env.properties
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 36 Nov 20 16:17 external_modules.tf -> ../config-common/external_modules.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 iam.tf -> ../config-common/iam.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 instances.tf -> ../config-common/instances.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 28 Nov 20 16:17 keypairs.tf -> ../config-common/keypairs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 34 Nov 20 16:17 launch_configs.tf -> ../config-common/launch_configs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 main.tf -> ../config-common/main.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 30 Nov 20 16:17 s3_buckets.tf -> ../config-common/s3_buckets.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 192 Nov 24 11:00 secrets_override.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 35 Nov 20 16:17 security_groups.tf -> ../config-common/security_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 26 Nov 20 16:17 templates -> ../config-common/templates
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 44867 Dec 11 16:47 terraform.tfstate
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 45465 Dec 11 16:47 terraform.tfstate.backup
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 1508 Dec 11 11:31 terraform.tfvars
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 variables.tf -> ../config-common/variables.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 vpc.tf -> ../config-common/vpc.tf
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ grep instance *
iam.tf:# make an instance profile so we can launch instances that can use that role
iam.tf:resource "aws_iam_instance_profile" "testnode_profile" {
instances.tf:resource "aws_instance" "testnode" {
instances.tf: instance_type = "${var.testnode_instance_type}"
instances.tf: iam_instance_profile = "${aws_iam_instance_profile.testnode_profile.name}"
instances.tf: instance = "${element(aws_instance.testnode.*.id, count.index)}"
instances.tf:output "aws_instance testnode ip" {
instances.tf: resource "aws_instance" "nat" {
instances.tf: instance_type = "${var.nat_instance_type}"
instances.tf: instance = "${aws_instance.nat.id}"
instances.tf:output "aws_instance nat ip" {
security_groups.tf: description = "Allow traffic from the VPC CIDR to the NAT instance"
grep: templates: Is a directory
terraform.tfstate: "aws_instance nat ip": "52.3.137.17",
terraform.tfstate: "aws_instance testnode ip": "52.7.61.81"
terraform.tfstate: "aws_instance.nat"
terraform.tfstate: "instance": "i-2e3e0790",
terraform.tfstate: "aws_instance.testnode",
terraform.tfstate: "instance": "i-ef3e0751",
terraform.tfstate: "aws_iam_instance_profile.testnode_profile": {
terraform.tfstate: "type": "aws_iam_instance_profile",
terraform.tfstate: "arn": "arn:aws:iam::133124267079:instance-profile/wxmix-qa-us-east-1-testnode_profile",
terraform.tfstate: "aws_instance.nat": {
terraform.tfstate: "type": "aws_instance",
terraform.tfstate: "iam_instance_profile": "",
terraform.tfstate: "instance_type": "t2.small",
terraform.tfstate: "aws_instance.testnode.0": {
terraform.tfstate: "type": "aws_instance",
terraform.tfstate: "aws_iam_instance_profile.testnode_profile",
terraform.tfstate: "iam_instance_profile": "wxmix-qa-us-east-1-testnode_profile",
terraform.tfstate: "instance_type": "t2.small",
terraform.tfstate: "aws_instance.testnode.1": {
terraform.tfstate: "type": "aws_instance",
terraform.tfstate: "aws_iam_instance_profile.testnode_profile",
terraform.tfstate: "iam_instance_profile": "wxmix-qa-us-east-1-testnode_profile",
terraform.tfstate: "instance_type": "t2.small",
terraform.tfstate: "aws_instance.testnode.2": {
terraform.tfstate: "type": "aws_instance",
terraform.tfstate: "aws_iam_instance_profile.testnode_profile",
terraform.tfstate: "iam_instance_profile": "wxmix-qa-us-east-1-testnode_profile",
terraform.tfstate: "instance_type": "t2.small",
terraform.tfstate: "aws_instance.nat",
terraform.tfstate: "aws_instance.nat",
terraform.tfstate: "route.3408485293.instance_id": "",
terraform.tfstate: "route.4124621908.instance_id": "i-2e3e0790",
terraform.tfstate: "route.1693343196.instance_id": "",
terraform.tfstate: "route.3408485293.instance_id": "",
terraform.tfstate: "description": "Allow traffic from the VPC CIDR to the NAT instance",
terraform.tfstate.backup: "aws_instance nat ip": "52.3.137.17",
terraform.tfstate.backup: "aws_instance testnode ip": "52.7.61.81"
terraform.tfstate.backup: "aws_instance.nat"
terraform.tfstate.backup: "instance": "i-2e3e0790",
terraform.tfstate.backup: "aws_instance.testnode",
terraform.tfstate.backup: "instance": "i-ef3e0751",
terraform.tfstate.backup: "aws_iam_instance_profile.testnode_profile": {
terraform.tfstate.backup: "type": "aws_iam_instance_profile",
terraform.tfstate.backup: "arn": "arn:aws:iam::133124267079:instance-profile/wxmix-qa-us-east-1-testnode_profile",
terraform.tfstate.backup: "aws_instance.nat": {
terraform.tfstate.backup: "type": "aws_instance",
terraform.tfstate.backup: "iam_instance_profile": "",
terraform.tfstate.backup: "instance_type": "t2.small",
terraform.tfstate.backup: "aws_instance.testnode.0": {
terraform.tfstate.backup: "type": "aws_instance",
terraform.tfstate.backup: "aws_iam_instance_profile.testnode_profile",
terraform.tfstate.backup: "iam_instance_profile": "wxmix-qa-us-east-1-testnode_profile",
terraform.tfstate.backup: "instance_type": "t2.small",
terraform.tfstate.backup: "aws_instance.testnode.1": {
terraform.tfstate.backup: "type": "aws_instance",
terraform.tfstate.backup: "aws_iam_instance_profile.testnode_profile",
terraform.tfstate.backup: "iam_instance_profile": "wxmix-qa-us-east-1-testnode_profile",
terraform.tfstate.backup: "instance_type": "t2.small",
terraform.tfstate.backup: "aws_instance.testnode.2": {
terraform.tfstate.backup: "type": "aws_instance",
terraform.tfstate.backup: "aws_iam_instance_profile.testnode_profile",
terraform.tfstate.backup: "iam_instance_profile": "wxmix-qa-us-east-1-testnode_profile",
terraform.tfstate.backup: "instance_type": "t2.small",
terraform.tfstate.backup: "aws_instance.nat",
terraform.tfstate.backup: "aws_instance.nat",
terraform.tfstate.backup: "route.3408485293.instance_id": "",
terraform.tfstate.backup: "route.4124621908.instance_id": "i-2e3e0790",
terraform.tfstate.backup: "route.1693343196.instance_id": "",
terraform.tfstate.backup: "route.3408485293.instance_id": "",
terraform.tfstate.backup: "description": "Allow traffic from the VPC CIDR to the NAT instance",
terraform.tfvars:nat_instance_type = "t2.small"
terraform.tfvars:testnode_instance_type = "t2.small"
terraform.tfvars:head_instance_type = "r3.2xlarge"
terraform.tfvars:compute_instance_type = "r3.8xlarge"
terraform.tfvars:viewer_instance_type = "i2.xlarge"
variables.tf:variable "nat_instance_type" {}
variables.tf:variable "testnode_instance_type" {}
vpc.tf: depends_on = ["aws_instance.nat"]
vpc.tf: instance_id = "${aws_instance.nat.id}"
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ k
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ grep instance *|grep -v tfstate
grep: templates: Is a directory
iam.tf:# make an instance profile so we can launch instances that can use that role
iam.tf:resource "aws_iam_instance_profile" "testnode_profile" {
instances.tf:resource "aws_instance" "testnode" {
instances.tf: instance_type = "${var.testnode_instance_type}"
instances.tf: iam_instance_profile = "${aws_iam_instance_profile.testnode_profile.name}"
instances.tf: instance = "${element(aws_instance.testnode.*.id, count.index)}"
instances.tf:output "aws_instance testnode ip" {
instances.tf: resource "aws_instance" "nat" {
instances.tf: instance_type = "${var.nat_instance_type}"
instances.tf: instance = "${aws_instance.nat.id}"
instances.tf:output "aws_instance nat ip" {
security_groups.tf: description = "Allow traffic from the VPC CIDR to the NAT instance"
terraform.tfvars:nat_instance_type = "t2.small"
terraform.tfvars:testnode_instance_type = "t2.small"
terraform.tfvars:head_instance_type = "r3.2xlarge"
terraform.tfvars:compute_instance_type = "r3.8xlarge"
terraform.tfvars:viewer_instance_type = "i2.xlarge"
variables.tf:variable "nat_instance_type" {}
variables.tf:variable "testnode_instance_type" {}
vpc.tf: depends_on = ["aws_instance.nat"]
vpc.tf: instance_id = "${aws_instance.nat.id}"
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ grep instance *|grep -v tfstate
grep: templates: Is a directory
iam.tf:# make an instance profile so we can launch instances that can use that role
iam.tf:resource "aws_iam_instance_profile" "testnode_profile" {
instances.tf:resource "aws_instance" "testnode" {
instances.tf: instance_type = "${var.testnode_instance_type}"
instances.tf: iam_instance_profile = "${aws_iam_instance_profile.testnode_profile.name}"
instances.tf: instance = "${element(aws_instance.testnode.*.id, count.index)}"
instances.tf:output "aws_instance testnode ip" {
instances.tf: resource "aws_instance" "nat" {
instances.tf: instance_type = "${var.nat_instance_type}"
instances.tf: instance = "${aws_instance.nat.id}"
instances.tf:output "aws_instance nat ip" {
security_groups.tf: description = "Allow traffic from the VPC CIDR to the NAT instance"
terraform.tfvars:nat_instance_type = "t2.small"
terraform.tfvars:testnode_instance_type = "t2.small"
terraform.tfvars:head_instance_type = "r3.2xlarge"
terraform.tfvars:compute_instance_type = "r3.8xlarge"
terraform.tfvars:viewer_instance_type = "i2.xlarge"
variables.tf:variable "nat_instance_type" {}
variables.tf:variable "testnode_instance_type" {}
vpc.tf: depends_on = ["aws_instance.nat"]
vpc.tf: instance_id = "${aws_instance.nat.id}"
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform graph
Error loading Terraform: Error loading config: Error parsing /Users/gary.armstrong/git-repos/wcs-env-wxmix/config-qa-aws-us-east-1/iam.tf: Line 6, column 0: syntax error
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform graph
digraph {
compound = "true"
newrank = "true"
subgraph "root" {
"[root] aws_eip.nat" [label = "aws_eip.nat", shape = "box"]
"[root] aws_eip.testnode" [label = "aws_eip.testnode", shape = "box"]
"[root] aws_iam_instance_profile.testnode_profile" [label = "aws_iam_instance_profile.testnode_profile", shape = "box"]
"[root] aws_iam_policy.testnode_policy" [label = "aws_iam_policy.testnode_policy", shape = "box"]
"[root] aws_iam_policy_attachment.testnode_policy-attach" [label = "aws_iam_policy_attachment.testnode_policy-attach", shape = "box"]
"[root] aws_iam_role.testnode_role" [label = "aws_iam_role.testnode_role", shape = "box"]
"[root] aws_instance.nat" [label = "aws_instance.nat", shape = "box"]
"[root] aws_instance.testnode" [label = "aws_instance.testnode", shape = "box"]
"[root] aws_internet_gateway.main" [label = "aws_internet_gateway.main", shape = "box"]
"[root] aws_main_route_table_association.a" [label = "aws_main_route_table_association.a", shape = "box"]
"[root] aws_route_table.private" [label = "aws_route_table.private", shape = "box"]
"[root] aws_route_table.public" [label = "aws_route_table.public", shape = "box"]
"[root] aws_route_table_association.private" [label = "aws_route_table_association.private", shape = "box"]
"[root] aws_route_table_association.public" [label = "aws_route_table_association.public", shape = "box"]
"[root] aws_security_group.admin_sg" [label = "aws_security_group.admin_sg", shape = "box"]
"[root] aws_security_group.nat" [label = "aws_security_group.nat", shape = "box"]
"[root] aws_security_group.wxmix" [label = "aws_security_group.wxmix", shape = "box"]
"[root] aws_security_group_rule.admin_egress_all" [label = "aws_security_group_rule.admin_egress_all", shape = "box"]
"[root] aws_security_group_rule.admin_ingress_22_offices" [label = "aws_security_group_rule.admin_ingress_22_offices", shape = "box"]
"[root] aws_security_group_rule.admin_ingress_22_wfh_ip" [label = "aws_security_group_rule.admin_ingress_22_wfh_ip", shape = "box"]
"[root] aws_security_group_rule.admin_ingress_ICMP" [label = "aws_security_group_rule.admin_ingress_ICMP", shape = "box"]
"[root] aws_security_group_rule.nat_egress_all" [label = "aws_security_group_rule.nat_egress_all", shape = "box"]
"[root] aws_security_group_rule.nat_ingress_all" [label = "aws_security_group_rule.nat_ingress_all", shape = "box"]
"[root] aws_security_group_rule.wxmix_ftp" [label = "aws_security_group_rule.wxmix_ftp", shape = "box"]
"[root] aws_security_group_rule.wxmix_subnet" [label = "aws_security_group_rule.wxmix_subnet", shape = "box"]
"[root] aws_subnet.private" [label = "aws_subnet.private", shape = "box"]
"[root] aws_subnet.public" [label = "aws_subnet.public", shape = "box"]
"[root] aws_vpc.main" [label = "aws_vpc.main", shape = "box"]
"[root] aws_vpc_peering_connection.legacy_sun_vpc" [label = "aws_vpc_peering_connection.legacy_sun_vpc", shape = "box"]
"[root] null_resource.provision_testnode" [label = "null_resource.provision_testnode", shape = "box"]
"[root] provider.aws" [label = "provider.aws", shape = "diamond"]
"[root] provider.null" [label = "provider.null", shape = "diamond"]
"[root] aws_eip.nat" -> "[root] aws_instance.nat"
"[root] aws_eip.testnode" -> "[root] aws_instance.testnode"
"[root] aws_eip.testnode" -> "[root] aws_internet_gateway.main"
"[root] aws_iam_instance_profile.testnode_profile" -> "[root] aws_iam_role.testnode_role"
"[root] aws_iam_policy.testnode_policy" -> "[root] provider.aws"
"[root] aws_iam_policy_attachment.testnode_policy-attach" -> "[root] aws_iam_policy.testnode_policy"
"[root] aws_iam_policy_attachment.testnode_policy-attach" -> "[root] aws_iam_role.testnode_role"
"[root] aws_iam_role.testnode_role" -> "[root] provider.aws"
"[root] aws_instance.nat" -> "[root] aws_security_group.admin_sg"
"[root] aws_instance.nat" -> "[root] aws_security_group.nat"
"[root] aws_instance.nat" -> "[root] aws_subnet.public"
"[root] aws_instance.testnode" -> "[root] aws_iam_instance_profile.testnode_profile"
"[root] aws_instance.testnode" -> "[root] aws_security_group.admin_sg"
"[root] aws_instance.testnode" -> "[root] aws_security_group.wxmix"
"[root] aws_instance.testnode" -> "[root] aws_subnet.public"
"[root] aws_internet_gateway.main" -> "[root] aws_vpc.main"
"[root] aws_main_route_table_association.a" -> "[root] aws_route_table.public"
"[root] aws_route_table.private" -> "[root] aws_instance.nat"
"[root] aws_route_table.private" -> "[root] aws_vpc_peering_connection.legacy_sun_vpc"
"[root] aws_route_table.public" -> "[root] aws_internet_gateway.main"
"[root] aws_route_table.public" -> "[root] aws_vpc_peering_connection.legacy_sun_vpc"
"[root] aws_route_table_association.private" -> "[root] aws_route_table.private"
"[root] aws_route_table_association.private" -> "[root] aws_subnet.private"
"[root] aws_route_table_association.public" -> "[root] aws_route_table.public"
"[root] aws_route_table_association.public" -> "[root] aws_subnet.public"
"[root] aws_security_group.admin_sg" -> "[root] aws_vpc.main"
"[root] aws_security_group.nat" -> "[root] aws_vpc.main"
"[root] aws_security_group.wxmix" -> "[root] aws_vpc.main"
"[root] aws_security_group_rule.admin_egress_all" -> "[root] aws_security_group.admin_sg"
"[root] aws_security_group_rule.admin_ingress_22_offices" -> "[root] aws_security_group.admin_sg"
"[root] aws_security_group_rule.admin_ingress_22_wfh_ip" -> "[root] aws_security_group.admin_sg"
"[root] aws_security_group_rule.admin_ingress_ICMP" -> "[root] aws_security_group.admin_sg"
"[root] aws_security_group_rule.nat_egress_all" -> "[root] aws_security_group.nat"
"[root] aws_security_group_rule.nat_ingress_all" -> "[root] aws_security_group.nat"
"[root] aws_security_group_rule.wxmix_ftp" -> "[root] aws_security_group.wxmix"
"[root] aws_security_group_rule.wxmix_subnet" -> "[root] aws_security_group.wxmix"
"[root] aws_subnet.private" -> "[root] aws_vpc.main"
"[root] aws_subnet.public" -> "[root] aws_vpc.main"
"[root] aws_vpc.main" -> "[root] provider.aws"
"[root] aws_vpc_peering_connection.legacy_sun_vpc" -> "[root] aws_vpc.main"
"[root] null_resource.provision_testnode" -> "[root] aws_eip.testnode"
}
}
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform destroy
Do you really want to destroy?
Terraform will delete all your managed infrastructure.
There is no undo. Only 'yes' will be accepted to confirm.
Enter a value: yes
null_resource.provision_testnode.1: Refreshing state... (ID: )
null_resource.provision_testnode.2: Refreshing state... (ID: )
aws_iam_role.testnode_role: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_role)
aws_vpc.main: Refreshing state... (ID: vpc-5ce67138)
aws_iam_policy.testnode_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-testnode_policy)
aws_iam_instance_profile.testnode_profile: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_profile)
aws_iam_policy_attachment.testnode_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_policy-attach)
aws_security_group.wxmix: Refreshing state... (ID: sg-569d8a30)
aws_security_group.nat: Refreshing state... (ID: sg-d85f54be)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-e405da8d)
aws_subnet.private.0: Refreshing state... (ID: subnet-09b3a722)
aws_security_group.admin_sg: Refreshing state... (ID: sg-c69d8ba0)
aws_internet_gateway.main: Refreshing state... (ID: igw-464dac22)
aws_subnet.public.0: Refreshing state... (ID: subnet-1ab3a731)
aws_subnet.private.1: Refreshing state... (ID: subnet-fef53688)
aws_subnet.public.1: Refreshing state... (ID: subnet-eff53699)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-3048502840)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-2436237028)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-547285924)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-2101272131)
aws_route_table.public: Refreshing state... (ID: rtb-b381c3d7)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-70cc3017)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-09b9526e)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-08b9526f)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-2324443751)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-4104191513)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-884422654)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-755440424)
aws_instance.testnode.0: Refreshing state... (ID: i-ef3e0751)
aws_instance.nat: Refreshing state... (ID: i-2e3e0790)
aws_instance.testnode.1: Refreshing state... (ID: i-30d94c86)
aws_instance.testnode.2: Refreshing state... (ID: i-e0e71851)
aws_eip.nat: Refreshing state... (ID: eipalloc-71da2015)
aws_route_table.private: Refreshing state... (ID: rtb-9a9edcfe)
aws_eip.testnode: Refreshing state... (ID: eipalloc-68da200c)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-f6b95291)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-f7b95290)
null_resource.provision_testnode.0: Refreshing state... (ID: 5333494719866085379)
null_resource.provision_testnode.0: Destroying...
null_resource.provision_testnode.0: Destruction complete
aws_security_group_rule.wxmix_subnet: Destroying...
aws_eip.nat: Destroying...
aws_main_route_table_association.a: Destroying...
aws_security_group_rule.admin_ingress_22_offices: Destroying...
aws_security_group_rule.nat_ingress_all: Destroying...
aws_security_group_rule.admin_egress_all: Destroying...
aws_route_table_association.public.1: Destroying...
aws_security_group_rule.admin_ingress_ICMP: Destroying...
aws_security_group_rule.nat_egress_all: Destroying...
aws_iam_policy_attachment.testnode_policy-attach: Destroying...
aws_route_table_association.public.1: Destruction complete
aws_eip.testnode: Destroying...
aws_main_route_table_association.a: Destruction complete
aws_security_group_rule.admin_ingress_22_wfh_ip: Destroying...
aws_iam_policy_attachment.testnode_policy-attach: Destruction complete
aws_route_table_association.public.0: Destroying...
aws_security_group_rule.nat_egress_all: Destruction complete
aws_security_group_rule.wxmix_ftp: Destroying...
aws_security_group_rule.admin_ingress_ICMP: Destruction complete
aws_route_table_association.private.0: Destroying...
aws_route_table_association.public.0: Destruction complete
aws_route_table_association.private.1: Destroying...
aws_security_group_rule.admin_egress_all: Destruction complete
aws_route_table.public: Destroying...
aws_security_group_rule.admin_ingress_22_offices: Destruction complete
aws_iam_policy.testnode_policy: Destroying...
aws_security_group_rule.nat_ingress_all: Destruction complete
aws_route_table_association.private.1: Destruction complete
aws_route_table_association.private.0: Destruction complete
aws_subnet.private.0: Destroying...
aws_subnet.private.1: Destroying...
aws_route_table.private: Destroying...
aws_security_group_rule.wxmix_ftp: Destruction complete
aws_security_group_rule.admin_ingress_22_wfh_ip: Destruction complete
aws_iam_policy.testnode_policy: Destruction complete
aws_security_group_rule.wxmix_subnet: Destruction complete
aws_route_table.public: Destruction complete
aws_route_table.private: Destruction complete
aws_vpc_peering_connection.legacy_sun_vpc: Destroying...
aws_vpc_peering_connection.legacy_sun_vpc: Destruction complete
aws_eip.nat: Destruction complete
aws_instance.nat: Destroying...
aws_eip.testnode: Destruction complete
aws_instance.testnode.0: Destroying...
aws_internet_gateway.main: Destroying...
aws_instance.testnode.1: Destroying...
aws_instance.testnode.2: Destroying...
aws_subnet.private.1: Destruction complete
aws_subnet.private.0: Destruction complete
aws_instance.nat: Destruction complete
aws_security_group.nat: Destroying...
aws_instance.testnode.1: Destruction complete
aws_instance.testnode.0: Destruction complete
aws_security_group.nat: Destruction complete
aws_internet_gateway.main: Destruction complete
aws_instance.testnode.2: Destruction complete
aws_iam_instance_profile.testnode_profile: Destroying...
aws_security_group.wxmix: Destroying...
aws_subnet.public.0: Destroying...
aws_subnet.public.1: Destroying...
aws_security_group.admin_sg: Destroying...
aws_iam_instance_profile.testnode_profile: Destruction complete
aws_iam_role.testnode_role: Destroying...
aws_iam_role.testnode_role: Destruction complete
aws_security_group.wxmix: Destruction complete
aws_security_group.admin_sg: Destruction complete
aws_subnet.public.1: Destruction complete
aws_subnet.public.0: Destruction complete
aws_vpc.main: Destroying...
aws_vpc.main: Destruction complete
Apply complete! Resources: 0 added, 0 changed, 36 destroyed.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform show
module.common-ami
0 resource(s)
module.common-vpc
0 resource(s)
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform graph
digraph {
compound = "true"
newrank = "true"
subgraph "root" {
"[root] aws_eip.nat" [label = "aws_eip.nat", shape = "box"]
"[root] aws_eip.testnode" [label = "aws_eip.testnode", shape = "box"]
"[root] aws_iam_instance_profile.testnode_profile" [label = "aws_iam_instance_profile.testnode_profile", shape = "box"]
"[root] aws_iam_policy.testnode_policy" [label = "aws_iam_policy.testnode_policy", shape = "box"]
"[root] aws_iam_policy_attachment.testnode_policy-attach" [label = "aws_iam_policy_attachment.testnode_policy-attach", shape = "box"]
"[root] aws_iam_role.testnode_role" [label = "aws_iam_role.testnode_role", shape = "box"]
"[root] aws_instance.nat" [label = "aws_instance.nat", shape = "box"]
"[root] aws_instance.testnode" [label = "aws_instance.testnode", shape = "box"]
"[root] aws_internet_gateway.main" [label = "aws_internet_gateway.main", shape = "box"]
"[root] aws_main_route_table_association.a" [label = "aws_main_route_table_association.a", shape = "box"]
"[root] aws_route_table.private" [label = "aws_route_table.private", shape = "box"]
"[root] aws_route_table.public" [label = "aws_route_table.public", shape = "box"]
"[root] aws_route_table_association.private" [label = "aws_route_table_association.private", shape = "box"]
"[root] aws_route_table_association.public" [label = "aws_route_table_association.public", shape = "box"]
"[root] aws_security_group.admin_sg" [label = "aws_security_group.admin_sg", shape = "box"]
"[root] aws_security_group.nat" [label = "aws_security_group.nat", shape = "box"]
"[root] aws_security_group.wxmix" [label = "aws_security_group.wxmix", shape = "box"]
"[root] aws_security_group_rule.admin_egress_all" [label = "aws_security_group_rule.admin_egress_all", shape = "box"]
"[root] aws_security_group_rule.admin_ingress_22_offices" [label = "aws_security_group_rule.admin_ingress_22_offices", shape = "box"]
"[root] aws_security_group_rule.admin_ingress_22_wfh_ip" [label = "aws_security_group_rule.admin_ingress_22_wfh_ip", shape = "box"]
"[root] aws_security_group_rule.admin_ingress_ICMP" [label = "aws_security_group_rule.admin_ingress_ICMP", shape = "box"]
"[root] aws_security_group_rule.nat_egress_all" [label = "aws_security_group_rule.nat_egress_all", shape = "box"]
"[root] aws_security_group_rule.nat_ingress_all" [label = "aws_security_group_rule.nat_ingress_all", shape = "box"]
"[root] aws_security_group_rule.wxmix_ftp" [label = "aws_security_group_rule.wxmix_ftp", shape = "box"]
"[root] aws_security_group_rule.wxmix_subnet" [label = "aws_security_group_rule.wxmix_subnet", shape = "box"]
"[root] aws_subnet.private" [label = "aws_subnet.private", shape = "box"]
"[root] aws_subnet.public" [label = "aws_subnet.public", shape = "box"]
"[root] aws_vpc.main" [label = "aws_vpc.main", shape = "box"]
"[root] aws_vpc_peering_connection.legacy_sun_vpc" [label = "aws_vpc_peering_connection.legacy_sun_vpc", shape = "box"]
"[root] null_resource.provision_testnode" [label = "null_resource.provision_testnode", shape = "box"]
"[root] provider.aws" [label = "provider.aws", shape = "diamond"]
"[root] provider.null" [label = "provider.null", shape = "diamond"]
"[root] aws_eip.nat" -> "[root] aws_instance.nat"
"[root] aws_eip.testnode" -> "[root] aws_instance.testnode"
"[root] aws_eip.testnode" -> "[root] aws_internet_gateway.main"
"[root] aws_iam_instance_profile.testnode_profile" -> "[root] aws_iam_role.testnode_role"
"[root] aws_iam_policy.testnode_policy" -> "[root] provider.aws"
"[root] aws_iam_policy_attachment.testnode_policy-attach" -> "[root] aws_iam_policy.testnode_policy"
"[root] aws_iam_policy_attachment.testnode_policy-attach" -> "[root] aws_iam_role.testnode_role"
"[root] aws_iam_role.testnode_role" -> "[root] provider.aws"
"[root] aws_instance.nat" -> "[root] aws_security_group.admin_sg"
"[root] aws_instance.nat" -> "[root] aws_security_group.nat"
"[root] aws_instance.nat" -> "[root] aws_subnet.public"
"[root] aws_instance.testnode" -> "[root] aws_iam_instance_profile.testnode_profile"
"[root] aws_instance.testnode" -> "[root] aws_security_group.admin_sg"
"[root] aws_instance.testnode" -> "[root] aws_security_group.wxmix"
"[root] aws_instance.testnode" -> "[root] aws_subnet.public"
"[root] aws_internet_gateway.main" -> "[root] aws_vpc.main"
"[root] aws_main_route_table_association.a" -> "[root] aws_route_table.public"
"[root] aws_route_table.private" -> "[root] aws_instance.nat"
"[root] aws_route_table.private" -> "[root] aws_vpc_peering_connection.legacy_sun_vpc"
"[root] aws_route_table.public" -> "[root] aws_internet_gateway.main"
"[root] aws_route_table.public" -> "[root] aws_vpc_peering_connection.legacy_sun_vpc"
"[root] aws_route_table_association.private" -> "[root] aws_route_table.private"
"[root] aws_route_table_association.private" -> "[root] aws_subnet.private"
"[root] aws_route_table_association.public" -> "[root] aws_route_table.public"
"[root] aws_route_table_association.public" -> "[root] aws_subnet.public"
"[root] aws_security_group.admin_sg" -> "[root] aws_vpc.main"
"[root] aws_security_group.nat" -> "[root] aws_vpc.main"
"[root] aws_security_group.wxmix" -> "[root] aws_vpc.main"
"[root] aws_security_group_rule.admin_egress_all" -> "[root] aws_security_group.admin_sg"
"[root] aws_security_group_rule.admin_ingress_22_offices" -> "[root] aws_security_group.admin_sg"
"[root] aws_security_group_rule.admin_ingress_22_wfh_ip" -> "[root] aws_security_group.admin_sg"
"[root] aws_security_group_rule.admin_ingress_ICMP" -> "[root] aws_security_group.admin_sg"
"[root] aws_security_group_rule.nat_egress_all" -> "[root] aws_security_group.nat"
"[root] aws_security_group_rule.nat_ingress_all" -> "[root] aws_security_group.nat"
"[root] aws_security_group_rule.wxmix_ftp" -> "[root] aws_security_group.wxmix"
"[root] aws_security_group_rule.wxmix_subnet" -> "[root] aws_security_group.wxmix"
"[root] aws_subnet.private" -> "[root] aws_vpc.main"
"[root] aws_subnet.public" -> "[root] aws_vpc.main"
"[root] aws_vpc.main" -> "[root] provider.aws"
"[root] aws_vpc_peering_connection.legacy_sun_vpc" -> "[root] aws_vpc.main"
"[root] null_resource.provision_testnode" -> "[root] aws_eip.testnode"
}
}
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Error loading config: Error parsing /Users/gary.armstrong/git-repos/wcs-env-wxmix/config-qa-aws-us-east-1/instances.tf: Line 6, column 10: syntax error
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
There are warnings and/or errors related to your configuration. Please
fix these before continuing.
Errors:
* 1 error(s) occurred:
* module root: 4 error(s) occurred:
* resource 'aws_instance.testnode' config: unknown variable referenced: 'testnode_count'. define it with 'variable' blocks
* aws_route_table.private: resource depends on non-existent resource 'aws_instance.nat'
* resource 'aws_route_table.private' config: unknown resource 'aws_instance.nat' referenced in variable aws_instance.nat.id
* ip0: count variables are only valid within resources
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
There are warnings and/or errors related to your configuration. Please
fix these before continuing.
Errors:
* 1 error(s) occurred:
* module root: 2 error(s) occurred:
* aws_route_table.private: resource depends on non-existent resource 'aws_instance.nat'
* resource 'aws_route_table.private' config: unknown resource 'aws_instance.nat' referenced in variable aws_instance.nat.id
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ grep aws_instance.nat *
instances.tf: instance = "${aws_instance.nat.id}"
grep: templates: Is a directory
terraform.tfstate.backup: "aws_instance nat ip": "52.3.137.17",
terraform.tfstate.backup: "aws_instance.nat"
terraform.tfstate.backup: "aws_instance.nat": {
terraform.tfstate.backup: "aws_instance.nat",
terraform.tfstate.backup: "aws_instance.nat",
vpc.tf: depends_on = ["aws_instance.nat"]
vpc.tf: instance_id = "${aws_instance.nat.id}"
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ grep -n aws_instance.nat *
instances.tf:67: instance = "${aws_instance.nat.id}"
grep: templates: Is a directory
terraform.tfstate.backup:11: "aws_instance nat ip": "52.3.137.17",
terraform.tfstate.backup:18: "aws_instance.nat"
terraform.tfstate.backup:118: "aws_instance.nat": {
terraform.tfstate.backup:339: "aws_instance.nat",
terraform.tfstate.backup:340: "aws_instance.nat",
vpc.tf:100: depends_on = ["aws_instance.nat"]
vpc.tf:104: instance_id = "${aws_instance.nat.id}"
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_eip.nat
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "${aws_instance.nat.id}"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
+ aws_iam_instance_profile.testnode_profile
arn: "" => "<computed>"
create_date: "" => "<computed>"
name: "" => "wxmix-qa-us-east-1-testnode_profile"
path: "" => "/"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
unique_id: "" => "<computed>"
+ aws_iam_policy.testnode_policy
arn: "" => "<computed>"
description: "" => "wxmix-qa-us-east-1-testnode_policy"
name: "" => "wxmix-qa-us-east-1-testnode_policy"
path: "" => "/"
policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": [\n \"ec2:Describe*\"\n ],\n \"Effect\": \"Allow\",\n \"Resource\": \"*\"\n }\n ]\n}\n"
+ aws_iam_policy_attachment.testnode_policy-attach
name: "" => "wxmix-qa-us-east-1-testnode_policy-attach"
policy_arn: "" => "${aws_iam_policy.testnode_policy.arn}"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
+ aws_iam_role.testnode_role
arn: "" => "<computed>"
assume_role_policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": \"sts:AssumeRole\",\n \"Principal\": {\n \"Service\": \"ec2.amazonaws.com\"\n },\n \"Effect\": \"Allow\",\n \"Sid\": \"\"\n }\n ]\n}\n"
name: "" => "wxmix-qa-us-east-1-testnode_role"
path: "" => "/"
unique_id: "" => "<computed>"
+ aws_instance.nat
ami: "" => "ami-303b1458"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "0"
subnet_id: "" => "${aws_subnet.public.0.id}"
tags.#: "" => "1"
tags.Name: "" => "nat-wxmix-qa"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.0
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.1
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.2
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_internet_gateway.main
tags.#: "0" => "1"
tags.Name: "" => "igw-wxmix-us-east-1"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_main_route_table_association.a
original_route_table_id: "" => "<computed>"
route_table_id: "" => "${aws_route_table.public.id}"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.private
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~3508085667.cidr_block: "" => "0.0.0.0/0"
route.~3508085667.gateway_id: "" => ""
route.~3508085667.instance_id: "" => "${aws_instance.nat.id}"
route.~3508085667.network_interface_id: "" => ""
route.~3508085667.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-private"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.public
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~974281316.cidr_block: "" => "0.0.0.0/0"
route.~974281316.gateway_id: "" => "${aws_internet_gateway.main.id}"
route.~974281316.instance_id: "" => ""
route.~974281316.network_interface_id: "" => ""
route.~974281316.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-main"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table_association.private.0
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.private.1
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.public.0
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_route_table_association.public.1
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_security_group.admin_sg
description: "" => "Terraform-controlled SG admin_sg"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "admin_sg"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.nat
description: "" => "Allow traffic from the VPC CIDR to the NAT instance"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "nat"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.wxmix
description: "" => "Terraform-controlled SG wxmix"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "wxmix"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group_rule.admin_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.admin_ingress_22_offices
cidr_blocks.#: "" => "11"
cidr_blocks.0: "" => "38.88.201.170/32"
cidr_blocks.1: "" => "65.202.103.0/24"
cidr_blocks.10: "" => "209.234.189.74/32"
cidr_blocks.2: "" => "65.212.71.0/24"
cidr_blocks.3: "" => "71.13.156.240/28"
cidr_blocks.4: "" => "96.8.80.0/20"
cidr_blocks.5: "" => "97.87.220.32/27"
cidr_blocks.6: "" => "97.87.220.64/28"
cidr_blocks.7: "" => "151.237.234.130/32"
cidr_blocks.8: "" => "168.215.93.194/32"
cidr_blocks.9: "" => "185.57.95.64/27"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_22_wfh_ip
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "99.170.166.187/32"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_ICMP
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "-1"
protocol: "" => "icmp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "-1"
type: "" => "ingress"
+ aws_security_group_rule.nat_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.nat_ingress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_ftp
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "205.156.51.233/32"
from_port: "" => "20"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "21"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_subnet
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_subnet.private.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.128/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.private.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.192/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.0/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.64/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_vpc.main
cidr_block: "" => "10.233.212.0/24"
default_network_acl_id: "" => "<computed>"
default_security_group_id: "" => "<computed>"
dhcp_options_id: "" => "<computed>"
enable_dns_hostnames: "" => "<computed>"
enable_dns_support: "" => "<computed>"
main_route_table_id: "" => "<computed>"
tags.#: "" => "1"
tags.Name: "" => "vpc-wxmix-us-east-1"
+ aws_vpc_peering_connection.legacy_sun_vpc
accept_status: "" => "<computed>"
auto_accept: "" => "1"
peer_owner_id: "" => "133124267079"
peer_vpc_id: "" => "vpc-1033c37e"
vpc_id: "" => "${aws_vpc.main.id}"
+ null_resource.provision_testnode.0
+ null_resource.provision_testnode.1
+ null_resource.provision_testnode.2
Plan: 37 to add, 0 to change, 0 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Error loading config: Error parsing /Users/gary.armstrong/git-repos/wcs-env-wxmix/config-qa-aws-us-east-1/security_groups.tf: Line 145, column 14: syntax error
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_eip.nat
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "${aws_instance.nat.id}"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
+ aws_iam_instance_profile.testnode_profile
arn: "" => "<computed>"
create_date: "" => "<computed>"
name: "" => "wxmix-qa-us-east-1-testnode_profile"
path: "" => "/"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
unique_id: "" => "<computed>"
+ aws_iam_policy.testnode_policy
arn: "" => "<computed>"
description: "" => "wxmix-qa-us-east-1-testnode_policy"
name: "" => "wxmix-qa-us-east-1-testnode_policy"
path: "" => "/"
policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": [\n \"ec2:Describe*\"\n ],\n \"Effect\": \"Allow\",\n \"Resource\": \"*\"\n }\n ]\n}\n"
+ aws_iam_policy_attachment.testnode_policy-attach
name: "" => "wxmix-qa-us-east-1-testnode_policy-attach"
policy_arn: "" => "${aws_iam_policy.testnode_policy.arn}"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
+ aws_iam_role.testnode_role
arn: "" => "<computed>"
assume_role_policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": \"sts:AssumeRole\",\n \"Principal\": {\n \"Service\": \"ec2.amazonaws.com\"\n },\n \"Effect\": \"Allow\",\n \"Sid\": \"\"\n }\n ]\n}\n"
name: "" => "wxmix-qa-us-east-1-testnode_role"
path: "" => "/"
unique_id: "" => "<computed>"
+ aws_instance.nat
ami: "" => "ami-303b1458"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "0"
subnet_id: "" => "${aws_subnet.public.0.id}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "nat-wxmix-qa"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.0
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.1
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.2
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_internet_gateway.main
tags.#: "0" => "1"
tags.Name: "" => "igw-wxmix-us-east-1"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_main_route_table_association.a
original_route_table_id: "" => "<computed>"
route_table_id: "" => "${aws_route_table.public.id}"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.private
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~3508085667.cidr_block: "" => "0.0.0.0/0"
route.~3508085667.gateway_id: "" => ""
route.~3508085667.instance_id: "" => "${aws_instance.nat.id}"
route.~3508085667.network_interface_id: "" => ""
route.~3508085667.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-private"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.public
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~974281316.cidr_block: "" => "0.0.0.0/0"
route.~974281316.gateway_id: "" => "${aws_internet_gateway.main.id}"
route.~974281316.instance_id: "" => ""
route.~974281316.network_interface_id: "" => ""
route.~974281316.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-main"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table_association.private.0
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.private.1
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.public.0
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_route_table_association.public.1
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_security_group.admin_sg
description: "" => "Terraform-controlled SG admin_sg"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "admin_sg"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.nat
description: "" => "Allow traffic from the VPC CIDR to the NAT instance"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "nat"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.wxmix
description: "" => "Terraform-controlled SG wxmix"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "wxmix"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group_rule.admin_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.admin_ingress_22_offices
cidr_blocks.#: "" => "11"
cidr_blocks.0: "" => "38.88.201.170/32"
cidr_blocks.1: "" => "65.202.103.0/24"
cidr_blocks.10: "" => "209.234.189.74/32"
cidr_blocks.2: "" => "65.212.71.0/24"
cidr_blocks.3: "" => "71.13.156.240/28"
cidr_blocks.4: "" => "96.8.80.0/20"
cidr_blocks.5: "" => "97.87.220.32/27"
cidr_blocks.6: "" => "97.87.220.64/28"
cidr_blocks.7: "" => "151.237.234.130/32"
cidr_blocks.8: "" => "168.215.93.194/32"
cidr_blocks.9: "" => "185.57.95.64/27"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_22_wfh_ip
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "99.170.166.187/32"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_ICMP
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "-1"
protocol: "" => "icmp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "-1"
type: "" => "ingress"
+ aws_security_group_rule.nat_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.nat_ingress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_subnet
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_subnet.private.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.128/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.private.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.192/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.0/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.64/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_vpc.main
cidr_block: "" => "10.233.212.0/24"
default_network_acl_id: "" => "<computed>"
default_security_group_id: "" => "<computed>"
dhcp_options_id: "" => "<computed>"
enable_dns_hostnames: "" => "<computed>"
enable_dns_support: "" => "<computed>"
main_route_table_id: "" => "<computed>"
tags.#: "" => "1"
tags.Name: "" => "vpc-wxmix-us-east-1"
+ aws_vpc_peering_connection.legacy_sun_vpc
accept_status: "" => "<computed>"
auto_accept: "" => "1"
peer_owner_id: "" => "133124267079"
peer_vpc_id: "" => "vpc-1033c37e"
vpc_id: "" => "${aws_vpc.main.id}"
+ null_resource.provision_testnode.0
+ null_resource.provision_testnode.1
+ null_resource.provision_testnode.2
Plan: 36 to add, 0 to change, 0 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_eip.nat
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "${aws_instance.nat.id}"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
+ aws_iam_instance_profile.testnode_profile
arn: "" => "<computed>"
create_date: "" => "<computed>"
name: "" => "wxmix-qa-us-east-1-testnode_profile"
path: "" => "/"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
unique_id: "" => "<computed>"
+ aws_iam_policy.testnode_policy
arn: "" => "<computed>"
description: "" => "wxmix-qa-us-east-1-testnode_policy"
name: "" => "wxmix-qa-us-east-1-testnode_policy"
path: "" => "/"
policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": [\n \"ec2:Describe*\"\n ],\n \"Effect\": \"Allow\",\n \"Resource\": \"*\"\n }\n ]\n}\n"
+ aws_iam_policy_attachment.testnode_policy-attach
name: "" => "wxmix-qa-us-east-1-testnode_policy-attach"
policy_arn: "" => "${aws_iam_policy.testnode_policy.arn}"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
+ aws_iam_role.testnode_role
arn: "" => "<computed>"
assume_role_policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": \"sts:AssumeRole\",\n \"Principal\": {\n \"Service\": \"ec2.amazonaws.com\"\n },\n \"Effect\": \"Allow\",\n \"Sid\": \"\"\n }\n ]\n}\n"
name: "" => "wxmix-qa-us-east-1-testnode_role"
path: "" => "/"
unique_id: "" => "<computed>"
+ aws_instance.nat
ami: "" => "ami-303b1458"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "0"
subnet_id: "" => "${aws_subnet.public.0.id}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "nat-wxmix-qa"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.0
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.1
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.2
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_internet_gateway.main
tags.#: "0" => "1"
tags.Name: "" => "igw-wxmix-us-east-1"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_main_route_table_association.a
original_route_table_id: "" => "<computed>"
route_table_id: "" => "${aws_route_table.public.id}"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.private
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~3508085667.cidr_block: "" => "0.0.0.0/0"
route.~3508085667.gateway_id: "" => ""
route.~3508085667.instance_id: "" => "${aws_instance.nat.id}"
route.~3508085667.network_interface_id: "" => ""
route.~3508085667.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-private"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.public
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~974281316.cidr_block: "" => "0.0.0.0/0"
route.~974281316.gateway_id: "" => "${aws_internet_gateway.main.id}"
route.~974281316.instance_id: "" => ""
route.~974281316.network_interface_id: "" => ""
route.~974281316.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-main"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table_association.private.0
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.private.1
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.public.0
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_route_table_association.public.1
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_security_group.admin_sg
description: "" => "Terraform-controlled SG admin_sg"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "admin_sg"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.nat
description: "" => "Allow traffic from the VPC CIDR to the NAT instance"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "nat"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.wxmix
description: "" => "Terraform-controlled SG wxmix"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "wxmix"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group_rule.admin_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.admin_ingress_22_offices
cidr_blocks.#: "" => "11"
cidr_blocks.0: "" => "38.88.201.170/32"
cidr_blocks.1: "" => "65.202.103.0/24"
cidr_blocks.10: "" => "209.234.189.74/32"
cidr_blocks.2: "" => "65.212.71.0/24"
cidr_blocks.3: "" => "71.13.156.240/28"
cidr_blocks.4: "" => "96.8.80.0/20"
cidr_blocks.5: "" => "97.87.220.32/27"
cidr_blocks.6: "" => "97.87.220.64/28"
cidr_blocks.7: "" => "151.237.234.130/32"
cidr_blocks.8: "" => "168.215.93.194/32"
cidr_blocks.9: "" => "185.57.95.64/27"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_22_wfh_ip
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "99.170.166.187/32"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_ICMP
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "-1"
protocol: "" => "icmp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "-1"
type: "" => "ingress"
+ aws_security_group_rule.nat_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.nat_ingress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_ftp
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "205.156.51.233/32"
from_port: "" => "20"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "21"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_subnet
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_subnet.private.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.128/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.private.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.192/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.0/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.64/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_vpc.main
cidr_block: "" => "10.233.212.0/24"
default_network_acl_id: "" => "<computed>"
default_security_group_id: "" => "<computed>"
dhcp_options_id: "" => "<computed>"
enable_dns_hostnames: "" => "<computed>"
enable_dns_support: "" => "<computed>"
main_route_table_id: "" => "<computed>"
tags.#: "" => "1"
tags.Name: "" => "vpc-wxmix-us-east-1"
+ aws_vpc_peering_connection.legacy_sun_vpc
accept_status: "" => "<computed>"
auto_accept: "" => "1"
peer_owner_id: "" => "133124267079"
peer_vpc_id: "" => "vpc-1033c37e"
vpc_id: "" => "${aws_vpc.main.id}"
+ null_resource.provision_testnode.0
+ null_resource.provision_testnode.1
+ null_resource.provision_testnode.2
Plan: 37 to add, 0 to change, 0 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_eip.nat
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "${aws_instance.nat.id}"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
+ aws_iam_instance_profile.testnode_profile
arn: "" => "<computed>"
create_date: "" => "<computed>"
name: "" => "wxmix-qa-us-east-1-testnode_profile"
path: "" => "/"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
unique_id: "" => "<computed>"
+ aws_iam_policy.testnode_policy
arn: "" => "<computed>"
description: "" => "wxmix-qa-us-east-1-testnode_policy"
name: "" => "wxmix-qa-us-east-1-testnode_policy"
path: "" => "/"
policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": [\n \"ec2:Describe*\"\n ],\n \"Effect\": \"Allow\",\n \"Resource\": \"*\"\n }\n ]\n}\n"
+ aws_iam_policy_attachment.testnode_policy-attach
name: "" => "wxmix-qa-us-east-1-testnode_policy-attach"
policy_arn: "" => "${aws_iam_policy.testnode_policy.arn}"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
+ aws_iam_role.testnode_role
arn: "" => "<computed>"
assume_role_policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": \"sts:AssumeRole\",\n \"Principal\": {\n \"Service\": \"ec2.amazonaws.com\"\n },\n \"Effect\": \"Allow\",\n \"Sid\": \"\"\n }\n ]\n}\n"
name: "" => "wxmix-qa-us-east-1-testnode_role"
path: "" => "/"
unique_id: "" => "<computed>"
+ aws_instance.nat
ami: "" => "ami-303b1458"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "0"
subnet_id: "" => "${aws_subnet.public.0.id}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "nat-wxmix-qa"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.0
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.1
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.2
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_internet_gateway.main
tags.#: "0" => "1"
tags.Name: "" => "igw-wxmix-us-east-1"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_main_route_table_association.a
original_route_table_id: "" => "<computed>"
route_table_id: "" => "${aws_route_table.public.id}"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.private
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~3508085667.cidr_block: "" => "0.0.0.0/0"
route.~3508085667.gateway_id: "" => ""
route.~3508085667.instance_id: "" => "${aws_instance.nat.id}"
route.~3508085667.network_interface_id: "" => ""
route.~3508085667.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-private"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.public
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~974281316.cidr_block: "" => "0.0.0.0/0"
route.~974281316.gateway_id: "" => "${aws_internet_gateway.main.id}"
route.~974281316.instance_id: "" => ""
route.~974281316.network_interface_id: "" => ""
route.~974281316.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-main"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table_association.private.0
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.private.1
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.public.0
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_route_table_association.public.1
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_security_group.admin_sg
description: "" => "Terraform-controlled SG admin_sg"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "admin_sg"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.nat
description: "" => "Allow traffic from the VPC CIDR to the NAT instance"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "nat"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.wxmix
description: "" => "Terraform-controlled SG wxmix"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "wxmix"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group_rule.admin_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.admin_ingress_22_offices
cidr_blocks.#: "" => "11"
cidr_blocks.0: "" => "38.88.201.170/32"
cidr_blocks.1: "" => "65.202.103.0/24"
cidr_blocks.10: "" => "209.234.189.74/32"
cidr_blocks.2: "" => "65.212.71.0/24"
cidr_blocks.3: "" => "71.13.156.240/28"
cidr_blocks.4: "" => "96.8.80.0/20"
cidr_blocks.5: "" => "97.87.220.32/27"
cidr_blocks.6: "" => "97.87.220.64/28"
cidr_blocks.7: "" => "151.237.234.130/32"
cidr_blocks.8: "" => "168.215.93.194/32"
cidr_blocks.9: "" => "185.57.95.64/27"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_22_wfh_ip
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "99.170.166.187/32"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_ICMP
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "-1"
protocol: "" => "icmp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "-1"
type: "" => "ingress"
+ aws_security_group_rule.nat_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.nat_ingress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_ftp
cidr_blocks.#: "" => "3"
cidr_blocks.0: "" => "205.156.51.233/32"
cidr_blocks.1: "" => "10.224.32.8/32"
cidr_blocks.2: "" => "199.26.254.194/32"
from_port: "" => "20"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "21"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_subnet
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_subnet.private.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.128/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.private.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.192/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.0/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.64/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_vpc.main
cidr_block: "" => "10.233.212.0/24"
default_network_acl_id: "" => "<computed>"
default_security_group_id: "" => "<computed>"
dhcp_options_id: "" => "<computed>"
enable_dns_hostnames: "" => "<computed>"
enable_dns_support: "" => "<computed>"
main_route_table_id: "" => "<computed>"
tags.#: "" => "1"
tags.Name: "" => "vpc-wxmix-us-east-1"
+ aws_vpc_peering_connection.legacy_sun_vpc
accept_status: "" => "<computed>"
auto_accept: "" => "1"
peer_owner_id: "" => "133124267079"
peer_vpc_id: "" => "vpc-1033c37e"
vpc_id: "" => "${aws_vpc.main.id}"
+ null_resource.provision_testnode.0
+ null_resource.provision_testnode.1
+ null_resource.provision_testnode.2
Plan: 37 to add, 0 to change, 0 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_eip.nat
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "${aws_instance.nat.id}"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
+ aws_iam_instance_profile.testnode_profile
arn: "" => "<computed>"
create_date: "" => "<computed>"
name: "" => "wxmix-qa-us-east-1-testnode_profile"
path: "" => "/"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
unique_id: "" => "<computed>"
+ aws_iam_policy.testnode_policy
arn: "" => "<computed>"
description: "" => "wxmix-qa-us-east-1-testnode_policy"
name: "" => "wxmix-qa-us-east-1-testnode_policy"
path: "" => "/"
policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": [\n \"ec2:Describe*\"\n ],\n \"Effect\": \"Allow\",\n \"Resource\": \"*\"\n }\n ]\n}\n"
+ aws_iam_policy_attachment.testnode_policy-attach
name: "" => "wxmix-qa-us-east-1-testnode_policy-attach"
policy_arn: "" => "${aws_iam_policy.testnode_policy.arn}"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
+ aws_iam_role.testnode_role
arn: "" => "<computed>"
assume_role_policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": \"sts:AssumeRole\",\n \"Principal\": {\n \"Service\": \"ec2.amazonaws.com\"\n },\n \"Effect\": \"Allow\",\n \"Sid\": \"\"\n }\n ]\n}\n"
name: "" => "wxmix-qa-us-east-1-testnode_role"
path: "" => "/"
unique_id: "" => "<computed>"
+ aws_instance.nat
ami: "" => "ami-303b1458"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "0"
subnet_id: "" => "${aws_subnet.public.0.id}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "nat-wxmix-qa"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.0
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.1
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.2
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_internet_gateway.main
tags.#: "0" => "1"
tags.Name: "" => "igw-wxmix-us-east-1"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_main_route_table_association.a
original_route_table_id: "" => "<computed>"
route_table_id: "" => "${aws_route_table.public.id}"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.private
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~3508085667.cidr_block: "" => "0.0.0.0/0"
route.~3508085667.gateway_id: "" => ""
route.~3508085667.instance_id: "" => "${aws_instance.nat.id}"
route.~3508085667.network_interface_id: "" => ""
route.~3508085667.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-private"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.public
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~974281316.cidr_block: "" => "0.0.0.0/0"
route.~974281316.gateway_id: "" => "${aws_internet_gateway.main.id}"
route.~974281316.instance_id: "" => ""
route.~974281316.network_interface_id: "" => ""
route.~974281316.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-main"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table_association.private.0
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.private.1
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.public.0
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_route_table_association.public.1
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_security_group.admin_sg
description: "" => "Terraform-controlled SG admin_sg"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "admin_sg"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.nat
description: "" => "Allow traffic from the VPC CIDR to the NAT instance"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "nat"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.wxmix
description: "" => "Terraform-controlled SG wxmix"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "wxmix"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group_rule.admin_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.admin_ingress_22_offices
cidr_blocks.#: "" => "11"
cidr_blocks.0: "" => "38.88.201.170/32"
cidr_blocks.1: "" => "65.202.103.0/24"
cidr_blocks.10: "" => "209.234.189.74/32"
cidr_blocks.2: "" => "65.212.71.0/24"
cidr_blocks.3: "" => "71.13.156.240/28"
cidr_blocks.4: "" => "96.8.80.0/20"
cidr_blocks.5: "" => "97.87.220.32/27"
cidr_blocks.6: "" => "97.87.220.64/28"
cidr_blocks.7: "" => "151.237.234.130/32"
cidr_blocks.8: "" => "168.215.93.194/32"
cidr_blocks.9: "" => "185.57.95.64/27"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_22_wfh_ip
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "99.170.166.187/32"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_ICMP
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "-1"
protocol: "" => "icmp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "-1"
type: "" => "ingress"
+ aws_security_group_rule.nat_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.nat_ingress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_ftp
cidr_blocks.#: "" => "3"
cidr_blocks.0: "" => "205.156.51.233/32"
cidr_blocks.1: "" => "10.224.32.8/32"
cidr_blocks.2: "" => "199.26.254.194/32"
from_port: "" => "20"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "21"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_subnet
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_subnet.private.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.128/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.private.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.192/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.0/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.64/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_vpc.main
cidr_block: "" => "10.233.212.0/24"
default_network_acl_id: "" => "<computed>"
default_security_group_id: "" => "<computed>"
dhcp_options_id: "" => "<computed>"
enable_dns_hostnames: "" => "<computed>"
enable_dns_support: "" => "<computed>"
main_route_table_id: "" => "<computed>"
tags.#: "" => "1"
tags.Name: "" => "vpc-wxmix-us-east-1"
+ aws_vpc_peering_connection.legacy_sun_vpc
accept_status: "" => "<computed>"
auto_accept: "" => "1"
peer_owner_id: "" => "133124267079"
peer_vpc_id: "" => "vpc-1033c37e"
vpc_id: "" => "${aws_vpc.main.id}"
+ null_resource.provision_testnode.0
+ null_resource.provision_testnode.1
+ null_resource.provision_testnode.2
Plan: 37 to add, 0 to change, 0 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Error loading config: Error parsing /Users/gary.armstrong/git-repos/wcs-env-wxmix/config-qa-aws-us-east-1/security_groups.tf: Line 145, column 14: syntax error
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_eip.nat
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "${aws_instance.nat.id}"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
+ aws_iam_instance_profile.testnode_profile
arn: "" => "<computed>"
create_date: "" => "<computed>"
name: "" => "wxmix-qa-us-east-1-testnode_profile"
path: "" => "/"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
unique_id: "" => "<computed>"
+ aws_iam_policy.testnode_policy
arn: "" => "<computed>"
description: "" => "wxmix-qa-us-east-1-testnode_policy"
name: "" => "wxmix-qa-us-east-1-testnode_policy"
path: "" => "/"
policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": [\n \"ec2:Describe*\"\n ],\n \"Effect\": \"Allow\",\n \"Resource\": \"*\"\n }\n ]\n}\n"
+ aws_iam_policy_attachment.testnode_policy-attach
name: "" => "wxmix-qa-us-east-1-testnode_policy-attach"
policy_arn: "" => "${aws_iam_policy.testnode_policy.arn}"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
+ aws_iam_role.testnode_role
arn: "" => "<computed>"
assume_role_policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": \"sts:AssumeRole\",\n \"Principal\": {\n \"Service\": \"ec2.amazonaws.com\"\n },\n \"Effect\": \"Allow\",\n \"Sid\": \"\"\n }\n ]\n}\n"
name: "" => "wxmix-qa-us-east-1-testnode_role"
path: "" => "/"
unique_id: "" => "<computed>"
+ aws_instance.nat
ami: "" => "ami-303b1458"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "0"
subnet_id: "" => "${aws_subnet.public.0.id}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "nat-wxmix-qa"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.0
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.1
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.2
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_internet_gateway.main
tags.#: "0" => "1"
tags.Name: "" => "igw-wxmix-us-east-1"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_main_route_table_association.a
original_route_table_id: "" => "<computed>"
route_table_id: "" => "${aws_route_table.public.id}"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.private
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~3508085667.cidr_block: "" => "0.0.0.0/0"
route.~3508085667.gateway_id: "" => ""
route.~3508085667.instance_id: "" => "${aws_instance.nat.id}"
route.~3508085667.network_interface_id: "" => ""
route.~3508085667.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-private"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.public
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~974281316.cidr_block: "" => "0.0.0.0/0"
route.~974281316.gateway_id: "" => "${aws_internet_gateway.main.id}"
route.~974281316.instance_id: "" => ""
route.~974281316.network_interface_id: "" => ""
route.~974281316.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-main"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table_association.private.0
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.private.1
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.public.0
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_route_table_association.public.1
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_security_group.admin_sg
description: "" => "Terraform-controlled SG admin_sg"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "admin_sg"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.nat
description: "" => "Allow traffic from the VPC CIDR to the NAT instance"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "nat"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.wxmix
description: "" => "Terraform-controlled SG wxmix"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "wxmix"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group_rule.admin_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.admin_ingress_22_offices
cidr_blocks.#: "" => "11"
cidr_blocks.0: "" => "38.88.201.170/32"
cidr_blocks.1: "" => "65.202.103.0/24"
cidr_blocks.10: "" => "209.234.189.74/32"
cidr_blocks.2: "" => "65.212.71.0/24"
cidr_blocks.3: "" => "71.13.156.240/28"
cidr_blocks.4: "" => "96.8.80.0/20"
cidr_blocks.5: "" => "97.87.220.32/27"
cidr_blocks.6: "" => "97.87.220.64/28"
cidr_blocks.7: "" => "151.237.234.130/32"
cidr_blocks.8: "" => "168.215.93.194/32"
cidr_blocks.9: "" => "185.57.95.64/27"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_22_wfh_ip
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "99.170.166.187/32"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_ICMP
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "-1"
protocol: "" => "icmp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "-1"
type: "" => "ingress"
+ aws_security_group_rule.nat_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.nat_ingress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_ftp
cidr_blocks.#: "" => "3"
cidr_blocks.0: "" => "205.156.51.233/32"
cidr_blocks.1: "" => "10.224.32.8/32"
cidr_blocks.2: "" => "199.26.254.194/32"
from_port: "" => "20"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "21"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_subnet
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_subnet.private.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.128/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.private.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.192/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.0/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.64/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_vpc.main
cidr_block: "" => "10.233.212.0/24"
default_network_acl_id: "" => "<computed>"
default_security_group_id: "" => "<computed>"
dhcp_options_id: "" => "<computed>"
enable_dns_hostnames: "" => "<computed>"
enable_dns_support: "" => "<computed>"
main_route_table_id: "" => "<computed>"
tags.#: "" => "1"
tags.Name: "" => "vpc-wxmix-us-east-1"
+ aws_vpc_peering_connection.legacy_sun_vpc
accept_status: "" => "<computed>"
auto_accept: "" => "1"
peer_owner_id: "" => "133124267079"
peer_vpc_id: "" => "vpc-1033c37e"
vpc_id: "" => "${aws_vpc.main.id}"
+ null_resource.provision_testnode.0
+ null_resource.provision_testnode.1
+ null_resource.provision_testnode.2
Plan: 37 to add, 0 to change, 0 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_eip.nat
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "${aws_instance.nat.id}"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
+ aws_iam_instance_profile.testnode_profile
arn: "" => "<computed>"
create_date: "" => "<computed>"
name: "" => "wxmix-qa-us-east-1-testnode_profile"
path: "" => "/"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
unique_id: "" => "<computed>"
+ aws_iam_policy.testnode_policy
arn: "" => "<computed>"
description: "" => "wxmix-qa-us-east-1-testnode_policy"
name: "" => "wxmix-qa-us-east-1-testnode_policy"
path: "" => "/"
policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": [\n \"ec2:Describe*\"\n ],\n \"Effect\": \"Allow\",\n \"Resource\": \"*\"\n }\n ]\n}\n"
+ aws_iam_policy_attachment.testnode_policy-attach
name: "" => "wxmix-qa-us-east-1-testnode_policy-attach"
policy_arn: "" => "${aws_iam_policy.testnode_policy.arn}"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
+ aws_iam_role.testnode_role
arn: "" => "<computed>"
assume_role_policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": \"sts:AssumeRole\",\n \"Principal\": {\n \"Service\": \"ec2.amazonaws.com\"\n },\n \"Effect\": \"Allow\",\n \"Sid\": \"\"\n }\n ]\n}\n"
name: "" => "wxmix-qa-us-east-1-testnode_role"
path: "" => "/"
unique_id: "" => "<computed>"
+ aws_instance.nat
ami: "" => "ami-303b1458"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "0"
subnet_id: "" => "${aws_subnet.public.0.id}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "nat-wxmix-qa"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.0
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.1
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.2
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_internet_gateway.main
tags.#: "0" => "1"
tags.Name: "" => "igw-wxmix-us-east-1"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_main_route_table_association.a
original_route_table_id: "" => "<computed>"
route_table_id: "" => "${aws_route_table.public.id}"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.private
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~3508085667.cidr_block: "" => "0.0.0.0/0"
route.~3508085667.gateway_id: "" => ""
route.~3508085667.instance_id: "" => "${aws_instance.nat.id}"
route.~3508085667.network_interface_id: "" => ""
route.~3508085667.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-private"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.public
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~974281316.cidr_block: "" => "0.0.0.0/0"
route.~974281316.gateway_id: "" => "${aws_internet_gateway.main.id}"
route.~974281316.instance_id: "" => ""
route.~974281316.network_interface_id: "" => ""
route.~974281316.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-main"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table_association.private.0
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.private.1
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.public.0
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_route_table_association.public.1
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_security_group.admin_sg
description: "" => "Terraform-controlled SG admin_sg"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "admin_sg"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.nat
description: "" => "Allow traffic from the VPC CIDR to the NAT instance"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "nat"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.wxmix
description: "" => "Terraform-controlled SG wxmix"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "wxmix"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group_rule.admin_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.admin_ingress_22_offices
cidr_blocks.#: "" => "11"
cidr_blocks.0: "" => "38.88.201.170/32"
cidr_blocks.1: "" => "65.202.103.0/24"
cidr_blocks.10: "" => "209.234.189.74/32"
cidr_blocks.2: "" => "65.212.71.0/24"
cidr_blocks.3: "" => "71.13.156.240/28"
cidr_blocks.4: "" => "96.8.80.0/20"
cidr_blocks.5: "" => "97.87.220.32/27"
cidr_blocks.6: "" => "97.87.220.64/28"
cidr_blocks.7: "" => "151.237.234.130/32"
cidr_blocks.8: "" => "168.215.93.194/32"
cidr_blocks.9: "" => "185.57.95.64/27"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_22_wfh_ip
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "99.170.166.187/32"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_ICMP
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "-1"
protocol: "" => "icmp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "-1"
type: "" => "ingress"
+ aws_security_group_rule.nat_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.nat_ingress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_ftp
cidr_blocks.#: "" => "3"
cidr_blocks.0: "" => "205.156.51.233/32"
cidr_blocks.1: "" => "10.224.32.8/32"
cidr_blocks.2: "" => "199.26.254.194/32"
from_port: "" => "20"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "21"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_subnet
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_subnet.private.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.128/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.private.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.192/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.0/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.64/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_vpc.main
cidr_block: "" => "10.233.212.0/24"
default_network_acl_id: "" => "<computed>"
default_security_group_id: "" => "<computed>"
dhcp_options_id: "" => "<computed>"
enable_dns_hostnames: "" => "<computed>"
enable_dns_support: "" => "<computed>"
main_route_table_id: "" => "<computed>"
tags.#: "" => "1"
tags.Name: "" => "vpc-wxmix-us-east-1"
+ aws_vpc_peering_connection.legacy_sun_vpc
accept_status: "" => "<computed>"
auto_accept: "" => "1"
peer_owner_id: "" => "133124267079"
peer_vpc_id: "" => "vpc-1033c37e"
vpc_id: "" => "${aws_vpc.main.id}"
+ null_resource.provision_testnode.0
+ null_resource.provision_testnode.1
+ null_resource.provision_testnode.2
Plan: 37 to add, 0 to change, 0 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_eip.nat
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "${aws_instance.nat.id}"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
+ aws_iam_instance_profile.testnode_profile
arn: "" => "<computed>"
create_date: "" => "<computed>"
name: "" => "wxmix-qa-us-east-1-testnode_profile"
path: "" => "/"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
unique_id: "" => "<computed>"
+ aws_iam_policy.testnode_policy
arn: "" => "<computed>"
description: "" => "wxmix-qa-us-east-1-testnode_policy"
name: "" => "wxmix-qa-us-east-1-testnode_policy"
path: "" => "/"
policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": [\n \"ec2:Describe*\"\n ],\n \"Effect\": \"Allow\",\n \"Resource\": \"*\"\n }\n ]\n}\n"
+ aws_iam_policy_attachment.testnode_policy-attach
name: "" => "wxmix-qa-us-east-1-testnode_policy-attach"
policy_arn: "" => "${aws_iam_policy.testnode_policy.arn}"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
+ aws_iam_role.testnode_role
arn: "" => "<computed>"
assume_role_policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": \"sts:AssumeRole\",\n \"Principal\": {\n \"Service\": \"ec2.amazonaws.com\"\n },\n \"Effect\": \"Allow\",\n \"Sid\": \"\"\n }\n ]\n}\n"
name: "" => "wxmix-qa-us-east-1-testnode_role"
path: "" => "/"
unique_id: "" => "<computed>"
+ aws_instance.nat
ami: "" => "ami-303b1458"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "0"
subnet_id: "" => "${aws_subnet.public.0.id}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "nat-wxmix-qa"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.0
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.1
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.2
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_internet_gateway.main
tags.#: "0" => "1"
tags.Name: "" => "igw-wxmix-us-east-1"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_main_route_table_association.a
original_route_table_id: "" => "<computed>"
route_table_id: "" => "${aws_route_table.public.id}"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.private
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~3508085667.cidr_block: "" => "0.0.0.0/0"
route.~3508085667.gateway_id: "" => ""
route.~3508085667.instance_id: "" => "${aws_instance.nat.id}"
route.~3508085667.network_interface_id: "" => ""
route.~3508085667.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-private"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.public
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~974281316.cidr_block: "" => "0.0.0.0/0"
route.~974281316.gateway_id: "" => "${aws_internet_gateway.main.id}"
route.~974281316.instance_id: "" => ""
route.~974281316.network_interface_id: "" => ""
route.~974281316.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-main"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table_association.private.0
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.private.1
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.public.0
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_route_table_association.public.1
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_security_group.admin_sg
description: "" => "Terraform-controlled SG admin_sg"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "admin_sg"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.nat
description: "" => "Allow traffic from the VPC CIDR to the NAT instance"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "nat"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.wxmix
description: "" => "Terraform-controlled SG wxmix"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "wxmix"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group_rule.admin_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.admin_ingress_22_offices
cidr_blocks.#: "" => "11"
cidr_blocks.0: "" => "38.88.201.170/32"
cidr_blocks.1: "" => "65.202.103.0/24"
cidr_blocks.10: "" => "209.234.189.74/32"
cidr_blocks.2: "" => "65.212.71.0/24"
cidr_blocks.3: "" => "71.13.156.240/28"
cidr_blocks.4: "" => "96.8.80.0/20"
cidr_blocks.5: "" => "97.87.220.32/27"
cidr_blocks.6: "" => "97.87.220.64/28"
cidr_blocks.7: "" => "151.237.234.130/32"
cidr_blocks.8: "" => "168.215.93.194/32"
cidr_blocks.9: "" => "185.57.95.64/27"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_22_wfh_ip
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "99.170.166.187/32"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_ICMP
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "-1"
protocol: "" => "icmp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "-1"
type: "" => "ingress"
+ aws_security_group_rule.nat_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.nat_ingress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_ftp
cidr_blocks.#: "" => "3"
cidr_blocks.0: "" => "205.156.51.233/32"
cidr_blocks.1: "" => "10.224.32.8/32"
cidr_blocks.2: "" => "199.26.254.194/32"
from_port: "" => "20"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "21"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_ldm
cidr_blocks.#: "" => "5"
cidr_blocks.0: "" => "96.8.80.0/20"
cidr_blocks.1: "" => "10.0.0.0/8"
cidr_blocks.2: "" => "52.22.139.84/32"
cidr_blocks.3: "" => "52.70.108.250/32"
cidr_blocks.4: "" => "54.164.35.174/32"
from_port: "" => "388"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "388"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_subnet
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_subnet.private.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.128/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.private.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.192/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.0/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.64/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_vpc.main
cidr_block: "" => "10.233.212.0/24"
default_network_acl_id: "" => "<computed>"
default_security_group_id: "" => "<computed>"
dhcp_options_id: "" => "<computed>"
enable_dns_hostnames: "" => "<computed>"
enable_dns_support: "" => "<computed>"
main_route_table_id: "" => "<computed>"
tags.#: "" => "1"
tags.Name: "" => "vpc-wxmix-us-east-1"
+ aws_vpc_peering_connection.legacy_sun_vpc
accept_status: "" => "<computed>"
auto_accept: "" => "1"
peer_owner_id: "" => "133124267079"
peer_vpc_id: "" => "vpc-1033c37e"
vpc_id: "" => "${aws_vpc.main.id}"
+ null_resource.provision_testnode.0
+ null_resource.provision_testnode.1
+ null_resource.provision_testnode.2
Plan: 38 to add, 0 to change, 0 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_eip.nat
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "${aws_instance.nat.id}"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
+ aws_iam_instance_profile.testnode_profile
arn: "" => "<computed>"
create_date: "" => "<computed>"
name: "" => "wxmix-qa-us-east-1-testnode_profile"
path: "" => "/"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
unique_id: "" => "<computed>"
+ aws_iam_policy.testnode_policy
arn: "" => "<computed>"
description: "" => "wxmix-qa-us-east-1-testnode_policy"
name: "" => "wxmix-qa-us-east-1-testnode_policy"
path: "" => "/"
policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": [\n \"ec2:Describe*\"\n ],\n \"Effect\": \"Allow\",\n \"Resource\": \"*\"\n }\n ]\n}\n"
+ aws_iam_policy_attachment.testnode_policy-attach
name: "" => "wxmix-qa-us-east-1-testnode_policy-attach"
policy_arn: "" => "${aws_iam_policy.testnode_policy.arn}"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
+ aws_iam_role.testnode_role
arn: "" => "<computed>"
assume_role_policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": \"sts:AssumeRole\",\n \"Principal\": {\n \"Service\": \"ec2.amazonaws.com\"\n },\n \"Effect\": \"Allow\",\n \"Sid\": \"\"\n }\n ]\n}\n"
name: "" => "wxmix-qa-us-east-1-testnode_role"
path: "" => "/"
unique_id: "" => "<computed>"
+ aws_instance.nat
ami: "" => "ami-303b1458"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "0"
subnet_id: "" => "${aws_subnet.public.0.id}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "nat-wxmix-qa"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.0
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.1
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_instance.testnode.2
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_internet_gateway.main
tags.#: "0" => "1"
tags.Name: "" => "igw-wxmix-us-east-1"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_main_route_table_association.a
original_route_table_id: "" => "<computed>"
route_table_id: "" => "${aws_route_table.public.id}"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.private
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~3508085667.cidr_block: "" => "0.0.0.0/0"
route.~3508085667.gateway_id: "" => ""
route.~3508085667.instance_id: "" => "${aws_instance.nat.id}"
route.~3508085667.network_interface_id: "" => ""
route.~3508085667.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-private"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table.public
route.#: "" => "2"
route.~1505470446.cidr_block: "" => "10.224.32.0/19"
route.~1505470446.gateway_id: "" => ""
route.~1505470446.instance_id: "" => ""
route.~1505470446.network_interface_id: "" => ""
route.~1505470446.vpc_peering_connection_id: "" => "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
route.~974281316.cidr_block: "" => "0.0.0.0/0"
route.~974281316.gateway_id: "" => "${aws_internet_gateway.main.id}"
route.~974281316.instance_id: "" => ""
route.~974281316.network_interface_id: "" => ""
route.~974281316.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-main"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_route_table_association.private.0
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.private.1
route_table_id: "" => "${aws_route_table.private.id}"
subnet_id: "" => "${element(aws_subnet.private.*.id, count.index)}"
+ aws_route_table_association.public.0
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_route_table_association.public.1
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "${element(aws_subnet.public.*.id, count.index)}"
+ aws_security_group.admin_sg
description: "" => "Terraform-controlled SG admin_sg"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "admin_sg"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.nat
description: "" => "Allow traffic from the VPC CIDR to the NAT instance"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "nat"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group.wxmix
description: "" => "Terraform-controlled SG wxmix"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "wxmix"
owner_id: "" => "<computed>"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_security_group_rule.admin_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.admin_ingress_22_offices
cidr_blocks.#: "" => "11"
cidr_blocks.0: "" => "38.88.201.170/32"
cidr_blocks.1: "" => "65.202.103.0/24"
cidr_blocks.10: "" => "209.234.189.74/32"
cidr_blocks.2: "" => "65.212.71.0/24"
cidr_blocks.3: "" => "71.13.156.240/28"
cidr_blocks.4: "" => "96.8.80.0/20"
cidr_blocks.5: "" => "97.87.220.32/27"
cidr_blocks.6: "" => "97.87.220.64/28"
cidr_blocks.7: "" => "151.237.234.130/32"
cidr_blocks.8: "" => "168.215.93.194/32"
cidr_blocks.9: "" => "185.57.95.64/27"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_22_wfh_ip
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "99.170.166.187/32"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
+ aws_security_group_rule.admin_ingress_ICMP
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "-1"
protocol: "" => "icmp"
security_group_id: "" => "${aws_security_group.admin_sg.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "-1"
type: "" => "ingress"
+ aws_security_group_rule.nat_egress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
+ aws_security_group_rule.nat_ingress_all
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "${aws_security_group.nat.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_ftp
cidr_blocks.#: "" => "3"
cidr_blocks.0: "" => "205.156.51.233/32"
cidr_blocks.1: "" => "10.224.32.8/32"
cidr_blocks.2: "" => "199.26.254.194/32"
from_port: "" => "20"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "21"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_http
cidr_blocks.#: "" => "2"
cidr_blocks.0: "" => "96.8.80.0/20"
cidr_blocks.1: "" => "10.0.0.0/8"
from_port: "" => "80"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "80"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_https
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.0.0.0/8"
from_port: "" => "443"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "443"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_ldm
cidr_blocks.#: "" => "5"
cidr_blocks.0: "" => "96.8.80.0/20"
cidr_blocks.1: "" => "10.0.0.0/8"
cidr_blocks.2: "" => "52.22.139.84/32"
cidr_blocks.3: "" => "52.70.108.250/32"
cidr_blocks.4: "" => "54.164.35.174/32"
from_port: "" => "388"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "388"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_perforce
cidr_blocks.#: "" => "2"
cidr_blocks.0: "" => "96.8.80.0/20"
cidr_blocks.1: "" => "10.0.0.0/8"
from_port: "" => "1666"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "1666"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_postgres
cidr_blocks.#: "" => "2"
cidr_blocks.0: "" => "96.8.80.0/20"
cidr_blocks.1: "" => "10.0.0.0/8"
from_port: "" => "5432"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "5432"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_rmq
cidr_blocks.#: "" => "2"
cidr_blocks.0: "" => "96.8.80.0/20"
cidr_blocks.1: "" => "10.0.0.0/8"
from_port: "" => "5672"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "5672"
type: "" => "ingress"
+ aws_security_group_rule.wxmix_subnet
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "tcp"
security_group_id: "" => "${aws_security_group.wxmix.id}"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
+ aws_subnet.private.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.128/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.private.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.192/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.0
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.0/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-b"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_subnet.public.1
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.64/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-c"
vpc_id: "" => "${aws_vpc.main.id}"
+ aws_vpc.main
cidr_block: "" => "10.233.212.0/24"
default_network_acl_id: "" => "<computed>"
default_security_group_id: "" => "<computed>"
dhcp_options_id: "" => "<computed>"
enable_dns_hostnames: "" => "<computed>"
enable_dns_support: "" => "<computed>"
main_route_table_id: "" => "<computed>"
tags.#: "" => "1"
tags.Name: "" => "vpc-wxmix-us-east-1"
+ aws_vpc_peering_connection.legacy_sun_vpc
accept_status: "" => "<computed>"
auto_accept: "" => "1"
peer_owner_id: "" => "133124267079"
peer_vpc_id: "" => "vpc-1033c37e"
vpc_id: "" => "${aws_vpc.main.id}"
+ null_resource.provision_testnode.0
+ null_resource.provision_testnode.1
+ null_resource.provision_testnode.2
Plan: 43 to add, 0 to change, 0 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform apply
aws_iam_role.testnode_role: Creating...
arn: "" => "<computed>"
assume_role_policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": \"sts:AssumeRole\",\n \"Principal\": {\n \"Service\": \"ec2.amazonaws.com\"\n },\n \"Effect\": \"Allow\",\n \"Sid\": \"\"\n }\n ]\n}\n"
name: "" => "wxmix-qa-us-east-1-testnode_role"
path: "" => "/"
unique_id: "" => "<computed>"
aws_iam_policy.testnode_policy: Creating...
arn: "" => "<computed>"
description: "" => "wxmix-qa-us-east-1-testnode_policy"
name: "" => "wxmix-qa-us-east-1-testnode_policy"
path: "" => "/"
policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": [\n \"ec2:Describe*\"\n ],\n \"Effect\": \"Allow\",\n \"Resource\": \"*\"\n }\n ]\n}\n"
aws_vpc.main: Creating...
cidr_block: "" => "10.233.212.0/24"
default_network_acl_id: "" => "<computed>"
default_security_group_id: "" => "<computed>"
dhcp_options_id: "" => "<computed>"
enable_dns_hostnames: "" => "<computed>"
enable_dns_support: "" => "<computed>"
main_route_table_id: "" => "<computed>"
tags.#: "" => "1"
tags.Name: "" => "vpc-wxmix-us-east-1"
aws_iam_role.testnode_role: Creation complete
aws_iam_instance_profile.testnode_profile: Creating...
arn: "" => "<computed>"
create_date: "" => "<computed>"
name: "" => "wxmix-qa-us-east-1-testnode_profile"
path: "" => "/"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
unique_id: "" => "<computed>"
aws_iam_policy.testnode_policy: Creation complete
aws_iam_policy_attachment.testnode_policy-attach: Creating...
name: "" => "wxmix-qa-us-east-1-testnode_policy-attach"
policy_arn: "" => "arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-testnode_policy"
roles.#: "" => "1"
roles.2588860927: "" => "wxmix-qa-us-east-1-testnode_role"
aws_iam_instance_profile.testnode_profile: Creation complete
aws_iam_policy_attachment.testnode_policy-attach: Creation complete
aws_vpc.main: Creation complete
aws_security_group.wxmix: Creating...
description: "" => "Terraform-controlled SG wxmix"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "wxmix"
owner_id: "" => "<computed>"
vpc_id: "" => "vpc-b89e07dc"
aws_vpc_peering_connection.legacy_sun_vpc: Creating...
accept_status: "" => "<computed>"
auto_accept: "" => "1"
peer_owner_id: "" => "133124267079"
peer_vpc_id: "" => "vpc-1033c37e"
vpc_id: "" => "vpc-b89e07dc"
aws_internet_gateway.main: Creating...
tags.#: "0" => "1"
tags.Name: "" => "igw-wxmix-us-east-1"
vpc_id: "" => "vpc-b89e07dc"
aws_security_group.admin_sg: Creating...
description: "" => "Terraform-controlled SG admin_sg"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "admin_sg"
owner_id: "" => "<computed>"
vpc_id: "" => "vpc-b89e07dc"
aws_security_group.nat: Creating...
description: "" => "Allow traffic from the VPC CIDR to the NAT instance"
egress.#: "" => "<computed>"
ingress.#: "" => "<computed>"
name: "" => "nat"
owner_id: "" => "<computed>"
vpc_id: "" => "vpc-b89e07dc"
aws_subnet.public.0: Creating...
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.0/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-b"
vpc_id: "" => "vpc-b89e07dc"
aws_subnet.private.1: Creating...
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.192/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-c"
vpc_id: "" => "vpc-b89e07dc"
aws_subnet.public.1: Creating...
availability_zone: "" => "us-east-1c"
cidr_block: "" => "10.233.212.64/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-public-c"
vpc_id: "" => "vpc-b89e07dc"
aws_subnet.private.0: Creating...
availability_zone: "" => "us-east-1b"
cidr_block: "" => "10.233.212.128/26"
map_public_ip_on_launch: "" => "0"
tags.#: "" => "1"
tags.Name: "" => "sn-wxmix-us-east-1-private-b"
vpc_id: "" => "vpc-b89e07dc"
aws_security_group.wxmix: Creation complete
aws_security_group_rule.wxmix_perforce: Creating...
cidr_blocks.#: "" => "2"
cidr_blocks.0: "" => "96.8.80.0/20"
cidr_blocks.1: "" => "10.0.0.0/8"
from_port: "" => "1666"
protocol: "" => "tcp"
security_group_id: "" => "sg-4d342e2b"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "1666"
type: "" => "ingress"
aws_security_group_rule.wxmix_http: Creating...
cidr_blocks.#: "" => "2"
cidr_blocks.0: "" => "96.8.80.0/20"
cidr_blocks.1: "" => "10.0.0.0/8"
from_port: "" => "80"
protocol: "" => "tcp"
security_group_id: "" => "sg-4d342e2b"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "80"
type: "" => "ingress"
aws_security_group_rule.wxmix_subnet: Creating...
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "tcp"
security_group_id: "" => "sg-4d342e2b"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
aws_security_group.nat: Creation complete
aws_security_group_rule.wxmix_ftp: Creating...
cidr_blocks.#: "" => "3"
cidr_blocks.0: "" => "205.156.51.233/32"
cidr_blocks.1: "" => "10.224.32.8/32"
cidr_blocks.2: "" => "199.26.254.194/32"
from_port: "" => "20"
protocol: "" => "tcp"
security_group_id: "" => "sg-4d342e2b"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "21"
type: "" => "ingress"
aws_security_group.admin_sg: Creation complete
aws_security_group_rule.wxmix_https: Creating...
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.0.0.0/8"
from_port: "" => "443"
protocol: "" => "tcp"
security_group_id: "" => "sg-4d342e2b"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "443"
type: "" => "ingress"
aws_subnet.public.0: Creation complete
aws_vpc_peering_connection.legacy_sun_vpc: Creation complete
aws_security_group_rule.wxmix_ldm: Creating...
cidr_blocks.#: "" => "5"
cidr_blocks.0: "" => "96.8.80.0/20"
cidr_blocks.1: "" => "10.0.0.0/8"
cidr_blocks.2: "" => "52.22.139.84/32"
cidr_blocks.3: "" => "52.70.108.250/32"
cidr_blocks.4: "" => "54.164.35.174/32"
from_port: "" => "388"
protocol: "" => "tcp"
security_group_id: "" => "sg-4d342e2b"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "388"
type: "" => "ingress"
aws_security_group_rule.wxmix_rmq: Creating...
cidr_blocks.#: "" => "2"
cidr_blocks.0: "" => "96.8.80.0/20"
cidr_blocks.1: "" => "10.0.0.0/8"
from_port: "" => "5672"
protocol: "" => "tcp"
security_group_id: "" => "sg-4d342e2b"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "5672"
type: "" => "ingress"
aws_subnet.private.0: Creation complete
aws_security_group_rule.wxmix_postgres: Creating...
cidr_blocks.#: "" => "2"
cidr_blocks.0: "" => "96.8.80.0/20"
cidr_blocks.1: "" => "10.0.0.0/8"
from_port: "" => "5432"
protocol: "" => "tcp"
security_group_id: "" => "sg-4d342e2b"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "5432"
type: "" => "ingress"
aws_subnet.public.1: Creation complete
aws_security_group_rule.nat_egress_all: Creating...
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "sg-4b342e2d"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
aws_security_group_rule.wxmix_perforce: Creation complete
aws_security_group_rule.admin_ingress_ICMP: Creating...
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "-1"
protocol: "" => "icmp"
security_group_id: "" => "sg-4a342e2c"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "-1"
type: "" => "ingress"
aws_security_group_rule.wxmix_subnet: Creation complete
aws_security_group_rule.nat_ingress_all: Creating...
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "10.233.212.0/24"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "sg-4b342e2d"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "ingress"
aws_subnet.private.1: Creation complete
aws_instance.testnode.0: Creating...
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
aws_security_group_rule.wxmix_http: Creation complete
aws_security_group_rule.nat_egress_all: Creation complete
aws_security_group_rule.admin_ingress_22_offices: Creating...
cidr_blocks.#: "" => "11"
cidr_blocks.0: "" => "38.88.201.170/32"
cidr_blocks.1: "" => "65.202.103.0/24"
cidr_blocks.10: "" => "209.234.189.74/32"
cidr_blocks.2: "" => "65.212.71.0/24"
cidr_blocks.3: "" => "71.13.156.240/28"
cidr_blocks.4: "" => "96.8.80.0/20"
cidr_blocks.5: "" => "97.87.220.32/27"
cidr_blocks.6: "" => "97.87.220.64/28"
cidr_blocks.7: "" => "151.237.234.130/32"
cidr_blocks.8: "" => "168.215.93.194/32"
cidr_blocks.9: "" => "185.57.95.64/27"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "sg-4a342e2c"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
aws_security_group_rule.admin_egress_all: Creating...
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "0.0.0.0/0"
from_port: "" => "0"
protocol: "" => "-1"
security_group_id: "" => "sg-4a342e2c"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "0"
type: "" => "egress"
aws_security_group_rule.admin_ingress_ICMP: Creation complete
aws_instance.nat: Creating...
ami: "" => "ami-303b1458"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "0"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "nat-wxmix-qa"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.884104252: "" => "sg-4b342e2d"
aws_security_group_rule.wxmix_https: Creation complete
aws_instance.testnode.1: Creating...
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
aws_security_group_rule.wxmix_ldm: Creation complete
aws_instance.testnode.2: Creating...
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-testnode_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
aws_security_group_rule.wxmix_postgres: Creation complete
aws_security_group_rule.admin_ingress_22_wfh_ip: Creating...
cidr_blocks.#: "" => "1"
cidr_blocks.0: "" => "99.170.166.187/32"
from_port: "" => "22"
protocol: "" => "tcp"
security_group_id: "" => "sg-4a342e2c"
self: "" => "0"
source_security_group_id: "" => "<computed>"
to_port: "" => "22"
type: "" => "ingress"
aws_security_group_rule.wxmix_rmq: Creation complete
aws_security_group_rule.admin_egress_all: Creation complete
aws_security_group_rule.wxmix_ftp: Creation complete
aws_security_group_rule.admin_ingress_22_offices: Creation complete
aws_security_group_rule.nat_ingress_all: Creation complete
aws_security_group_rule.admin_ingress_22_wfh_ip: Creation complete
aws_instance.nat: Creation complete
aws_route_table.private: Creating...
route.#: "" => "2"
route.2230898328.cidr_block: "" => "0.0.0.0/0"
route.2230898328.gateway_id: "" => ""
route.2230898328.instance_id: "" => "i-d2945c63"
route.2230898328.network_interface_id: "" => ""
route.2230898328.vpc_peering_connection_id: "" => ""
route.2373373158.cidr_block: "" => "10.224.32.0/19"
route.2373373158.gateway_id: "" => ""
route.2373373158.instance_id: "" => ""
route.2373373158.network_interface_id: "" => ""
route.2373373158.vpc_peering_connection_id: "" => "pcx-3e4c9257"
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-private"
vpc_id: "" => "vpc-b89e07dc"
aws_eip.nat: Creating...
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "i-d2945c63"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
aws_route_table.private: Creation complete
aws_route_table_association.private.0: Creating...
route_table_id: "" => "rtb-81a8fee5"
subnet_id: "" => "subnet-aefbe485"
aws_route_table_association.private.1: Creating...
route_table_id: "" => "rtb-81a8fee5"
subnet_id: "" => "subnet-07529971"
aws_route_table_association.private.0: Creation complete
aws_route_table_association.private.1: Creation complete
aws_instance.testnode.2: Creation complete
aws_instance.testnode.1: Creation complete
aws_instance.testnode.0: Creation complete
null_resource.provision_testnode.0: Creating...
null_resource.provision_testnode.1: Creating...
null_resource.provision_testnode.2: Creating...
null_resource.provision_testnode.0: Provisioning with 'remote-exec'...
null_resource.provision_testnode.1: Provisioning with 'remote-exec'...
null_resource.provision_testnode.2: Provisioning with 'remote-exec'...
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
Error applying plan:
5 error(s) occurred:
* aws_internet_gateway.main: InvalidInternetGatewayID.NotFound: The internetGateway ID 'igw-e43bd280' does not exist
status code: 400, request id:
* aws_eip.nat: Failure associating EIP: Gateway.NotAttached: Network vpc-b89e07dc is not attached to any internet gateway
status code: 400, request id:
* dial tcp 54.164.102.29:22: i/o timeout
* dial tcp 54.164.51.233:22: i/o timeout
* dial tcp 52.91.99.204:22: i/o timeout
Terraform does not automatically rollback in the face of errors.
Instead, your Terraform state file has been partially updated with
any resources that successfully completed. Please address the error
above and apply again to incrementally change your infrastructure.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
null_resource.provision_testnode.1: Refreshing state... (ID: 4858391063012084538)
null_resource.provision_testnode.0: Refreshing state... (ID: 5320112118915240903)
null_resource.provision_testnode.2: Refreshing state... (ID: 5910252662532983007)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_role.testnode_role: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_role)
aws_iam_policy.testnode_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-testnode_policy)
aws_iam_instance_profile.testnode_profile: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_profile)
aws_iam_policy_attachment.testnode_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_policy-attach)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_instance.testnode.0: Refreshing state... (ID: i-44945cf5)
aws_instance.testnode.1: Refreshing state... (ID: i-126400a4)
aws_instance.testnode.2: Refreshing state... (ID: i-47945cf6)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
~ aws_eip.nat
instance: "" => "i-d2945c63"
~ aws_internet_gateway.main
tags.#: "0" => "1"
tags.Name: "" => "igw-wxmix-us-east-1"
vpc_id: "" => "vpc-b89e07dc"
+ aws_main_route_table_association.a
original_route_table_id: "" => "<computed>"
route_table_id: "" => "${aws_route_table.public.id}"
vpc_id: "" => "vpc-b89e07dc"
+ aws_route_table.public
route.#: "" => "2"
route.2373373158.cidr_block: "" => "10.224.32.0/19"
route.2373373158.gateway_id: "" => ""
route.2373373158.instance_id: "" => ""
route.2373373158.network_interface_id: "" => ""
route.2373373158.vpc_peering_connection_id: "" => "pcx-3e4c9257"
route.478350572.cidr_block: "" => "0.0.0.0/0"
route.478350572.gateway_id: "" => "igw-e43bd280"
route.478350572.instance_id: "" => ""
route.478350572.network_interface_id: "" => ""
route.478350572.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-main"
vpc_id: "" => "vpc-b89e07dc"
+ aws_route_table_association.public.0
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "subnet-adfbe486"
+ aws_route_table_association.public.1
route_table_id: "" => "${aws_route_table.public.id}"
subnet_id: "" => "subnet-06529970"
-/+ null_resource.provision_testnode.0
-/+ null_resource.provision_testnode.1
-/+ null_resource.provision_testnode.2
Plan: 7 to add, 2 to change, 0 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform apply
null_resource.provision_testnode.2: Refreshing state... (ID: 5910252662532983007)
null_resource.provision_testnode.0: Refreshing state... (ID: 5320112118915240903)
null_resource.provision_testnode.1: Refreshing state... (ID: 4858391063012084538)
aws_iam_policy.testnode_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-testnode_policy)
aws_iam_role.testnode_role: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_role)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_instance_profile.testnode_profile: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_profile)
aws_iam_policy_attachment.testnode_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_policy-attach)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_instance.testnode.0: Refreshing state... (ID: i-44945cf5)
aws_instance.testnode.1: Refreshing state... (ID: i-126400a4)
aws_instance.testnode.2: Refreshing state... (ID: i-47945cf6)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
null_resource.provision_testnode.2: Destroying...
null_resource.provision_testnode.1: Destroying...
null_resource.provision_testnode.0: Destroying...
null_resource.provision_testnode.0: Creating...
null_resource.provision_testnode.1: Creating...
aws_internet_gateway.main: Modifying...
tags.#: "0" => "1"
tags.Name: "" => "igw-wxmix-us-east-1"
vpc_id: "" => "vpc-b89e07dc"
aws_eip.nat: Modifying...
instance: "" => "i-d2945c63"
null_resource.provision_testnode.2: Creating...
null_resource.provision_testnode.0: Provisioning with 'remote-exec'...
null_resource.provision_testnode.1: Provisioning with 'remote-exec'...
null_resource.provision_testnode.2: Provisioning with 'remote-exec'...
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
aws_internet_gateway.main: Modifications complete
aws_route_table.public: Creating...
route.#: "" => "2"
route.2373373158.cidr_block: "" => "10.224.32.0/19"
route.2373373158.gateway_id: "" => ""
route.2373373158.instance_id: "" => ""
route.2373373158.network_interface_id: "" => ""
route.2373373158.vpc_peering_connection_id: "" => "pcx-3e4c9257"
route.478350572.cidr_block: "" => "0.0.0.0/0"
route.478350572.gateway_id: "" => "igw-e43bd280"
route.478350572.instance_id: "" => ""
route.478350572.network_interface_id: "" => ""
route.478350572.vpc_peering_connection_id: "" => ""
tags.#: "" => "1"
tags.Name: "" => "rtb-wxmix-us-east-1-main"
vpc_id: "" => "vpc-b89e07dc"
aws_eip.nat: Modifications complete
aws_route_table.public: Creation complete
aws_main_route_table_association.a: Creating...
original_route_table_id: "" => "<computed>"
route_table_id: "" => "rtb-e8d5838c"
vpc_id: "" => "vpc-b89e07dc"
aws_route_table_association.public.0: Creating...
route_table_id: "" => "rtb-e8d5838c"
subnet_id: "" => "subnet-adfbe486"
aws_route_table_association.public.1: Creating...
route_table_id: "" => "rtb-e8d5838c"
subnet_id: "" => "subnet-06529970"
aws_route_table_association.public.0: Creation complete
aws_route_table_association.public.1: Creation complete
aws_main_route_table_association.a: Creation complete
null_resource.provision_testnode.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.0 (remote-exec): Host: 54.164.102.29
null_resource.provision_testnode.0 (remote-exec): User: centos
null_resource.provision_testnode.0 (remote-exec): Password: false
null_resource.provision_testnode.0 (remote-exec): Private key: false
null_resource.provision_testnode.0 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.1 (remote-exec): Host: 52.91.99.204
null_resource.provision_testnode.1 (remote-exec): User: centos
null_resource.provision_testnode.1 (remote-exec): Password: false
null_resource.provision_testnode.1 (remote-exec): Private key: false
null_resource.provision_testnode.1 (remote-exec): SSH Agent: true
null_resource.provision_testnode.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_testnode.2 (remote-exec): Host: 54.164.51.233
null_resource.provision_testnode.2 (remote-exec): User: centos
null_resource.provision_testnode.2 (remote-exec): Password: false
null_resource.provision_testnode.2 (remote-exec): Private key: false
null_resource.provision_testnode.2 (remote-exec): SSH Agent: true
null_resource.provision_testnode.1 (remote-exec): Connected!
null_resource.provision_testnode.1: Creation complete
null_resource.provision_testnode.2 (remote-exec): Connected!
null_resource.provision_testnode.2: Creation complete
null_resource.provision_testnode.0 (remote-exec): Connected!
null_resource.provision_testnode.0: Creation complete
Apply complete! Resources: 7 added, 2 changed, 0 destroyed.
The state of your infrastructure has been saved to the path
below. This state is required to modify and destroy your
infrastructure, so keep it safe. To inspect the complete state
use the `terraform show` command.
State path: terraform.tfstate
Outputs:
VPC id = vpc-b89e07dc
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform show
aws_eip.nat:
id = eipalloc-2208dd46
association_id = eipassoc-fd39b284
domain = vpc
instance = i-d2945c63
network_interface = eni-0ca9be2c
private_ip = 10.233.212.17
public_ip = 52.5.199.79
vpc = true
aws_iam_instance_profile.testnode_profile:
id = wxmix-qa-us-east-1-testnode_profile
arn = arn:aws:iam::133124267079:instance-profile/wxmix-qa-us-east-1-testnode_profile
name = wxmix-qa-us-east-1-testnode_profile
path = /
roles.# = 1
roles.2588860927 = wxmix-qa-us-east-1-testnode_role
aws_iam_policy.testnode_policy:
id = arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-testnode_policy
arn = arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-testnode_policy
description = wxmix-qa-us-east-1-testnode_policy
name = wxmix-qa-us-east-1-testnode_policy
path = /
policy = {
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"ec2:Describe*"
],
"Effect": "Allow",
"Resource": "*"
}
]
}
aws_iam_policy_attachment.testnode_policy-attach:
id = wxmix-qa-us-east-1-testnode_policy-attach
groups.# = 0
name = wxmix-qa-us-east-1-testnode_policy-attach
policy_arn = arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-testnode_policy
roles.# = 1
roles.2588860927 = wxmix-qa-us-east-1-testnode_role
users.# = 0
aws_iam_role.testnode_role:
id = wxmix-qa-us-east-1-testnode_role
arn = arn:aws:iam::133124267079:role/wxmix-qa-us-east-1-testnode_role
assume_role_policy = {
"Version": "2012-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {
"Service": "ec2.amazonaws.com"
},
"Effect": "Allow",
"Sid": ""
}
]
}
name = wxmix-qa-us-east-1-testnode_role
path = /
unique_id = AROAJ3BKM5WXUGN4WIRXG
aws_instance.nat:
id = i-d2945c63
ami = ami-303b1458
associate_public_ip_address = true
availability_zone = us-east-1b
ebs_block_device.# = 0
ebs_optimized = false
ephemeral_block_device.# = 0
iam_instance_profile =
instance_type = t2.small
key_name = sunfod-qa-us-east-1-general
monitoring = false
private_dns = ip-10-233-212-17.ec2.internal
private_ip = 10.233.212.17
public_dns =
public_ip = 54.164.100.8
root_block_device.# = 1
root_block_device.0.delete_on_termination = true
root_block_device.0.iops = 24
root_block_device.0.volume_size = 8
root_block_device.0.volume_type = gp2
security_groups.# = 0
source_dest_check = false
subnet_id = subnet-adfbe486
tags.# = 2
tags.Billing = FOD
tags.Name = nat-wxmix-qa
tenancy = default
vpc_security_group_ids.# = 2
vpc_security_group_ids.2604585730 = sg-4a342e2c
vpc_security_group_ids.884104252 = sg-4b342e2d
aws_instance.testnode.0:
id = i-44945cf5
ami = ami-aa094ec2
associate_public_ip_address = true
availability_zone = us-east-1b
ebs_block_device.# = 0
ebs_optimized = false
ephemeral_block_device.# = 0
iam_instance_profile = wxmix-qa-us-east-1-testnode_profile
instance_type = t2.small
key_name = sunfod-qa-us-east-1-general
monitoring = false
private_dns = ip-10-233-212-29.ec2.internal
private_ip = 10.233.212.29
public_dns =
public_ip = 54.164.102.29
root_block_device.# = 1
root_block_device.0.delete_on_termination = false
root_block_device.0.iops = 24
root_block_device.0.volume_size = 8
root_block_device.0.volume_type = gp2
security_groups.# = 0
source_dest_check = true
subnet_id = subnet-adfbe486
tags.# = 2
tags.Billing = FOD
tags.Name = wxmix-qa-testnode-000
tenancy = default
vpc_security_group_ids.# = 2
vpc_security_group_ids.2604585730 = sg-4a342e2c
vpc_security_group_ids.3187788851 = sg-4d342e2b
aws_instance.testnode.1:
id = i-126400a4
ami = ami-aa094ec2
associate_public_ip_address = true
availability_zone = us-east-1c
ebs_block_device.# = 0
ebs_optimized = false
ephemeral_block_device.# = 0
iam_instance_profile = wxmix-qa-us-east-1-testnode_profile
instance_type = t2.small
key_name = sunfod-qa-us-east-1-general
monitoring = false
private_dns = ip-10-233-212-88.ec2.internal
private_ip = 10.233.212.88
public_dns =
public_ip = 52.91.99.204
root_block_device.# = 1
root_block_device.0.delete_on_termination = false
root_block_device.0.iops = 24
root_block_device.0.volume_size = 8
root_block_device.0.volume_type = gp2
security_groups.# = 0
source_dest_check = true
subnet_id = subnet-06529970
tags.# = 2
tags.Billing = FOD
tags.Name = wxmix-qa-testnode-001
tenancy = default
vpc_security_group_ids.# = 2
vpc_security_group_ids.2604585730 = sg-4a342e2c
vpc_security_group_ids.3187788851 = sg-4d342e2b
aws_instance.testnode.2:
id = i-47945cf6
ami = ami-aa094ec2
associate_public_ip_address = true
availability_zone = us-east-1b
ebs_block_device.# = 0
ebs_optimized = false
ephemeral_block_device.# = 0
iam_instance_profile = wxmix-qa-us-east-1-testnode_profile
instance_type = t2.small
key_name = sunfod-qa-us-east-1-general
monitoring = false
private_dns = ip-10-233-212-26.ec2.internal
private_ip = 10.233.212.26
public_dns =
public_ip = 54.164.51.233
root_block_device.# = 1
root_block_device.0.delete_on_termination = false
root_block_device.0.iops = 24
root_block_device.0.volume_size = 8
root_block_device.0.volume_type = gp2
security_groups.# = 0
source_dest_check = true
subnet_id = subnet-adfbe486
tags.# = 2
tags.Billing = FOD
tags.Name = wxmix-qa-testnode-002
tenancy = default
vpc_security_group_ids.# = 2
vpc_security_group_ids.2604585730 = sg-4a342e2c
vpc_security_group_ids.3187788851 = sg-4d342e2b
aws_internet_gateway.main:
id = igw-e43bd280
tags.# = 1
tags.Name = igw-wxmix-us-east-1
vpc_id = vpc-b89e07dc
aws_main_route_table_association.a:
id = rtbassoc-f5c23892
original_route_table_id = rtb-ada8fec9
route_table_id = rtb-e8d5838c
vpc_id = vpc-b89e07dc
aws_route_table.private:
id = rtb-81a8fee5
propagating_vgws.# = 0
route.# = 2
route.2230898328.cidr_block = 0.0.0.0/0
route.2230898328.gateway_id =
route.2230898328.instance_id = i-d2945c63
route.2230898328.network_interface_id = eni-0ca9be2c
route.2230898328.vpc_peering_connection_id =
route.2373373158.cidr_block = 10.224.32.0/19
route.2373373158.gateway_id =
route.2373373158.instance_id =
route.2373373158.network_interface_id =
route.2373373158.vpc_peering_connection_id = pcx-3e4c9257
tags.# = 1
tags.Name = rtb-wxmix-us-east-1-private
vpc_id = vpc-b89e07dc
aws_route_table.public:
id = rtb-e8d5838c
propagating_vgws.# = 0
route.# = 1
route.2373373158.cidr_block = 10.224.32.0/19
route.2373373158.gateway_id =
route.2373373158.instance_id =
route.2373373158.network_interface_id =
route.2373373158.vpc_peering_connection_id = pcx-3e4c9257
tags.# = 1
tags.Name = rtb-wxmix-us-east-1-main
vpc_id = vpc-b89e07dc
aws_route_table_association.private.0:
id = rtbassoc-becb31d9
route_table_id = rtb-81a8fee5
subnet_id = subnet-aefbe485
aws_route_table_association.private.1:
id = rtbassoc-bdcb31da
route_table_id = rtb-81a8fee5
subnet_id = subnet-07529971
aws_route_table_association.public.0:
id = rtbassoc-f7c23890
route_table_id = rtb-e8d5838c
subnet_id = subnet-adfbe486
aws_route_table_association.public.1:
id = rtbassoc-f6c23891
route_table_id = rtb-e8d5838c
subnet_id = subnet-06529970
aws_security_group.admin_sg:
id = sg-4a342e2c
description = Terraform-controlled SG admin_sg
egress.# = 1
egress.482069346.cidr_blocks.# = 1
egress.482069346.cidr_blocks.0 = 0.0.0.0/0
egress.482069346.from_port = 0
egress.482069346.protocol = -1
egress.482069346.security_groups.# = 0
egress.482069346.self = false
egress.482069346.to_port = 0
ingress.# = 2
ingress.1799340084.cidr_blocks.# = 1
ingress.1799340084.cidr_blocks.0 = 0.0.0.0/0
ingress.1799340084.from_port = -1
ingress.1799340084.protocol = icmp
ingress.1799340084.security_groups.# = 0
ingress.1799340084.self = false
ingress.1799340084.to_port = -1
ingress.3272338883.cidr_blocks.# = 12
ingress.3272338883.cidr_blocks.0 = 38.88.201.170/32
ingress.3272338883.cidr_blocks.1 = 65.202.103.0/24
ingress.3272338883.cidr_blocks.10 = 209.234.189.74/32
ingress.3272338883.cidr_blocks.11 = 99.170.166.187/32
ingress.3272338883.cidr_blocks.2 = 65.212.71.0/24
ingress.3272338883.cidr_blocks.3 = 71.13.156.240/28
ingress.3272338883.cidr_blocks.4 = 96.8.80.0/20
ingress.3272338883.cidr_blocks.5 = 97.87.220.32/27
ingress.3272338883.cidr_blocks.6 = 97.87.220.64/28
ingress.3272338883.cidr_blocks.7 = 151.237.234.130/32
ingress.3272338883.cidr_blocks.8 = 168.215.93.194/32
ingress.3272338883.cidr_blocks.9 = 185.57.95.64/27
ingress.3272338883.from_port = 22
ingress.3272338883.protocol = tcp
ingress.3272338883.security_groups.# = 0
ingress.3272338883.self = false
ingress.3272338883.to_port = 22
name = admin_sg
owner_id = 133124267079
tags.# = 0
vpc_id = vpc-b89e07dc
aws_security_group.nat:
id = sg-4b342e2d
description = Allow traffic from the VPC CIDR to the NAT instance
egress.# = 1
egress.482069346.cidr_blocks.# = 1
egress.482069346.cidr_blocks.0 = 0.0.0.0/0
egress.482069346.from_port = 0
egress.482069346.protocol = -1
egress.482069346.security_groups.# = 0
egress.482069346.self = false
egress.482069346.to_port = 0
ingress.# = 1
ingress.2810018813.cidr_blocks.# = 1
ingress.2810018813.cidr_blocks.0 = 10.233.212.0/24
ingress.2810018813.from_port = 0
ingress.2810018813.protocol = -1
ingress.2810018813.security_groups.# = 0
ingress.2810018813.self = false
ingress.2810018813.to_port = 0
name = nat
owner_id = 133124267079
tags.# = 0
vpc_id = vpc-b89e07dc
aws_security_group.wxmix:
id = sg-4d342e2b
description = Terraform-controlled SG wxmix
egress.# = 0
ingress.# = 8
ingress.1067128912.cidr_blocks.# = 2
ingress.1067128912.cidr_blocks.0 = 96.8.80.0/20
ingress.1067128912.cidr_blocks.1 = 10.0.0.0/8
ingress.1067128912.from_port = 1666
ingress.1067128912.protocol = tcp
ingress.1067128912.security_groups.# = 0
ingress.1067128912.self = false
ingress.1067128912.to_port = 1666
ingress.1223096313.cidr_blocks.# = 3
ingress.1223096313.cidr_blocks.0 = 205.156.51.233/32
ingress.1223096313.cidr_blocks.1 = 10.224.32.8/32
ingress.1223096313.cidr_blocks.2 = 199.26.254.194/32
ingress.1223096313.from_port = 20
ingress.1223096313.protocol = tcp
ingress.1223096313.security_groups.# = 0
ingress.1223096313.self = false
ingress.1223096313.to_port = 21
ingress.2034979933.cidr_blocks.# = 2
ingress.2034979933.cidr_blocks.0 = 96.8.80.0/20
ingress.2034979933.cidr_blocks.1 = 10.0.0.0/8
ingress.2034979933.from_port = 5672
ingress.2034979933.protocol = tcp
ingress.2034979933.security_groups.# = 0
ingress.2034979933.self = false
ingress.2034979933.to_port = 5672
ingress.2216620219.cidr_blocks.# = 1
ingress.2216620219.cidr_blocks.0 = 10.0.0.0/8
ingress.2216620219.from_port = 443
ingress.2216620219.protocol = tcp
ingress.2216620219.security_groups.# = 0
ingress.2216620219.self = false
ingress.2216620219.to_port = 443
ingress.2955545578.cidr_blocks.# = 2
ingress.2955545578.cidr_blocks.0 = 96.8.80.0/20
ingress.2955545578.cidr_blocks.1 = 10.0.0.0/8
ingress.2955545578.from_port = 5432
ingress.2955545578.protocol = tcp
ingress.2955545578.security_groups.# = 0
ingress.2955545578.self = false
ingress.2955545578.to_port = 5432
ingress.3211569846.cidr_blocks.# = 5
ingress.3211569846.cidr_blocks.0 = 96.8.80.0/20
ingress.3211569846.cidr_blocks.1 = 10.0.0.0/8
ingress.3211569846.cidr_blocks.2 = 52.22.139.84/32
ingress.3211569846.cidr_blocks.3 = 52.70.108.250/32
ingress.3211569846.cidr_blocks.4 = 54.164.35.174/32
ingress.3211569846.from_port = 388
ingress.3211569846.protocol = tcp
ingress.3211569846.security_groups.# = 0
ingress.3211569846.self = false
ingress.3211569846.to_port = 388
ingress.611665594.cidr_blocks.# = 1
ingress.611665594.cidr_blocks.0 = 10.233.212.0/24
ingress.611665594.from_port = 0
ingress.611665594.protocol = tcp
ingress.611665594.security_groups.# = 0
ingress.611665594.self = false
ingress.611665594.to_port = 0
ingress.93333715.cidr_blocks.# = 2
ingress.93333715.cidr_blocks.0 = 96.8.80.0/20
ingress.93333715.cidr_blocks.1 = 10.0.0.0/8
ingress.93333715.from_port = 80
ingress.93333715.protocol = tcp
ingress.93333715.security_groups.# = 0
ingress.93333715.self = false
ingress.93333715.to_port = 80
name = wxmix
owner_id = 133124267079
tags.# = 0
vpc_id = vpc-b89e07dc
aws_security_group_rule.admin_egress_all:
id = sgrule-1349328380
cidr_blocks.# = 1
cidr_blocks.0 = 0.0.0.0/0
from_port = 0
protocol = -1
security_group_id = sg-4a342e2c
self = false
to_port = 0
type = egress
aws_security_group_rule.admin_ingress_22_offices:
id = sgrule-1622961307
cidr_blocks.# = 11
cidr_blocks.0 = 38.88.201.170/32
cidr_blocks.1 = 65.202.103.0/24
cidr_blocks.10 = 209.234.189.74/32
cidr_blocks.2 = 65.212.71.0/24
cidr_blocks.3 = 71.13.156.240/28
cidr_blocks.4 = 96.8.80.0/20
cidr_blocks.5 = 97.87.220.32/27
cidr_blocks.6 = 97.87.220.64/28
cidr_blocks.7 = 151.237.234.130/32
cidr_blocks.8 = 168.215.93.194/32
cidr_blocks.9 = 185.57.95.64/27
from_port = 22
protocol = tcp
security_group_id = sg-4a342e2c
self = false
to_port = 22
type = ingress
aws_security_group_rule.admin_ingress_22_wfh_ip:
id = sgrule-2416654726
cidr_blocks.# = 1
cidr_blocks.0 = 99.170.166.187/32
from_port = 22
protocol = tcp
security_group_id = sg-4a342e2c
self = false
to_port = 22
type = ingress
aws_security_group_rule.admin_ingress_ICMP:
id = sgrule-3038985898
cidr_blocks.# = 1
cidr_blocks.0 = 0.0.0.0/0
from_port = -1
protocol = icmp
security_group_id = sg-4a342e2c
self = false
to_port = -1
type = ingress
aws_security_group_rule.nat_egress_all:
id = sgrule-929703067
cidr_blocks.# = 1
cidr_blocks.0 = 0.0.0.0/0
from_port = 0
protocol = -1
security_group_id = sg-4b342e2d
self = false
to_port = 0
type = egress
aws_security_group_rule.nat_ingress_all:
id = sgrule-897666475
cidr_blocks.# = 1
cidr_blocks.0 = 10.233.212.0/24
from_port = 0
protocol = -1
security_group_id = sg-4b342e2d
self = false
to_port = 0
type = ingress
aws_security_group_rule.wxmix_ftp:
id = sgrule-3564642630
cidr_blocks.# = 3
cidr_blocks.0 = 205.156.51.233/32
cidr_blocks.1 = 10.224.32.8/32
cidr_blocks.2 = 199.26.254.194/32
from_port = 20
protocol = tcp
security_group_id = sg-4d342e2b
self = false
to_port = 21
type = ingress
aws_security_group_rule.wxmix_http:
id = sgrule-2696598707
cidr_blocks.# = 2
cidr_blocks.0 = 96.8.80.0/20
cidr_blocks.1 = 10.0.0.0/8
from_port = 80
protocol = tcp
security_group_id = sg-4d342e2b
self = false
to_port = 80
type = ingress
aws_security_group_rule.wxmix_https:
id = sgrule-1185019192
cidr_blocks.# = 1
cidr_blocks.0 = 10.0.0.0/8
from_port = 443
protocol = tcp
security_group_id = sg-4d342e2b
self = false
to_port = 443
type = ingress
aws_security_group_rule.wxmix_ldm:
id = sgrule-3482201414
cidr_blocks.# = 5
cidr_blocks.0 = 96.8.80.0/20
cidr_blocks.1 = 10.0.0.0/8
cidr_blocks.2 = 52.22.139.84/32
cidr_blocks.3 = 52.70.108.250/32
cidr_blocks.4 = 54.164.35.174/32
from_port = 388
protocol = tcp
security_group_id = sg-4d342e2b
self = false
to_port = 388
type = ingress
aws_security_group_rule.wxmix_perforce:
id = sgrule-3492022185
cidr_blocks.# = 2
cidr_blocks.0 = 96.8.80.0/20
cidr_blocks.1 = 10.0.0.0/8
from_port = 1666
protocol = tcp
security_group_id = sg-4d342e2b
self = false
to_port = 1666
type = ingress
aws_security_group_rule.wxmix_postgres:
id = sgrule-1253085172
cidr_blocks.# = 2
cidr_blocks.0 = 96.8.80.0/20
cidr_blocks.1 = 10.0.0.0/8
from_port = 5432
protocol = tcp
security_group_id = sg-4d342e2b
self = false
to_port = 5432
type = ingress
aws_security_group_rule.wxmix_rmq:
id = sgrule-450900623
cidr_blocks.# = 2
cidr_blocks.0 = 96.8.80.0/20
cidr_blocks.1 = 10.0.0.0/8
from_port = 5672
protocol = tcp
security_group_id = sg-4d342e2b
self = false
to_port = 5672
type = ingress
aws_security_group_rule.wxmix_subnet:
id = sgrule-1167425670
cidr_blocks.# = 1
cidr_blocks.0 = 10.233.212.0/24
from_port = 0
protocol = tcp
security_group_id = sg-4d342e2b
self = false
to_port = 0
type = ingress
aws_subnet.private.0:
id = subnet-aefbe485
availability_zone = us-east-1b
cidr_block = 10.233.212.128/26
map_public_ip_on_launch = false
tags.# = 1
tags.Name = sn-wxmix-us-east-1-private-b
vpc_id = vpc-b89e07dc
aws_subnet.private.1:
id = subnet-07529971
availability_zone = us-east-1c
cidr_block = 10.233.212.192/26
map_public_ip_on_launch = false
tags.# = 1
tags.Name = sn-wxmix-us-east-1-private-c
vpc_id = vpc-b89e07dc
aws_subnet.public.0:
id = subnet-adfbe486
availability_zone = us-east-1b
cidr_block = 10.233.212.0/26
map_public_ip_on_launch = false
tags.# = 1
tags.Name = sn-wxmix-us-east-1-public-b
vpc_id = vpc-b89e07dc
aws_subnet.public.1:
id = subnet-06529970
availability_zone = us-east-1c
cidr_block = 10.233.212.64/26
map_public_ip_on_launch = false
tags.# = 1
tags.Name = sn-wxmix-us-east-1-public-c
vpc_id = vpc-b89e07dc
aws_vpc.main:
id = vpc-b89e07dc
cidr_block = 10.233.212.0/24
default_network_acl_id = acl-e906658d
default_security_group_id = sg-41342e27
dhcp_options_id = dopt-ed33c383
main_route_table_id = rtb-ada8fec9
tags.# = 1
tags.Name = vpc-wxmix-us-east-1
aws_vpc_peering_connection.legacy_sun_vpc:
id = pcx-3e4c9257
accept_status = active
auto_accept = true
peer_owner_id = 133124267079
peer_vpc_id = vpc-1033c37e
tags.# = 0
vpc_id = vpc-b89e07dc
null_resource.provision_testnode.0:
id = 4560282439367661515
null_resource.provision_testnode.1:
id = 1361558103826360151
null_resource.provision_testnode.2:
id = 7872609972906193189
module.common-ami
0 resource(s)
module.common-vpc
0 resource(s)
Outputs:
VPC id = vpc-b89e07dc
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ping wxmix-qa-testnode-000
ping: cannot resolve wxmix-qa-testnode-000: Unknown host
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ping 10.233.212.26
PING 10.233.212.26 (10.233.212.26): 56 data bytes
Request timeout for icmp_seq 0
Request timeout for icmp_seq 1
Request timeout for icmp_seq 2
Request timeout for icmp_seq 3
Request timeout for icmp_seq 4
^C
--- 10.233.212.26 ping statistics ---
6 packets transmitted, 0 packets received, 100.0% packet loss
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ netstat
Active Internet connections
Proto Recv-Q Send-Q Local Address Foreign Address (state)
tcp4 0 0 garmstrong-ml.co.55456 54.239.17.6.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.55448 54.239.25.192.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.55447 yx-in-f94.1e100..https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.55446 pr.comet.vip.bf1.http ESTABLISHED
tcp4 0 0 garmstrong-ml.co.55425 mia07s35-in-f110.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.55399 yx-in-f138.1e100.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.55397 ya-in-f189.1e100.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.55388 72.21.195.190.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.55369 72.21.194.168.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.55368 72.21.194.168.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.55367 72.21.194.168.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.55363 176.32.100.36.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.55349 72.21.214.67.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.55346 72.21.194.168.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.55123 yx-in-f113.1e100.https ESTABLISHED
tcp4 37 0 garmstrong-ml.co.54921 server-54-230-20.https CLOSE_WAIT
tcp4 0 0 garmstrong-ml.co.54746 ec2-52-2-100-236.https CLOSE_WAIT
tcp4 0 0 garmstrong-ml.co.54616 ash-ra1-1b.sjc.d.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.54594 ya-in-f189.1e100.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.54468 live.github.com.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.53972 ec2-54-208-100-7.ssh ESTABLISHED
tcp4 0 0 garmstrong-ml.co.53747 pr.comet.vip.bf1.http ESTABLISHED
tcp4 0 0 garmstrong-ml.co.53744 ya-in-f125.1e100.jabbe ESTABLISHED
tcp4 0 0 garmstrong-ml.co.53722 ya-in-f189.1e100.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.53717 live.github.com.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.53714 live.github.com.https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.53675 ec2-52-21-87-51..https ESTABLISHED
tcp4 0 0 garmstrong-ml.co.53670 17.172.232.11.5223 ESTABLISHED
tcp4 0 0 garmstrong-ml.co.53667 ya-in-f188.1e100.5228 ESTABLISHED
tcp4 0 0 localhost.6263 localhost.49424 ESTABLISHED
tcp4 0 0 localhost.49424 localhost.6263 ESTABLISHED
tcp4 0 0 garmstrong-ml.co.49250 yv-in-f95.1e100..https CLOSE_WAIT
tcp4 0 0 garmstrong-ml.co.49155 17.110.225.201.5223 ESTABLISHED
udp6 0 0 *.56960 *.*
udp4 0 0 *.56960 *.*
udp4 0 0 *.17500 *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.61814 *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.net-assistant *.*
udp46 0 0 *.net-assistant *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp6 0 0 *.49268 *.*
udp4 0 0 *.49268 *.*
udp6 0 0 *.49455 *.*
udp4 0 0 *.49455 *.*
udp4 0 0 *.* *.*
udp4 0 0 *.kerberos *.*
udp6 0 0 *.kerberos *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp46 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp6 0 0 *.mdns *.*
udp4 0 0 *.mdns *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.* *.*
udp4 0 0 *.netbios-ns *.*
udp4 0 0 *.netbios-dgm *.*
Active Multipath Internet connections
Proto/ID Flags Local Address Foreign Address (state)
icm6 0 0 *.* *.*
Active LOCAL (UNIX) domain sockets
Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr
24ac71eb86f413eb stream 0 0 0 24ac71eb86f414b3 0 0 /var/run/mDNSResponder
24ac71eb86f414b3 stream 0 0 0 24ac71eb86f413eb 0 0
24ac71eb7d612263 stream 0 0 0 24ac71eb86f41643 0 0
24ac71eb86f41643 stream 0 0 0 24ac71eb7d612263 0 0
24ac71eb86f42db3 stream 0 0 0 24ac71eb89af864b 0 0
24ac71eb89af864b stream 0 0 0 24ac71eb86f42db3 0 0
24ac71eb87bc63f3 stream 0 0 0 24ac71eb87bc68a3 0 0
24ac71eb87bc68a3 stream 0 0 0 24ac71eb87bc63f3 0 0
24ac71eb86f42f43 stream 0 0 0 24ac71eb86f41d4b 0 0
24ac71eb86f41d4b stream 0 0 0 24ac71eb86f42f43 0 0
24ac71eb86f42ceb stream 0 0 0 24ac71eb86f4300b 0 0
24ac71eb86f4300b stream 0 0 0 24ac71eb86f42ceb 0 0
24ac71eb89af6e13 stream 0 0 0 24ac71eb87bc39c3 0 0
24ac71eb87bc39c3 stream 0 0 0 24ac71eb89af6e13 0 0
24ac71eb86f430d3 stream 0 0 0 24ac71eb86f41323 0 0
24ac71eb86f41323 stream 8 0 0 24ac71eb86f430d3 0 0
24ac71eb86f42e7b stream 0 0 0 24ac71eb86f417d3 0 0
24ac71eb86f417d3 stream 0 0 0 24ac71eb86f42e7b 0 0
24ac71eb89af5b53 stream 0 0 0 24ac71eb89af6fa3 0 0 /var/run/mDNSResponder
24ac71eb89af6fa3 stream 0 0 0 24ac71eb89af5b53 0 0
24ac71eb87bc6583 stream 0 0 0 24ac71eb7d611773 0 0
24ac71eb7d611773 stream 0 0 0 24ac71eb87bc6583 0 0
24ac71eb854030d3 stream 0 0 0 24ac71eb89af5ce3 0 0 /var/folders/n5/986q7pxx30s56vy4wbbcb1l4mn50tw/T/qtlocalpeer-Amazon-4678-2952835c
24ac71eb89af5ce3 stream 0 0 0 24ac71eb854030d3 0 0
24ac71eb8b31aaf3 stream 0 0 0 24ac71eb8b31aa2b 0 0
24ac71eb8b31aa2b stream 0 0 0 24ac71eb8b31aaf3 0 0
24ac71eb87bc3c1b stream 0 0 0 24ac71eb89af819b 0 0
24ac71eb89af819b stream 0 0 0 24ac71eb87bc3c1b 0 0
24ac71eb854014b3 stream 0 0 0 24ac71eb8b31a963 0 0
24ac71eb8b31a963 stream 0 0 0 24ac71eb854014b3 0 0
24ac71eb8b31b2c3 stream 0 0 0 24ac71eb89af63eb 0 0 /var/folders/n5/986q7pxx30s56vy4wbbcb1l4mn50tw/T/qtlocalpeer-Amazon-4678-2952835c
24ac71eb89af63eb stream 0 0 0 24ac71eb8b31b2c3 0 0
24ac71eb8540157b stream 0 0 24ac71eb8eeb25f3 0 0 0 /var/folders/n5/986q7pxx30s56vy4wbbcb1l4mn50tw/T/qtlocalpeer-Amazon-3142-2952835c
24ac71eb89af5a8b stream 0 0 0 24ac71eb89af8263 0 0
24ac71eb89af8263 stream 0 0 0 24ac71eb89af5a8b 0 0
24ac71eb89af59c3 stream 0 0 0 24ac71eb89af689b 0 0
24ac71eb89af689b stream 0 0 0 24ac71eb89af59c3 0 0
24ac71eb84103453 stream 0 0 0 24ac71eb84103a93 0 0
24ac71eb84103a93 stream 0 0 0 24ac71eb84103453 0 0
24ac71eb89af7903 stream 0 0 0 24ac71eb89af751b 0 0 /var/run/mDNSResponder
24ac71eb89af751b stream 0 0 0 24ac71eb89af7903 0 0
24ac71eb89af7ceb stream 0 0 0 24ac71eb89af7a93 0 0
24ac71eb89af7a93 stream 0 0 0 24ac71eb89af7ceb 0 0
24ac71eb89af7b5b stream 0 0 0 24ac71eb89af670b 0 0
24ac71eb89af670b stream 0 0 0 24ac71eb89af7b5b 0 0
24ac71eb89af64b3 stream 0 0 0 24ac71eb89af625b 0 0
24ac71eb89af625b stream 0 0 0 24ac71eb89af64b3 0 0
24ac71eb89af6193 stream 0 0 0 24ac71eb89af75e3 0 0
24ac71eb89af75e3 stream 0 0 0 24ac71eb89af6193 0 0
24ac71eb89af76ab stream 0 0 0 24ac71eb89af6af3 0 0 /var/run/mDNSResponder
24ac71eb89af6af3 stream 0 0 0 24ac71eb89af76ab 0 0
24ac71eb89af6963 stream 0 0 0 24ac71eb89af6a2b 0 0
24ac71eb89af6a2b stream 0 0 0 24ac71eb89af6963 0 0
24ac71eb89af7773 stream 0 0 0 24ac71eb7d61232b 0 0
24ac71eb7d61232b stream 0 0 0 24ac71eb89af7773 0 0
24ac71eb87bc664b stream 0 0 0 24ac71eb87bc67db 0 0
24ac71eb87bc67db stream 0 0 0 24ac71eb87bc664b 0 0
24ac71eb87bc3b53 stream 0 0 24ac71eb8d4858c3 0 0 0 /var/folders/n5/986q7pxx30s56vy4wbbcb1l4mn50tw/T/atom-1.2.4-gary.armstrong.sock
24ac71eb87bc64bb stream 0 0 0 24ac71eb87bc3f3b 0 0
24ac71eb87bc3f3b stream 0 0 0 24ac71eb87bc64bb 0 0
24ac71eb89af832b stream 0 0 0 24ac71eb89af5c1b 0 0
24ac71eb89af5c1b stream 0 0 0 24ac71eb89af832b 0 0
24ac71eb86f437db stream 0 0 0 24ac71eb86f40dab 0 0 /private/tmp/com.apple.launchd.F0Xscbbdve/Listeners
24ac71eb86f40dab stream 0 0 0 24ac71eb86f437db 0 0
24ac71eb86f40ce3 stream 0 0 0 24ac71eb86f43713 0 0 /var/run/mDNSResponder
24ac71eb86f43713 stream 0 0 0 24ac71eb86f40ce3 0 0
24ac71eb89af657b stream 0 0 0 24ac71eb89af6643 0 0 /var/run/mDNSResponder
24ac71eb89af6643 stream 0 0 0 24ac71eb89af657b 0 0
24ac71eb86f40c1b stream 0 0 0 24ac71eb86f40b53 0 0 /var/run/mDNSResponder
24ac71eb86f40b53 stream 0 0 0 24ac71eb86f40c1b 0 0
24ac71eb8b31ad4b stream 0 0 0 24ac71eb8b31abbb 0 0 /var/run/mDNSResponder
24ac71eb8b31abbb stream 0 0 0 24ac71eb8b31ad4b 0 0
24ac71eb8b31ac83 stream 0 0 0 24ac71eb841048a3 0 0 /var/run/mDNSResponder
24ac71eb841048a3 stream 0 0 0 24ac71eb8b31ac83 0 0
24ac71eb8b31b453 stream 0 0 0 24ac71eb8b31a89b 0 0 /var/run/mDNSResponder
24ac71eb8b31a89b stream 0 0 0 24ac71eb8b31b453 0 0
24ac71eb87bc632b stream 0 0 0 24ac71eb87bc3ce3 0 0 /var/run/mDNSResponder
24ac71eb87bc3ce3 stream 0 0 0 24ac71eb87bc632b 0 0
24ac71eb89af8583 stream 0 0 0 24ac71eb89af5f3b 0 0
24ac71eb89af5f3b stream 0 0 0 24ac71eb89af8583 0 0
24ac71eb87bc40cb stream 0 0 0 24ac71eb89af6edb 0 0
24ac71eb89af6edb stream 0 0 0 24ac71eb87bc40cb 0 0
24ac71eb89af7db3 stream 0 0 0 24ac71eb89af7e7b 0 0
24ac71eb89af7e7b stream 0 0 0 24ac71eb89af7db3 0 0
24ac71eb86f40a8b stream 0 0 0 24ac71eb86f438a3 0 0
24ac71eb86f438a3 stream 0 0 0 24ac71eb86f40a8b 0 0
24ac71eb87bc52c3 stream 0 0 0 24ac71eb87bc5133 0 0
24ac71eb87bc5133 stream 0 0 0 24ac71eb87bc52c3 0 0
24ac71eb87bc51fb stream 0 0 0 24ac71eb86f409c3 0 0
24ac71eb86f409c3 stream 0 0 0 24ac71eb87bc51fb 0 0
24ac71eb89af6003 stream 0 0 0 24ac71eb87bc4193 0 0
24ac71eb87bc4193 stream 8 0 0 24ac71eb89af6003 0 0
24ac71eb89af79cb stream 0 0 0 24ac71eb89af67d3 0 0
24ac71eb89af67d3 stream 0 0 0 24ac71eb89af79cb 0 0
24ac71eb86f41fa3 stream 0 0 0 24ac71eb86f41edb 0 0
24ac71eb86f41edb stream 0 0 0 24ac71eb86f41fa3 0 0
24ac71eb87bc425b stream 0 0 0 24ac71eb87bc619b 0 0
24ac71eb87bc619b stream 8 0 0 24ac71eb87bc425b 0 0
24ac71eb87bc43eb stream 0 0 0 24ac71eb87bc600b 0 0
24ac71eb87bc600b stream 0 0 0 24ac71eb87bc43eb 0 0
24ac71eb8665aa93 stream 0 0 0 24ac71eb8665ab5b 0 0
24ac71eb8665ab5b stream 0 0 0 24ac71eb8665aa93 0 0
24ac71eb8665ac23 stream 0 0 0 24ac71eb86659643 0 0
24ac71eb86659643 stream 0 0 0 24ac71eb8665ac23 0 0
24ac71eb87bc44b3 stream 0 0 0 24ac71eb87bc457b 0 0
24ac71eb87bc457b stream 0 0 0 24ac71eb87bc44b3 0 0
24ac71eb8665a83b stream 0 0 0 24ac71eb8665a903 0 0
24ac71eb8665a903 stream 0 0 0 24ac71eb8665a83b 0 0
24ac71eb8665970b stream 0 0 0 24ac71eb8665a9cb 0 0
24ac71eb8665a9cb stream 0 0 0 24ac71eb8665970b 0 0
24ac71eb87bc5f43 stream 0 0 0 24ac71eb87bc5e7b 0 0
24ac71eb87bc5e7b stream 0 0 0 24ac71eb87bc5f43 0 0
24ac71eb87bc5db3 stream 0 0 0 24ac71eb87bc4643 0 0
24ac71eb87bc4643 stream 0 0 0 24ac71eb87bc5db3 0 0
24ac71eb87bc5ceb stream 0 0 0 24ac71eb87bc470b 0 0
24ac71eb87bc470b stream 0 0 0 24ac71eb87bc5ceb 0 0
24ac71eb87bc47d3 stream 0 0 0 24ac71eb87bc5c23 0 0
24ac71eb87bc5c23 stream 0 0 0 24ac71eb87bc47d3 0 0
24ac71eb87bc489b stream 0 0 0 24ac71eb87bc5b5b 0 0
24ac71eb87bc5b5b stream 0 0 0 24ac71eb87bc489b 0 0
24ac71eb87bc5a93 stream 0 0 0 24ac71eb87bc59cb 0 0
24ac71eb87bc59cb stream 0 0 0 24ac71eb87bc5a93 0 0
24ac71eb87bc5903 stream 0 0 0 24ac71eb87bc4963 0 0
24ac71eb87bc4963 stream 0 0 0 24ac71eb87bc5903 0 0
24ac71eb87bc4a2b stream 0 0 0 24ac71eb87bc4af3 0 0
24ac71eb87bc4af3 stream 0 0 0 24ac71eb87bc4a2b 0 0
24ac71eb87bc4bbb stream 0 0 0 24ac71eb87bc583b 0 0
24ac71eb87bc583b stream 0 0 0 24ac71eb87bc4bbb 0 0
24ac71eb87bc4c83 stream 0 0 0 24ac71eb87bc4d4b 0 0
24ac71eb87bc4d4b stream 0 0 0 24ac71eb87bc4c83 0 0
24ac71eb87bc4e13 stream 0 0 0 24ac71eb87bc5773 0 0
24ac71eb87bc5773 stream 0 0 0 24ac71eb87bc4e13 0 0
24ac71eb87bc56ab stream 0 0 0 24ac71eb87bc4edb 0 0
24ac71eb87bc4edb stream 0 0 0 24ac71eb87bc56ab 0 0
24ac71eb87bc55e3 stream 0 0 0 24ac71eb87bc551b 0 0
24ac71eb87bc551b stream 0 0 0 24ac71eb87bc55e3 0 0
24ac71eb87bc5453 stream 0 0 0 24ac71eb87bc4fa3 0 0
24ac71eb87bc4fa3 stream 0 0 0 24ac71eb87bc5453 0 0
24ac71eb87bc506b stream 0 0 0 24ac71eb87bc538b 0 0
24ac71eb87bc538b stream 0 0 0 24ac71eb87bc506b 0 0
24ac71eb86f40e73 stream 0 0 0 24ac71eb86f40f3b 0 0
24ac71eb86f40f3b stream 0 0 0 24ac71eb86f40e73 0 0
24ac71eb86f41003 stream 0 0 0 24ac71eb86f4364b 0 0
24ac71eb86f4364b stream 0 0 0 24ac71eb86f41003 0 0
24ac71eb86f43583 stream 0 0 0 24ac71eb86f434bb 0 0
24ac71eb86f434bb stream 0 0 0 24ac71eb86f43583 0 0
24ac71eb86f410cb stream 0 0 0 24ac71eb86f41193 0 0
24ac71eb86f41193 stream 0 0 0 24ac71eb86f410cb 0 0
24ac71eb86f433f3 stream 0 0 0 24ac71eb86f4332b 0 0
24ac71eb86f4332b stream 0 0 0 24ac71eb86f433f3 0 0
24ac71eb86f43263 stream 0 0 0 24ac71eb86f4319b 0 0
24ac71eb86f4319b stream 0 0 0 24ac71eb86f43263 0 0
24ac71eb86f4283b stream 0 0 0 24ac71eb86f42773 0 0
24ac71eb86f42773 stream 0 0 0 24ac71eb86f4283b 0 0
24ac71eb86f426ab stream 0 0 0 24ac71eb86f425e3 0 0
24ac71eb86f425e3 stream 0 0 0 24ac71eb86f426ab 0 0
24ac71eb86f4251b stream 0 0 0 24ac71eb86f42453 0 0
24ac71eb86f42453 stream 0 0 0 24ac71eb86f4251b 0 0
24ac71eb86f41e13 stream 0 0 0 24ac71eb86f4206b 0 0
24ac71eb86f4206b stream 0 0 0 24ac71eb86f41e13 0 0
24ac71eb86658a8b stream 0 0 0 24ac71eb86658b53 0 0
24ac71eb86658b53 stream 0 0 0 24ac71eb86658a8b 0 0
24ac71eb8665b7db stream 0 0 0 24ac71eb86658c1b 0 0
24ac71eb86658c1b stream 0 0 0 24ac71eb8665b7db 0 0
24ac71eb86658ce3 stream 0 0 0 24ac71eb86658dab 0 0
24ac71eb86658dab stream 0 0 0 24ac71eb86658ce3 0 0
24ac71eb86658e73 stream 0 0 0 24ac71eb8665b713 0 0
24ac71eb8665b713 stream 0 0 0 24ac71eb86658e73 0 0
24ac71eb8665b64b stream 0 0 0 24ac71eb866590cb 0 0
24ac71eb866590cb stream 0 0 0 24ac71eb8665b64b 0 0
24ac71eb86658f3b stream 0 0 0 24ac71eb86659003 0 0
24ac71eb86659003 stream 0 0 0 24ac71eb86658f3b 0 0
24ac71eb8665b583 stream 0 0 0 24ac71eb8665b4bb 0 0
24ac71eb8665b4bb stream 0 0 0 24ac71eb8665b583 0 0
24ac71eb86659193 stream 0 0 0 24ac71eb8665b3f3 0 0
24ac71eb8665b3f3 stream 0 0 0 24ac71eb86659193 0 0
24ac71eb8665b32b stream 0 0 0 24ac71eb8665b263 0 0
24ac71eb8665b263 stream 0 0 0 24ac71eb8665b32b 0 0
24ac71eb8665b19b stream 0 0 0 24ac71eb8665925b 0 0
24ac71eb8665925b stream 0 0 0 24ac71eb8665b19b 0 0
24ac71eb86659323 stream 0 0 0 24ac71eb8665b0d3 0 0
24ac71eb8665b0d3 stream 0 0 0 24ac71eb86659323 0 0
24ac71eb8665b00b stream 0 0 0 24ac71eb866593eb 0 0
24ac71eb866593eb stream 0 0 0 24ac71eb8665b00b 0 0
24ac71eb8665af43 stream 0 0 0 24ac71eb8665ae7b 0 0
24ac71eb8665ae7b stream 0 0 0 24ac71eb8665af43 0 0
24ac71eb866594b3 stream 0 0 0 24ac71eb8665957b 0 0
24ac71eb8665957b stream 0 0 0 24ac71eb866594b3 0 0
24ac71eb85402903 stream 0 0 0 24ac71eb854029cb 0 0
24ac71eb854029cb stream 0 0 0 24ac71eb85402903 0 0
24ac71eb85401edb stream 0 0 0 24ac71eb85402a93 0 0
24ac71eb85402a93 stream 0 0 0 24ac71eb85401edb 0 0
24ac71eb84102e13 stream 0 0 0 24ac71eb854025e3 0 0
24ac71eb854025e3 stream 0 0 0 24ac71eb84102e13 0 0
24ac71eb8665adb3 stream 0 0 0 24ac71eb8665aceb 0 0
24ac71eb8665aceb stream 0 0 0 24ac71eb8665adb3 0 0
24ac71eb8665a773 stream 0 0 0 24ac71eb8665a6ab 0 0
24ac71eb8665a6ab stream 0 0 0 24ac71eb8665a773 0 0
24ac71eb8665a5e3 stream 0 0 0 24ac71eb866597d3 0 0
24ac71eb866597d3 stream 0 0 0 24ac71eb8665a5e3 0 0
24ac71eb8665989b stream 0 0 0 24ac71eb8665a51b 0 0 /var/run/mDNSResponder
24ac71eb8665a51b stream 0 0 0 24ac71eb8665989b 0 0
24ac71eb8665a453 stream 0 0 0 24ac71eb8665a38b 0 0
24ac71eb8665a38b stream 0 0 0 24ac71eb8665a453 0 0
24ac71eb8665a2c3 stream 0 0 0 24ac71eb86659963 0 0
24ac71eb86659963 stream 0 0 0 24ac71eb8665a2c3 0 0
24ac71eb8665a1fb stream 0 0 0 24ac71eb8665a133 0 0
24ac71eb8665a133 stream 0 0 0 24ac71eb8665a1fb 0 0
24ac71eb86659a2b stream 0 0 0 24ac71eb8665a06b 0 0
24ac71eb8665a06b stream 0 0 0 24ac71eb86659a2b 0 0
24ac71eb86659fa3 stream 0 0 0 24ac71eb86659edb 0 0
24ac71eb86659edb stream 0 0 0 24ac71eb86659fa3 0 0
24ac71eb86659e13 stream 0 0 0 24ac71eb86659d4b 0 0
24ac71eb86659d4b stream 0 0 0 24ac71eb86659e13 0 0
24ac71eb86659af3 stream 0 0 0 24ac71eb86659bbb 0 0
24ac71eb86659bbb stream 0 0 0 24ac71eb86659af3 0 0
24ac71eb86659c83 stream 0 0 0 24ac71eb854009c3 0 0
24ac71eb854009c3 stream 0 0 0 24ac71eb86659c83 0 0
24ac71eb85400c1b stream 0 0 0 24ac71eb85400ce3 0 0 /var/run/mDNSResponder
24ac71eb85400ce3 stream 0 0 0 24ac71eb85400c1b 0 0
24ac71eb854038a3 stream 0 0 0 24ac71eb85400dab 0 0
24ac71eb85400dab stream 0 0 0 24ac71eb854038a3 0 0
24ac71eb85400e73 stream 0 0 0 24ac71eb854037db 0 0
24ac71eb854037db stream 0 0 0 24ac71eb85400e73 0 0
24ac71eb85403713 stream 0 0 0 24ac71eb8540364b 0 0
24ac71eb8540364b stream 0 0 0 24ac71eb85403713 0 0
24ac71eb85400f3b stream 0 0 0 24ac71eb85403583 0 0
24ac71eb85403583 stream 0 0 0 24ac71eb85400f3b 0 0
24ac71eb85401003 stream 0 0 0 24ac71eb854034bb 0 0
24ac71eb854034bb stream 0 0 0 24ac71eb85401003 0 0
24ac71eb854010cb stream 0 0 0 24ac71eb85401193 0 0
24ac71eb85401193 stream 0 0 0 24ac71eb854010cb 0 0
24ac71eb8540125b stream 0 0 0 24ac71eb854033f3 0 0
24ac71eb854033f3 stream 0 0 0 24ac71eb8540125b 0 0
24ac71eb8540332b stream 0 0 0 24ac71eb85401323 0 0
24ac71eb85401323 stream 0 0 0 24ac71eb8540332b 0 0
24ac71eb854013eb stream 0 0 0 24ac71eb85403263 0 0
24ac71eb85403263 stream 0 0 0 24ac71eb854013eb 0 0
24ac71eb854017d3 stream 0 0 0 24ac71eb8540189b 0 0
24ac71eb8540189b stream 0 0 0 24ac71eb854017d3 0 0
24ac71eb8540300b stream 0 0 0 24ac71eb85401963 0 0
24ac71eb85401963 stream 0 0 0 24ac71eb8540300b 0 0
24ac71eb85401a2b stream 0 0 0 24ac71eb85402f43 0 0
24ac71eb85402f43 stream 0 0 0 24ac71eb85401a2b 0 0
24ac71eb85401af3 stream 0 0 0 24ac71eb85401bbb 0 0
24ac71eb85401bbb stream 0 0 0 24ac71eb85401af3 0 0
24ac71eb85402e7b stream 0 0 0 24ac71eb85402db3 0 0
24ac71eb85402db3 stream 0 0 0 24ac71eb85402e7b 0 0
24ac71eb85401c83 stream 0 0 0 24ac71eb85401d4b 0 0
24ac71eb85401d4b stream 0 0 0 24ac71eb85401c83 0 0
24ac71eb85402ceb stream 0 0 0 24ac71eb85401e13 0 0
24ac71eb85401e13 stream 0 0 0 24ac71eb85402ceb 0 0
24ac71eb85402c23 stream 0 0 0 24ac71eb85402b5b 0 0
24ac71eb85402b5b stream 0 0 0 24ac71eb85402c23 0 0
24ac71eb841019c3 stream 0 0 0 24ac71eb84101b53 0 0
24ac71eb84101b53 stream 0 0 0 24ac71eb841019c3 0 0
24ac71eb854026ab stream 0 0 0 24ac71eb85402133 0 0
24ac71eb85402133 stream 0 0 0 24ac71eb854026ab 0 0
24ac71eb85402773 stream 0 0 0 24ac71eb8410432b 0 0
24ac71eb8410432b stream 0 0 0 24ac71eb85402773 0 0
24ac71eb84102af3 stream 0 0 0 24ac71eb7d610643 0 0
24ac71eb7d610643 stream 0 0 0 24ac71eb84102af3 0 0
24ac71eb841044bb stream 0 0 0 24ac71eb84102a2b 0 0
24ac71eb84102a2b stream 0 0 0 24ac71eb841044bb 0 0
24ac71eb85401fa3 stream 0 0 0 24ac71eb81a7dedb 0 0
24ac71eb81a7dedb stream 0 0 0 24ac71eb85401fa3 0 0
24ac71eb81a7dfa3 stream 0 0 0 24ac71eb841043f3 0 0
24ac71eb841043f3 stream 0 0 0 24ac71eb81a7dfa3 0 0
24ac71eb81a7cb53 stream 0 0 0 24ac71eb841020cb 0 0
24ac71eb841020cb stream 0 0 0 24ac71eb81a7cb53 0 0
24ac71eb84101dab stream 0 0 24ac71eb85b0c8c3 0 0 0 /var/folders/n5/986q7pxx30s56vy4wbbcb1l4mn50tw/T/chrome-YoDCWF/Socket
24ac71eb81a7ee7b stream 0 0 24ac71eb85b0c503 0 0 0 /var/folders/n5/986q7pxx30s56vy4wbbcb1l4mn50tw/T/.com.google.Chrome.nPx5Dw/SingletonSocket
24ac71eb84102003 stream 0 0 0 24ac71eb81a7d57b 0 0
24ac71eb81a7d57b stream 0 0 0 24ac71eb84102003 0 0
24ac71eb841039cb stream 0 0 0 24ac71eb841036ab 0 0
24ac71eb841036ab stream 0 0 0 24ac71eb841039cb 0 0
24ac71eb841027d3 stream 0 0 0 24ac71eb841023eb 0 0
24ac71eb841023eb stream 0 0 0 24ac71eb841027d3 0 0
24ac71eb8540206b stream 0 0 0 24ac71eb8540238b 0 0
24ac71eb8540238b stream 0 0 0 24ac71eb8540206b 0 0
24ac71eb841024b3 stream 0 0 0 24ac71eb84102323 0 0
24ac71eb84102323 stream 0 0 0 24ac71eb841024b3 0 0
24ac71eb84102963 stream 0 0 0 24ac71eb84103903 0 0
24ac71eb84103903 stream 0 0 0 24ac71eb84102963 0 0
24ac71eb84103773 stream 0 0 0 24ac71eb8410289b 0 0
24ac71eb8410289b stream 0 0 0 24ac71eb84103773 0 0
24ac71eb854021fb stream 0 0 0 24ac71eb8410383b 0 0
24ac71eb8410383b stream 0 0 0 24ac71eb854021fb 0 0
24ac71eb84101a8b stream 0 0 24ac71eb853905f3 0 0 0 /var/folders/n5/986q7pxx30s56vy4wbbcb1l4mn50tw/T/ics504
24ac71eb841047db stream 0 0 0 24ac71eb84104713 0 0 /var/run/mDNSResponder
24ac71eb84104713 stream 0 0 0 24ac71eb841047db 0 0
24ac71eb8410464b stream 0 0 0 24ac71eb84104583 0 0 /var/run/mDNSResponder
24ac71eb84104583 stream 0 0 0 24ac71eb8410464b 0 0
24ac71eb84103f43 stream 0 0 0 24ac71eb84101f3b 0 0 /var/run/mDNSResponder
24ac71eb84101f3b stream 0 0 0 24ac71eb84103f43 0 0
24ac71eb841040d3 stream 0 0 0 24ac71eb84103e7b 0 0 /var/run/mDNSResponder
24ac71eb84103e7b stream 0 0 0 24ac71eb841040d3 0 0
24ac71eb84101c1b stream 0 0 0 24ac71eb84104263 0 0 /var/run/mDNSResponder
24ac71eb84104263 stream 0 0 0 24ac71eb84101c1b 0 0
24ac71eb84102193 stream 0 0 0 24ac71eb8410400b 0 0 /var/run/mDNSResponder
24ac71eb8410400b stream 0 0 0 24ac71eb84102193 0 0
24ac71eb84101ce3 stream 0 0 0 24ac71eb8410419b 0 0 /var/run/mDNSResponder
24ac71eb8410419b stream 0 0 0 24ac71eb84101ce3 0 0
24ac71eb84103ceb stream 0 0 0 24ac71eb81a7e06b 0 0 /.dbfseventsd
24ac71eb81a7e133 stream 0 0 24ac71eb84786323 0 0 0 /.dbfseventsd
24ac71eb81a7e06b stream 0 0 0 24ac71eb84103ceb 0 0
24ac71eb8410257b stream 0 0 0 24ac71eb84102643 0 0 /var/run/mDNSResponder
24ac71eb84102643 stream 0 0 0 24ac71eb8410257b 0 0
24ac71eb8410270b stream 0 0 0 0 0 0
24ac71eb841035e3 stream 0 0 0 24ac71eb8410351b 0 0 /Users/gary.armstrong/Library/Group Containers/google_drive/tmp9H454p
24ac71eb8410351b stream 0 0 0 24ac71eb841035e3 0 0
24ac71eb84102bbb stream 0 0 0 24ac71eb8410338b 0 0 /var/run/mDNSResponder
24ac71eb8410338b stream 0 0 0 24ac71eb84102bbb 0 0
24ac71eb841032c3 stream 0 0 24ac71eb8459dc93 0 0 0 /Users/gary.armstrong/Library/Group Containers/google_drive/tmp9H454p
24ac71eb84102fa3 stream 0 0 0 24ac71eb84102edb 0 0 /var/run/mDNSResponder
24ac71eb84102edb stream 0 0 0 24ac71eb84102fa3 0 0
24ac71eb84102d4b stream 0 0 24ac71eb843cdba3 0 0 0 /var/folders/n5/986q7pxx30s56vy4wbbcb1l4mn50tw/T/qtlocalpeer-Amazon-4678-2952835c
24ac71eb84102c83 stream 0 0 24ac71eb843ce233 0 0 0 /var/folders/n5/986q7pxx30s56vy4wbbcb1l4mn50tw/T/qtlocalpeer-Amazon-bdab-2952835c
24ac71eb8410306b stream 0 0 0 24ac71eb81a7f8a3 0 0
24ac71eb81a7f8a3 stream 0 0 0 24ac71eb8410306b 0 0
24ac71eb81a7f64b stream 0 0 0 24ac71eb81a7f583 0 0 /var/run/mDNSResponder
24ac71eb81a7f583 stream 0 0 0 24ac71eb81a7f64b 0 0
24ac71eb81a7f3f3 stream 0 0 0 24ac71eb81a7f4bb 0 0 /var/run/mDNSResponder
24ac71eb81a7f4bb stream 0 0 0 24ac71eb81a7f3f3 0 0
24ac71eb81a7cf3b stream 0 0 24ac71eb8354f503 0 0 0 /var/folders/n5/986q7pxx30s56vy4wbbcb1l4mn50tw/T/icdd693273436
24ac71eb81a7f19b stream 0 0 0 24ac71eb81a7f00b 0 0 /var/run/usbmuxd
24ac71eb81a7f00b stream 0 0 0 24ac71eb81a7f19b 0 0
24ac71eb81a7ec23 stream 0 0 0 24ac71eb81a7edb3 0 0 /var/run/mDNSResponder
24ac71eb81a7edb3 stream 0 0 0 24ac71eb81a7ec23 0 0
24ac71eb81a7d89b stream 0 0 0 24ac71eb81a7e9cb 0 0
24ac71eb81a7e9cb stream 0 0 0 24ac71eb81a7d89b 0 0
24ac71eb81a7e903 stream 0 0 0 24ac71eb81a7e83b 0 0
24ac71eb81a7e83b stream 0 0 0 24ac71eb81a7e903 0 0
24ac71eb81a7d963 stream 0 0 0 24ac71eb81a7da2b 0 0
24ac71eb81a7da2b stream 0 0 0 24ac71eb81a7d963 0 0
24ac71eb81a7e6ab stream 0 0 0 24ac71eb81a7e773 0 0
24ac71eb81a7e773 stream 0 0 0 24ac71eb81a7e6ab 0 0
24ac71eb81a7e51b stream 0 0 0 24ac71eb81a7e453 0 0 /var/run/mDNSResponder
24ac71eb81a7e453 stream 0 0 0 24ac71eb81a7e51b 0 0
24ac71eb81a7dc83 stream 0 0 0 24ac71eb81a7dd4b 0 0 /var/run/mDNSResponder
24ac71eb81a7dd4b stream 0 0 0 24ac71eb81a7dc83 0 0
24ac71eb81a7de13 stream 0 0 0 24ac71eb81a7e38b 0 0 /var/run/mDNSResponder
24ac71eb81a7e38b stream 0 0 0 24ac71eb81a7de13 0 0
24ac71eb81a7e2c3 stream 0 0 0 24ac71eb81a7e1fb 0 0 /var/run/mDNSResponder
24ac71eb81a7e1fb stream 0 0 0 24ac71eb81a7e2c3 0 0
24ac71eb7d611f43 stream 0 0 24ac71eb81bdb233 0 0 0 /private/tmp/com.apple.launchd.F0Xscbbdve/Listeners
24ac71eb7d611e7b stream 0 0 24ac71eb81bdb143 0 0 0 /private/tmp/com.apple.launchd.iJ97lLdnkm/Render
24ac71eb7d611db3 stream 0 0 24ac71eb80c33d83 0 0 0 /var/tmp/filesystemui.socket
24ac71eb7d6128a3 stream 0 0 0 24ac71eb7d60f9c3 0 0 /var/run/mDNSResponder
24ac71eb7d60f9c3 stream 0 0 0 24ac71eb7d6128a3 0 0
24ac71eb7d612583 stream 0 0 0 24ac71eb7d60fce3 0 0 /var/run/mDNSResponder
24ac71eb7d60fce3 stream 0 0 0 24ac71eb7d612583 0 0
24ac71eb7d60fdab stream 0 0 0 24ac71eb7d60fe73 0 0 /var/run/mDNSResponder
24ac71eb7d60fe73 stream 0 0 0 24ac71eb7d60fdab 0 0
24ac71eb7d610003 stream 0 0 0 24ac71eb7d6100cb 0 0 /var/run/mDNSResponder
24ac71eb7d6100cb stream 0 0 0 24ac71eb7d610003 0 0
24ac71eb7d610193 stream 0 0 0 24ac71eb7d61025b 0 0 /var/run/mDNSResponder
24ac71eb7d61025b stream 0 0 0 24ac71eb7d610193 0 0
24ac71eb7d610323 stream 0 0 0 24ac71eb7d611c23 0 0 /var/run/mDNSResponder
24ac71eb7d611c23 stream 0 0 0 24ac71eb7d610323 0 0
24ac71eb7d611a93 stream 0 0 0 24ac71eb7d611b5b 0 0 /var/run/mDNSResponder
24ac71eb7d611b5b stream 0 0 0 24ac71eb7d611a93 0 0
24ac71eb7d6104b3 stream 0 0 0 24ac71eb7d61057b 0 0
24ac71eb7d61057b stream 0 0 0 24ac71eb7d6104b3 0 0
24ac71eb7d6115e3 stream 0 0 24ac71eb7e3a3ba3 0 0 0 /var/run/pppconfd
24ac71eb7d611453 stream 0 0 24ac71eb7d93d053 0 0 0 /private/var/run/cupsd
24ac71eb7d61138b stream 0 0 24ac71eb7d93d143 0 0 0 /var/run/usbmuxd
24ac71eb7d6112c3 stream 0 0 24ac71eb7d93d503 0 0 0 /var/run/systemkeychaincheck.socket
24ac71eb7d61089b stream 0 0 24ac71eb7d906503 0 0 0 /var/run/portmap.socket
24ac71eb7d6111fb stream 0 0 24ac71eb7d905f63 0 0 0 /var/run/vpncontrol.sock
24ac71eb7d611133 stream 0 0 24ac71eb7d8f35f3 0 0 0 /var/rpc/ncacn_np/wkssvc
24ac71eb7d61106b stream 0 0 24ac71eb7d8f3503 0 0 0 /var/rpc/ncalrpc/wkssvc
24ac71eb7d610fa3 stream 0 0 24ac71eb7d8f3413 0 0 0 /var/rpc/ncacn_np/srvsvc
24ac71eb7d610963 stream 0 0 24ac71eb7d8f3323 0 0 0 /var/rpc/ncalrpc/srvsvc
24ac71eb7d610edb stream 0 0 24ac71eb7d8f2c93 0 0 0 /var/rpc/ncalrpc/NETLOGON
24ac71eb7d610a2b stream 0 0 24ac71eb7d8f3143 0 0 0 /var/rpc/ncacn_np/mdssvc
24ac71eb7d610e13 stream 0 0 24ac71eb7d8f2e73 0 0 0 /var/rpc/ncacn_np/lsarpc
24ac71eb7d610d4b stream 0 0 24ac71eb7d8e39c3 0 0 0 /var/rpc/ncalrpc/lsarpc
24ac71eb7d610af3 stream 0 0 24ac71eb7d8e45f3 0 0 0 /var/run/mDNSResponder
24ac71eb85401643 dgram 0 0 0 24ac71eb7d610bbb 0 24ac71eb89af72c3
24ac71eb89af83f3 dgram 0 0 0 24ac71eb8540319b 24ac71eb8540319b 0
24ac71eb8540319b dgram 0 0 0 24ac71eb89af83f3 24ac71eb89af83f3 0
24ac71eb89af84bb dgram 0 0 0 24ac71eb89af706b 24ac71eb89af706b 0
24ac71eb89af706b dgram 0 0 0 24ac71eb89af84bb 24ac71eb89af84bb 0
24ac71eb89af72c3 dgram 0 0 0 24ac71eb7d610bbb 0 24ac71eb89af8713
24ac71eb89af783b dgram 0 0 0 24ac71eb89af7453 24ac71eb89af7453 0
24ac71eb89af7453 dgram 0 0 0 24ac71eb89af783b 24ac71eb89af783b 0
24ac71eb89af8713 dgram 0 0 0 24ac71eb7d610bbb 0 24ac71eb81a7d0cb
24ac71eb89af6c83 dgram 0 0 0 24ac71eb8b31b133 24ac71eb8b31b133 0
24ac71eb8b31b133 dgram 0 0 0 24ac71eb89af6c83 24ac71eb89af6c83 0
24ac71eb89af6bbb dgram 0 0 0 24ac71eb89af71fb 24ac71eb89af71fb 0
24ac71eb89af71fb dgram 0 0 0 24ac71eb89af6bbb 24ac71eb89af6bbb 0
24ac71eb89af800b dgram 0 0 0 24ac71eb866589c3 24ac71eb866589c3 0
24ac71eb866589c3 dgram 0 0 0 24ac71eb89af800b 24ac71eb89af800b 0
24ac71eb85400a8b dgram 0 0 0 24ac71eb85400b53 24ac71eb85400b53 0
24ac71eb85400b53 dgram 0 0 0 24ac71eb85400a8b 24ac71eb85400a8b 0
24ac71eb81a7d25b dgram 0 0 0 24ac71eb81a7d323 24ac71eb81a7d323 0
24ac71eb81a7d323 dgram 0 0 0 24ac71eb81a7d25b 24ac71eb81a7d25b 0
24ac71eb854022c3 dgram 0 0 0 24ac71eb8540283b 24ac71eb8540283b 0
24ac71eb8540283b dgram 0 0 0 24ac71eb854022c3 24ac71eb854022c3 0
24ac71eb84103b5b dgram 0 0 0 24ac71eb8410225b 24ac71eb8410225b 0
24ac71eb8410225b dgram 0 0 0 24ac71eb84103b5b 24ac71eb84103b5b 0
24ac71eb81a7ca8b dgram 0 0 0 24ac71eb81a7c9c3 24ac71eb81a7c9c3 0
24ac71eb81a7c9c3 dgram 0 0 0 24ac71eb81a7ca8b 24ac71eb81a7ca8b 0
24ac71eb81a7cdab dgram 0 0 0 24ac71eb81a7f7db 24ac71eb81a7f7db 0
24ac71eb81a7f7db dgram 0 0 0 24ac71eb81a7cdab 24ac71eb81a7cdab 0
24ac71eb81a7cc1b dgram 0 0 0 24ac71eb81a7cce3 24ac71eb81a7cce3 0
24ac71eb81a7cce3 dgram 0 0 0 24ac71eb81a7cc1b 24ac71eb81a7cc1b 0
24ac71eb81a7ce73 dgram 0 0 0 24ac71eb81a7f713 24ac71eb81a7f713 0
24ac71eb81a7f713 dgram 0 0 0 24ac71eb81a7ce73 24ac71eb81a7ce73 0
24ac71eb81a7f32b dgram 0 0 0 24ac71eb81a7f263 24ac71eb81a7f263 0
24ac71eb81a7f263 dgram 0 0 0 24ac71eb81a7f32b 24ac71eb81a7f32b 0
24ac71eb81a7d0cb dgram 0 0 0 24ac71eb7d610bbb 0 24ac71eb81a7e5e3
24ac71eb81a7d193 dgram 0 0 0 24ac71eb81a7d3eb 24ac71eb81a7d3eb 0
24ac71eb81a7d3eb dgram 0 0 0 24ac71eb81a7d193 24ac71eb81a7d193 0
24ac71eb81a7ef43 dgram 0 0 0 24ac71eb81a7d4b3 24ac71eb81a7d4b3 0
24ac71eb81a7d4b3 dgram 0 0 0 24ac71eb81a7ef43 24ac71eb81a7ef43 0
24ac71eb81a7d70b dgram 0 0 0 24ac71eb81a7d643 24ac71eb81a7d643 0
24ac71eb81a7d643 dgram 0 0 0 24ac71eb81a7d70b 24ac71eb81a7d70b 0
24ac71eb81a7eceb dgram 0 0 0 24ac71eb81a7d7d3 24ac71eb81a7d7d3 0
24ac71eb81a7d7d3 dgram 0 0 0 24ac71eb81a7eceb 24ac71eb81a7eceb 0
24ac71eb81a7eb5b dgram 0 0 0 24ac71eb81a7ea93 24ac71eb81a7ea93 0
24ac71eb81a7ea93 dgram 0 0 0 24ac71eb81a7eb5b 24ac71eb81a7eb5b 0
24ac71eb81a7daf3 dgram 0 0 0 24ac71eb81a7dbbb 24ac71eb81a7dbbb 0
24ac71eb81a7dbbb dgram 0 0 0 24ac71eb81a7daf3 24ac71eb81a7daf3 0
24ac71eb81a7e5e3 dgram 0 0 0 24ac71eb7d610bbb 0 24ac71eb7d61200b
24ac71eb7d60fa8b dgram 0 0 0 24ac71eb7d6127db 24ac71eb7d6127db 0
24ac71eb7d6127db dgram 0 0 0 24ac71eb7d60fa8b 24ac71eb7d60fa8b 0
24ac71eb7d61200b dgram 0 0 0 24ac71eb7d610bbb 0 24ac71eb7d60fb53
24ac71eb7d61264b dgram 0 0 0 24ac71eb7d612713 24ac71eb7d612713 0
24ac71eb7d612713 dgram 0 0 0 24ac71eb7d61264b 24ac71eb7d61264b 0
24ac71eb7d60fc1b dgram 0 0 0 24ac71eb7d6120d3 24ac71eb7d6120d3 0
24ac71eb7d6120d3 dgram 0 0 0 24ac71eb7d60fc1b 24ac71eb7d60fc1b 0
24ac71eb7d60fb53 dgram 0 0 0 24ac71eb7d610bbb 0 24ac71eb7d6123f3
24ac71eb7d6123f3 dgram 0 0 0 24ac71eb7d610bbb 0 24ac71eb7d610c83
24ac71eb7d61219b dgram 0 0 0 24ac71eb7d6124bb 24ac71eb7d6124bb 0
24ac71eb7d6124bb dgram 0 0 0 24ac71eb7d61219b 24ac71eb7d61219b 0
24ac71eb7d611ceb dgram 0 0 0 24ac71eb7d60ff3b 24ac71eb7d60ff3b 0
24ac71eb7d60ff3b dgram 0 0 0 24ac71eb7d611ceb 24ac71eb7d611ceb 0
24ac71eb7d6103eb dgram 0 0 0 24ac71eb7d6119cb 24ac71eb7d6119cb 0
24ac71eb7d6119cb dgram 0 0 0 24ac71eb7d6103eb 24ac71eb7d6103eb 0
24ac71eb7d611903 dgram 0 0 0 24ac71eb7d61183b 24ac71eb7d61183b 0
24ac71eb7d61183b dgram 0 0 0 24ac71eb7d611903 24ac71eb7d611903 0
24ac71eb7d61070b dgram 0 0 0 24ac71eb7d6116ab 24ac71eb7d6116ab 0
24ac71eb7d6116ab dgram 0 0 0 24ac71eb7d61070b 24ac71eb7d61070b 0
24ac71eb7d6107d3 dgram 0 0 0 24ac71eb7d61151b 24ac71eb7d61151b 0
24ac71eb7d61151b dgram 0 0 0 24ac71eb7d6107d3 24ac71eb7d6107d3 0
24ac71eb7d610c83 dgram 0 0 0 24ac71eb7d610bbb 0 0
24ac71eb7d610bbb dgram 0 0 24ac71eb7d609143 0 24ac71eb85401643 0 /private//var/run/syslog
Registered kernel control modules
id flags pcbcount rcvbuf sndbuf name
1 9 0 131072 8192 com.apple.flow-divert
2 1 0 16384 2048 com.apple.nke.sockwall
3 9 0 524288 524288 com.apple.content-filter
4 9 0 8192 2048 com.apple.packet-mangler
5 1 3 65536 65536 com.apple.net.necp_control
6 1 1 65536 65536 com.apple.net.netagent
7 9 0 524288 524288 com.apple.net.utun_control
8 1 0 65536 65536 com.apple.net.ipsec_control
9 0 21 8192 2048 com.apple.netsrc
a 18 5 8192 2048 com.apple.network.statistics
b 5 0 8192 2048 com.apple.network.tcp_ccdebug
c 1 1 8192 2048 com.apple.network.advisory
Active kernel event sockets
Proto Recv-Q Send-Q vendor class subcla
kevt 0 0 1 1 2
kevt 0 0 1 6 1
kevt 0 0 1 6 1
kevt 0 0 1 6 1
kevt 0 0 1 1 2
kevt 0 0 1 1 7
kevt 0 0 1 1 1
kevt 0 0 1 6 1
kevt 0 0 1 6 1
kevt 0 0 1 6 1
kevt 0 0 1 6 1
kevt 0 0 1 6 1
kevt 0 0 1 6 1
kevt 0 0 1 6 1
kevt 0 0 1 1 2
kevt 0 0 1 1 9
kevt 0 0 1 1 8
kevt 0 0 1 1 2
kevt 0 0 1 6 1
kevt 0 0 1 1 0
Active kernel control sockets
Proto Recv-Q Send-Q unit id name
kctl 0 0 1 5 com.apple.net.necp_control
kctl 0 0 2 5 com.apple.net.necp_control
kctl 0 0 3 5 com.apple.net.necp_control
kctl 0 0 1 6 com.apple.net.netagent
kctl 0 0 1 9 com.apple.netsrc
kctl 0 0 2 9 com.apple.netsrc
kctl 0 0 3 9 com.apple.netsrc
kctl 0 0 4 9 com.apple.netsrc
kctl 0 0 5 9 com.apple.netsrc
kctl 0 0 6 9 com.apple.netsrc
kctl 0 0 7 9 com.apple.netsrc
kctl 0 0 8 9 com.apple.netsrc
kctl 0 0 9 9 com.apple.netsrc
kctl 0 0 10 9 com.apple.netsrc
kctl 0 0 11 9 com.apple.netsrc
kctl 0 0 12 9 com.apple.netsrc
kctl 0 0 13 9 com.apple.netsrc
kctl 0 0 14 9 com.apple.netsrc
kctl 0 0 15 9 com.apple.netsrc
kctl 0 0 16 9 com.apple.netsrc
kctl 0 0 17 9 com.apple.netsrc
kctl 0 0 18 9 com.apple.netsrc
kctl 0 0 19 9 com.apple.netsrc
kctl 0 0 21 9 com.apple.netsrc
kctl 0 0 22 9 com.apple.netsrc
kctl 0 0 1 10 com.apple.network.statistics
kctl 0 0 2 10 com.apple.network.statistics
kctl 0 0 3 10 com.apple.network.statistics
kctl 0 0 4 10 com.apple.network.statistics
kctl 0 0 5 10 com.apple.network.statistics
kctl 0 0 1 12 com.apple.network.advisory
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ netstat -i
Name Mtu Network Address Ipkts Ierrs Opkts Oerrs Coll
lo0 16384 <Link#1> 6505 0 6505 0 0
lo0 16384 localhost ::1 6505 - 6505 - -
lo0 16384 127 localhost 6505 - 6505 - -
lo0 16384 fe80::1%lo0 fe80:1::1 6505 - 6505 - -
gif0* 1280 <Link#2> 0 0 0 0 0
stf0* 1280 <Link#3> 0 0 0 0 0
en0 1500 <Link#4> ac:bc:32:8a:7a:b5 394890 0 7012 0 0
en0 1500 garmstrong- fe80:4::aebc:32ff 394890 - 7012 - -
en0 1500 10.50.104/21 10.50.105.15 394890 - 7012 - -
en1 1500 <Link#5> 6a:00:00:e9:23:80 0 0 0 0 0
en2 1500 <Link#6> 6a:00:00:e9:23:81 0 0 0 0 0
p2p0 2304 <Link#7> 0e:bc:32:8a:7a:b5 0 0 0 0 0
awdl0 1484 <Link#8> c2:23:14:4f:d0:65 0 0 46 0 0
awdl0 1484 garmstrong- fe80:8::c023:14ff 0 - 46 - -
en3 1500 <Link#9> 98:5a:eb:de:fc:e1 441299 0 294129 0 0
en3 1500 garmstrong- fe80:9::9a5a:ebff 441299 - 294129 - -
en3 1500 10.200.20/22 garmstrong-ml.c 441299 - 294129 - -
bridg 1500 <Link#10> ae:bc:32:a8:12:00 0 0 1 0 0
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ping 54.164.51.233
PING 54.164.51.233 (54.164.51.233): 56 data bytes
64 bytes from 54.164.51.233: icmp_seq=0 ttl=41 time=23.440 ms
64 bytes from 54.164.51.233: icmp_seq=1 ttl=41 time=20.212 ms
64 bytes from 54.164.51.233: icmp_seq=2 ttl=41 time=97.937 ms
64 bytes from 54.164.51.233: icmp_seq=3 ttl=41 time=19.951 ms
64 bytes from 54.164.51.233: icmp_seq=4 ttl=41 time=19.971 ms
^C
--- 54.164.51.233 ping statistics ---
5 packets transmitted, 5 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 19.951/36.302/97.937/30.846 ms
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ nslookup 54.164.51.233
Server: 10.12.25.200
Address: 10.12.25.200#53
Non-authoritative answer:
233.51.164.54.in-addr.arpa name = ec2-54-164-51-233.compute-1.amazonaws.com.
Authoritative answers can be found from:
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: ../config-common/iam.tf
modified: ../config-common/instances.tf
modified: ../config-common/security_groups.tf
modified: ../config-common/variables.tf
modified: terraform.tfstate
modified: terraform.tfstate.backup
modified: terraform.tfvars
no changes added to commit (use "git add" and/or "git commit -a")
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git add ..
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: ../config-common/iam.tf
modified: ../config-common/instances.tf
modified: ../config-common/security_groups.tf
modified: ../config-common/variables.tf
modified: terraform.tfstate
modified: terraform.tfstate.backup
modified: terraform.tfvars
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git commit -m "SG rules fixed"
[master e53535d] SG rules fixed
7 files changed, 1134 insertions(+), 411 deletions(-)
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git status
On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
nothing to commit, working directory clean
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git push
Counting objects: 11, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (11/11), done.
Writing objects: 100% (11/11), 4.50 KiB | 0 bytes/s, done.
Total 11 (delta 10), reused 0 (delta 0)
To git@github.com:TheWeatherCompany/wcs-env-wxmix.git
60f8798..e53535d master -> master
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ cd ..
garmstrong-ml:wcs-env-wxmix gary.armstrong$ cd ..
garmstrong-ml:git-repos gary.armstrong$ ls -la
total 16
drwxr-xr-x 12 gary.armstrong TWC_NETOPS\Domain Users 408 Dec 4 12:15 .
drwxr-xr-x+ 49 gary.armstrong TWC_NETOPS\Domain Users 1666 Dec 14 13:21 ..
-rw-r--r--@ 1 gary.armstrong TWC_NETOPS\Domain Users 6148 Dec 7 08:14 .DS_Store
drwxr-xr-x 28 gary.armstrong TWC_NETOPS\Domain Users 952 Nov 16 09:06 aws
drwxr-xr-x 17 gary.armstrong TWC_NETOPS\Domain Users 578 Oct 26 15:44 chef-zero
drwxr-xr-x 5 gary.armstrong TWC_NETOPS\Domain Users 170 Nov 11 10:43 gla-terraform
drwxr-xr-x 9 gary.armstrong TWC_NETOPS\Domain Users 306 Oct 12 14:24 vibrant-ink
drwxr-xr-x 10 gary.armstrong TWC_NETOPS\Domain Users 340 Dec 10 14:00 wcs-aws-inv
drwxr-xr-x 10 gary.armstrong TWC_NETOPS\Domain Users 340 Dec 7 14:38 wcs-env-obsqc
drwxr-xr-x 8 gary.armstrong TWC_NETOPS\Domain Users 272 Dec 3 15:39 wcs-env-wxmix
drwxr-xr-x 7 gary.armstrong TWC_NETOPS\Domain Users 238 Nov 17 16:06 wcs-fod-saltConfig
drwxr-xr-x 7 gary.armstrong TWC_NETOPS\Domain Users 238 Nov 17 15:12 wcs-truvu-max-monitoring
garmstrong-ml:git-repos gary.armstrong$ git clone https://github.com/TheWeatherCompany/sun-env-tf.git sun-env-tf
Cloning into 'sun-env-tf'...
Username for 'https://github.com': Gary-Armstrong
Password for 'https://Gary-Armstrong@github.com':
remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/TheWeatherCompany/sun-env-tf.git/'
garmstrong-ml:git-repos gary.armstrong$ git clone https://github.com/TheWeatherCompany/sun-env-tf.git sun-env-tf
garmstrong-ml:git-repos gary.armstrong$ got clone git@github.com:TheWeatherCompany/sun-env-tf.git sun-env-tf
-bash: got: command not found
garmstrong-ml:git-repos gary.armstrong$ git clone git@github.com:TheWeatherCompany/sun-env-tf.git sun-env-tf
Cloning into 'sun-env-tf'...
Warning: Permanently added the RSA host key for IP address '192.30.252.129' to the list of known hosts.
remote: Counting objects: 8177, done.
remote: Compressing objects: 100% (111/111), done.
remote: Total 8177 (delta 981), reused 911 (delta 911), pack-reused 7155
Receiving objects: 100% (8177/8177), 2.13 MiB | 974.00 KiB/s, done.
Resolving deltas: 100% (5728/5728), done.
Checking connectivity... done.
garmstrong-ml:git-repos gary.armstrong$ ls -la
total 16
drwxr-xr-x 13 gary.armstrong TWC_NETOPS\Domain Users 442 Dec 14 15:36 .
drwxr-xr-x+ 49 gary.armstrong TWC_NETOPS\Domain Users 1666 Dec 14 13:21 ..
-rw-r--r--@ 1 gary.armstrong TWC_NETOPS\Domain Users 6148 Dec 7 08:14 .DS_Store
drwxr-xr-x 28 gary.armstrong TWC_NETOPS\Domain Users 952 Nov 16 09:06 aws
drwxr-xr-x 17 gary.armstrong TWC_NETOPS\Domain Users 578 Oct 26 15:44 chef-zero
drwxr-xr-x 5 gary.armstrong TWC_NETOPS\Domain Users 170 Nov 11 10:43 gla-terraform
drwxr-xr-x 7 gary.armstrong TWC_NETOPS\Domain Users 238 Dec 14 15:37 sun-env-tf
drwxr-xr-x 9 gary.armstrong TWC_NETOPS\Domain Users 306 Oct 12 14:24 vibrant-ink
drwxr-xr-x 10 gary.armstrong TWC_NETOPS\Domain Users 340 Dec 10 14:00 wcs-aws-inv
drwxr-xr-x 10 gary.armstrong TWC_NETOPS\Domain Users 340 Dec 7 14:38 wcs-env-obsqc
drwxr-xr-x 8 gary.armstrong TWC_NETOPS\Domain Users 272 Dec 3 15:39 wcs-env-wxmix
drwxr-xr-x 7 gary.armstrong TWC_NETOPS\Domain Users 238 Nov 17 16:06 wcs-fod-saltConfig
drwxr-xr-x 7 gary.armstrong TWC_NETOPS\Domain Users 238 Nov 17 15:12 wcs-truvu-max-monitoring
garmstrong-ml:git-repos gary.armstrong$ cd wcs-env-wxmix/
garmstrong-ml:wcs-env-wxmix gary.armstrong$ ls -la
total 16
drwxr-xr-x 8 gary.armstrong TWC_NETOPS\Domain Users 272 Dec 3 15:39 .
drwxr-xr-x 13 gary.armstrong TWC_NETOPS\Domain Users 442 Dec 14 15:36 ..
drwxr-xr-x 16 gary.armstrong TWC_NETOPS\Domain Users 544 Dec 14 15:32 .git
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 79 Dec 1 14:59 .gitignore
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 50 Nov 20 16:17 README.md
drwxr-xr-x 16 gary.armstrong TWC_NETOPS\Domain Users 544 Dec 10 16:32 config-common
drwxr-xr-x 22 gary.armstrong TWC_NETOPS\Domain Users 748 Dec 3 14:52 config-dev-aws-us-east-1
drwxr-xr-x 22 gary.armstrong TWC_NETOPS\Domain Users 748 Dec 8 09:12 config-qa-aws-us-east-1
garmstrong-ml:wcs-env-wxmix gary.armstrong$ cd config-qa-aws-us-east-1/
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ cd ../config-common/
garmstrong-ml:config-common gary.armstrong$ ls -la
total 72
drwxr-xr-x 16 gary.armstrong TWC_NETOPS\Domain Users 544 Dec 10 16:32 .
drwxr-xr-x 8 gary.armstrong TWC_NETOPS\Domain Users 272 Dec 3 15:39 ..
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 0 Nov 20 16:00 autoscaling_groups.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 0 Nov 20 16:00 dns.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 0 Nov 20 16:00 elbs.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 277 Nov 20 16:00 external_modules.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 1374 Dec 14 13:51 iam.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 2247 Dec 14 14:43 instances.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 118 Dec 3 09:19 keypairs.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 0 Nov 20 16:00 launch_configs.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 142 Nov 20 16:00 main.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 0 Nov 20 16:00 s3_buckets.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 4136 Dec 14 14:54 security_groups.tf
drwxr-xr-x 2 gary.armstrong TWC_NETOPS\Domain Users 68 Dec 3 09:52 templates
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 1152 Dec 14 13:42 variables.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 2942 Dec 11 11:07 vpc.tf
garmstrong-ml:config-common gary.armstrong$ pwd
/Users/gary.armstrong/git-repos/wcs-env-wxmix/config-common
garmstrong-ml:config-common gary.armstrong$ cd ../config-qa-aws-us-east-1/
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ls
autoscaling_groups.tf external_modules.tf launch_configs.tf security_groups.tf terraform.tfvars
dns.tf iam.tf main.tf templates variables.tf
elbs.tf instances.tf s3_buckets.tf terraform.tfstate vpc.tf
env.properties keypairs.tf secrets_override.tf terraform.tfstate.backup
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ln -s
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ls-la
-bash: ls-la: command not found
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ls -la
total 352
drwxr-xr-x 22 gary.armstrong TWC_NETOPS\Domain Users 748 Dec 8 09:12 .
drwxr-xr-x 8 gary.armstrong TWC_NETOPS\Domain Users 272 Dec 3 15:39 ..
drwxr-xr-x 3 gary.armstrong TWC_NETOPS\Domain Users 102 Nov 20 16:24 .terraform
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 38 Nov 20 16:17 autoscaling_groups.tf -> ../config-common/autoscaling_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 dns.tf -> ../config-common/dns.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 elbs.tf -> ../config-common/elbs.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 166 Nov 20 16:17 env.properties
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 36 Nov 20 16:17 external_modules.tf -> ../config-common/external_modules.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 iam.tf -> ../config-common/iam.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 instances.tf -> ../config-common/instances.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 28 Nov 20 16:17 keypairs.tf -> ../config-common/keypairs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 34 Nov 20 16:17 launch_configs.tf -> ../config-common/launch_configs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 main.tf -> ../config-common/main.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 30 Nov 20 16:17 s3_buckets.tf -> ../config-common/s3_buckets.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 192 Nov 24 11:00 secrets_override.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 35 Nov 20 16:17 security_groups.tf -> ../config-common/security_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 26 Nov 20 16:17 templates -> ../config-common/templates
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 54247 Dec 14 15:15 terraform.tfstate
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 51186 Dec 14 15:14 terraform.tfstate.backup
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 1556 Dec 14 14:47 terraform.tfvars
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 variables.tf -> ../config-common/variables.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 vpc.tf -> ../config-common/vpc.tf
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ln -s ../config-common/bastion.tf bastion.tf
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ls -la
total 360
drwxr-xr-x 23 gary.armstrong TWC_NETOPS\Domain Users 782 Dec 14 15:39 .
drwxr-xr-x 8 gary.armstrong TWC_NETOPS\Domain Users 272 Dec 3 15:39 ..
drwxr-xr-x 3 gary.armstrong TWC_NETOPS\Domain Users 102 Nov 20 16:24 .terraform
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 38 Nov 20 16:17 autoscaling_groups.tf -> ../config-common/autoscaling_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 27 Dec 14 15:39 bastion.tf -> ../config-common/bastion.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 dns.tf -> ../config-common/dns.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 elbs.tf -> ../config-common/elbs.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 166 Nov 20 16:17 env.properties
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 36 Nov 20 16:17 external_modules.tf -> ../config-common/external_modules.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 iam.tf -> ../config-common/iam.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 instances.tf -> ../config-common/instances.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 28 Nov 20 16:17 keypairs.tf -> ../config-common/keypairs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 34 Nov 20 16:17 launch_configs.tf -> ../config-common/launch_configs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 main.tf -> ../config-common/main.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 30 Nov 20 16:17 s3_buckets.tf -> ../config-common/s3_buckets.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 192 Nov 24 11:00 secrets_override.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 35 Nov 20 16:17 security_groups.tf -> ../config-common/security_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 26 Nov 20 16:17 templates -> ../config-common/templates
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 54247 Dec 14 15:15 terraform.tfstate
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 51186 Dec 14 15:14 terraform.tfstate.backup
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 1556 Dec 14 14:47 terraform.tfvars
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 variables.tf -> ../config-common/variables.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 vpc.tf -> ../config-common/vpc.tf
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
There are warnings and/or errors related to your configuration. Please
fix these before continuing.
Errors:
* 1 error(s) occurred:
* module root: 6 error(s) occurred:
* resource 'aws_instance.bastion' provisioner chef (#1): unknown variable referenced: 'validation_client_name'. define it with 'variable' blocks
* resource 'aws_instance.bastion' provisioner chef (#1): unknown variable referenced: 'bootstrap_chef_server'. define it with 'variable' blocks
* resource 'aws_instance.bastion' provisioner chef (#1): unknown variable referenced: 'validation_key_path'. define it with 'variable' blocks
* resource 'aws_instance.bastion' config: unknown variable referenced: 'ssh_key_name'. define it with 'variable' blocks
* resource 'aws_route53_record.bastion' config: unknown variable referenced: 'zone_id'. define it with 'variable' blocks
* resource 'aws_instance.bastion' config: unknown resource 'aws_security_group.basic_access' referenced in variable aws_security_group.basic_access.id
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
There are warnings and/or errors related to your configuration. Please
fix these before continuing.
Errors:
* 2 error(s) occurred:
* module root: 3 error(s) occurred:
* resource 'aws_route53_record.bastion' config: unknown variable referenced: 'zone_id'. define it with 'variable' blocks
* resource 'aws_instance.bastion' config: unknown variable referenced: 'ssh_key_name'. define it with 'variable' blocks
* resource 'aws_instance.bastion' config: unknown resource 'aws_security_group.basic_access' referenced in variable aws_security_group.basic_access.id
* Required variable not set: bootstrap_chef_server
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
There are warnings and/or errors related to your configuration. Please
fix these before continuing.
Errors:
* 2 error(s) occurred:
* module root: 1 error(s) occurred:
* resource 'aws_instance.bastion' config: unknown variable referenced: 'ssh_key_name'. define it with 'variable' blocks
* Required variable not set: bootstrap_chef_server
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
There are warnings and/or errors related to your configuration. Please
fix these before continuing.
Errors:
* 2 error(s) occurred:
* module root: 1 error(s) occurred:
* resource 'aws_instance.bastion' config: unknown variable referenced: 'key_pair_name'. define it with 'variable' blocks
* Required variable not set: bootstrap_chef_server
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
There are warnings and/or errors related to your configuration. Please
fix these before continuing.
Errors:
* 1 error(s) occurred:
* Required variable not set: bootstrap_chef_server
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
aws_iam_role.testnode_role: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_role)
aws_iam_policy.testnode_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-testnode_policy)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_instance_profile.testnode_profile: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_profile)
aws_iam_policy_attachment.testnode_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_policy-attach)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_instance.testnode.1: Refreshing state... (ID: i-126400a4)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_instance.testnode.2: Refreshing state... (ID: i-47945cf6)
aws_instance.testnode.0: Refreshing state... (ID: i-44945cf5)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_eip.bastion_eip
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "${aws_instance.bastion.id}"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
+ aws_instance.bastion
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.micro"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "1"
tags.Name: "" => "bastion-qa-useast1b-01"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
+ aws_route53_record.bastion
fqdn: "" => "<computed>"
name: "" => "bastion-us-east-1"
records.#: "" => "<computed>"
ttl: "" => "300"
type: "" => "A"
+ aws_security_group.bastion
description: "" => "SSH access to bastion"
egress.#: "" => "1"
egress.179083333.cidr_blocks.#: "" => "1"
egress.179083333.cidr_blocks.0: "" => "10.0.0.0/8"
egress.179083333.from_port: "" => "22"
egress.179083333.protocol: "" => "tcp"
egress.179083333.security_groups.#: "" => "0"
egress.179083333.self: "" => "0"
egress.179083333.to_port: "" => "22"
ingress.#: "" => "1"
ingress.2541437006.cidr_blocks.#: "" => "1"
ingress.2541437006.cidr_blocks.0: "" => "0.0.0.0/0"
ingress.2541437006.from_port: "" => "22"
ingress.2541437006.protocol: "" => "tcp"
ingress.2541437006.security_groups.#: "" => "0"
ingress.2541437006.self: "" => "0"
ingress.2541437006.to_port: "" => "22"
name: "" => "bastion"
owner_id: "" => "<computed>"
vpc_id: "" => "vpc-b89e07dc"
Plan: 4 to add, 0 to change, 0 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform apply
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_policy.testnode_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-testnode_policy)
aws_iam_role.testnode_role: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_role)
aws_iam_instance_profile.testnode_profile: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_profile)
aws_iam_policy_attachment.testnode_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_policy-attach)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_instance.testnode.0: Refreshing state... (ID: i-44945cf5)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_instance.testnode.1: Refreshing state... (ID: i-126400a4)
aws_instance.testnode.2: Refreshing state... (ID: i-47945cf6)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
aws_security_group.bastion: Creating...
description: "" => "SSH access to bastion"
egress.#: "" => "1"
egress.179083333.cidr_blocks.#: "" => "1"
egress.179083333.cidr_blocks.0: "" => "10.0.0.0/8"
egress.179083333.from_port: "" => "22"
egress.179083333.protocol: "" => "tcp"
egress.179083333.security_groups.#: "" => "0"
egress.179083333.self: "" => "0"
egress.179083333.to_port: "" => "22"
ingress.#: "" => "1"
ingress.2541437006.cidr_blocks.#: "" => "1"
ingress.2541437006.cidr_blocks.0: "" => "0.0.0.0/0"
ingress.2541437006.from_port: "" => "22"
ingress.2541437006.protocol: "" => "tcp"
ingress.2541437006.security_groups.#: "" => "0"
ingress.2541437006.self: "" => "0"
ingress.2541437006.to_port: "" => "22"
name: "" => "bastion"
owner_id: "" => "<computed>"
vpc_id: "" => "vpc-b89e07dc"
aws_security_group.bastion: Creation complete
aws_instance.bastion: Creating...
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.micro"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "1"
tags.Name: "" => "bastion-qa-useast1b-01"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.594606926: "" => "sg-94fae0f2"
aws_instance.bastion: Provisioning with 'chef'...
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 52.91.166.230
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 52.91.166.230
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 52.91.166.230
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 52.91.166.230
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 52.91.166.230
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connected!
aws_instance.bastion (chef): % Total % Received % Xferd Average Speed Time Time Time Current
aws_instance.bastion (chef): Dload Upload Total Spent Left Speed
aws_instance.bastion (chef): 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
aws_instance.bastion (chef): 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
aws_instance.bastion (chef): 100 19958 100 19958 0 0 26069 0 --:--:-- --:--:-- --:--:-- 26054
aws_instance.bastion (chef): Getting information for chef stable 12.4.3 for el...
aws_instance.bastion (chef): downloading https://www.chef.io/stable/chef/metadata?v=12.4.3&p=el&pv=7&m=x86_64
aws_instance.bastion (chef): to file /tmp/install.sh.3850/metadata.txt
aws_instance.bastion (chef): trying curl...
aws_instance.bastion (chef): url https://opscode-omnibus-packages.s3.amazonaws.com/el/7/x86_64/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): md5 66f826b65ea42802b1f97fa7a355b3b5
aws_instance.bastion (chef): sha256 ae3b50e38120e62ab9e7a0e69792432d7eba2560a1dfc4f5fd4a72396a403245
aws_instance.bastion (chef): version 12.4.3downloaded metadata file looks valid...
aws_instance.bastion (chef): downloading https://opscode-omnibus-packages.s3.amazonaws.com/el/7/x86_64/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): to file /tmp/install.sh.3850/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): trying curl...
aws_instance.bastion (chef): Comparing checksum with sha256sum...
aws_instance.bastion (chef): Installing chef 12.4.3
aws_instance.bastion (chef): installing with rpm...
aws_instance.bastion (chef): warning: /tmp/install.sh.3850/chef-12.4.3-1.el7.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
aws_instance.bastion (chef): Preparing...
aws_instance.bastion (chef): ################################# [100%]
aws_instance.bastion (chef): Updating / installing...
aws_instance.bastion (chef): 1:chef-12.4.3-1.el7
aws_instance.bastion (chef): ( 1%)
aws_instance.bastion (chef): # ( 4%)
aws_instance.bastion (chef): ## ( 7%)
aws_instance.bastion (chef): ### ( 10%)
aws_instance.bastion (chef): ################ ( 49%)
aws_instance.bastion (chef): ################# ( 51%)
aws_instance.bastion (chef): ################## ( 54%)
aws_instance.bastion (chef): ##################### ( 63%)
aws_instance.bastion (chef): ####################### ( 69%)
aws_instance.bastion (chef): ######################## ( 72%)
aws_instance.bastion (chef): ######################### ( 75%)
aws_instance.bastion (chef): ########################## ( 78%)
aws_instance.bastion (chef): ########################### ( 81%)
aws_instance.bastion (chef): ############################ ( 84%)
aws_instance.bastion (chef): ############################# ( 87%)
aws_instance.bastion (chef): ############################## ( 90%)
aws_instance.bastion (chef): ############################### ( 93%)
aws_instance.bastion (chef): ################################ ( 96%)
aws_instance.bastion (chef): ################################# [100%]
aws_instance.bastion (chef): Thank you for installing Chef!
aws_instance.bastion (chef): Creating configuration files...
Error applying plan:
1 error(s) occurred:
* open /Users/gary.armstrong/.chef/platform-validator.pem: no such file or directory
Terraform does not automatically rollback in the face of errors.
Instead, your Terraform state file has been partially updated with
any resources that successfully completed. Please address the error
above and apply again to incrementally change your infrastructure.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ls -la /Users/gary.armstrong/.chef
ls: /Users/gary.armstrong/.chef: No such file or directory
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: ../config-common/variables.tf
modified: terraform.tfstate
modified: terraform.tfstate.backup
modified: terraform.tfvars
Untracked files:
(use "git add <file>..." to include in what will be committed)
../config-common/bastion.tf
bastion.tf
no changes added to commit (use "git add" and/or "git commit -a")
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git add ..
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
new file: ../config-common/bastion.tf
modified: ../config-common/variables.tf
new file: bastion.tf
modified: terraform.tfstate
modified: terraform.tfstate.backup
modified: terraform.tfvars
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git commit -m "Quickly added bastion instance and Chef server"
[master efc83b1] Quickly added bastion instance and Chef server
6 files changed, 274 insertions(+), 35 deletions(-)
create mode 100644 config-common/bastion.tf
create mode 120000 config-qa-aws-us-east-1/bastion.tf
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git log --decorate --all --graph
* commit efc83b14b203e34738e78ad8397d85029715dc65 (HEAD -> master)
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Mon Dec 14 16:02:46 2015 -0500
|
| Quickly added bastion instance and Chef server
|
* commit e53535d0e1a5b4d990120cb4cf63eaa7c51d66d8 (origin/master, origin/HEAD)
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Mon Dec 14 15:32:46 2015 -0500
|
| SG rules fixed
|
* commit 60f879855b87d28879105bd05602114a995f8793
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Fri Dec 11 12:29:21 2015 -0500
|
| SG rules progress, still broken
|
* commit 3622ca980434f79a3b592afbfa152f1b5b3450ec
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Thu Dec 10 17:02:07 2015 -0500
|
| SG rules somehow broken
|
* commit 7bbed1cd04e1f485a9a90f5e150e89462050e52b
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Thu Dec 10 11:01:56 2015 -0500
|
| Update SG rule names + set public route table as main
|
* commit 2e6d69d16a8f08b7613749513d5bf3bad4fb3fd4
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Thu Dec 3 15:40:23 2015 -0500
|
| Create QA tree from DEV tree
|
* commit 7e4367f9f84aef8cf28e0179cede66cd7718e056
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Thu Dec 3 14:09:23 2015 -0500
|
| Try to fix route tables
|
* commit 4ab25f81c13a0e921d098729afe2b65c0c070a02
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Thu Dec 3 12:06:47 2015 -0500
|
| Try to fix SG
|
* commit 4c35c3804c11d8fcab6c77111fc62cafd53e06d8
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Thu Dec 3 11:04:54 2015 -0500
|
| Fixing up network but not done
|
* commit ddfab23a4980495647fc0161702673e45660332b
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Thu Dec 3 10:30:41 2015 -0500
|
| Remove public net while learning
|
* commit 144246c9c40b531e3d1bce631dade4c070809cde
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Tue Dec 1 15:00:29 2015 -0500
|
| Random commit
|
* commit 269987a8b2f32e3ac75cd603c48f7133e3f0cbf3
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Mon Nov 30 16:04:50 2015 -0500
|
| SG Framework adds
|
* commit c1352969296afc489a2fc0e38735380bd421b82e
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Mon Nov 30 15:16:32 2015 -0500
|
| Put vim .swp files in .gitignore
|
* commit 966ca3f81bbab2e073c0bac9c5651f411aa1b053
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Mon Nov 30 15:15:27 2015 -0500
|
| Mostly just framing SG rules
|
* commit 32ac7f079843314d12c5cd9839685c8d4a3a664c
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Mon Nov 30 12:23:45 2015 -0500
|
| Adding SG rules
|
* commit 6ae4df5a697796368bba62e031af8e8d8481d993
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Mon Nov 30 09:08:08 2015 -0500
|
| Modify to use SUN FOD QA General keypair
|
* commit 369f2fed35869fbfd77ee9828011d53492a83010
|\ Merge: bb5ae6f a062d09
| | Author: Patrick Flaherty <patrick.flaherty@weather.com>
| | Date: Fri Nov 20 16:15:17 2015 -0500
| |
| | Merge pull request #2 from TheWeatherCompany/initial_skeleton
| |
| | nat fw, and rename directory
| |
| * commit a062d09dca67002e0363774c78228c8ae772af79 (origin/initial_skeleton)
| | Author: Patrick Flaherty <patrick.flaherty@weather.com>
| | Date: Fri Nov 20 16:14:24 2015 -0500
| |
| | nat fw, and rename directory
| |
* | commit bb5ae6f204722be9416961adc5bee874cf66779c
|\ \ Merge: 08a0f18 541bc27
| |/ Author: Patrick Flaherty <patrick.flaherty@weather.com>
| | Date: Fri Nov 20 15:56:40 2015 -0500
| |
| | Merge pull request #1 from TheWeatherCompany/initial_skeleton
| |
| | Initial skeleton
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git push
Counting objects: 10, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (9/9), done.
Writing objects: 100% (10/10), 2.86 KiB | 0 bytes/s, done.
Total 10 (delta 7), reused 0 (delta 0)
To git@github.com:TheWeatherCompany/wcs-env-wxmix.git
e53535d..efc83b1 master -> master
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform apply
Error configuring: 1 error(s) occurred:
* aws_instance.testnode: missing dependency: var.testnode_count
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
There are warnings and/or errors related to your configuration. Please
fix these before continuing.
Errors:
* 1 error(s) occurred:
* module root: 1 error(s) occurred:
* resource 'aws_instance.testnode' count: unknown variable referenced: 'testnode_count'. define it with 'variable' blocks
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
There are warnings and/or errors related to your configuration. Please
fix these before continuing.
Errors:
* 1 error(s) occurred:
* module root: 1 error(s) occurred:
* resource 'aws_instance.testnode' config: unknown resource 'aws_iam_instance_profile.testnode_profile' referenced in variable aws_iam_instance_profile.testnode_profile.name
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
aws_iam_instance_profile.testnode_profile: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_profile)
aws_iam_policy_attachment.testnode_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_policy-attach)
aws_instance.bastion: Refreshing state... (ID: i-87fd3536)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_policy.testnode_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-testnode_policy)
aws_iam_role.testnode_role: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_role)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_instance.testnode.0: Refreshing state... (ID: i-44945cf5)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_instance.testnode.2: Refreshing state... (ID: i-47945cf6)
aws_instance.testnode.1: Refreshing state... (ID: i-126400a4)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_eip.bastion_eip
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "${aws_instance.bastion.id}"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
- aws_iam_instance_profile.testnode_profile
+ aws_iam_instance_profile.wxmix_profile
arn: "" => "<computed>"
create_date: "" => "<computed>"
name: "" => "wxmix-qa-us-east-1-wxmix_profile"
path: "" => "/"
roles.#: "" => "1"
roles.2262189201: "" => "wxmix-qa-us-east-1-wxmix_role"
unique_id: "" => "<computed>"
- aws_iam_policy.testnode_policy
+ aws_iam_policy.wxmix_policy
arn: "" => "<computed>"
description: "" => "wxmix-qa-us-east-1-wxmix_policy"
name: "" => "wxmix-qa-us-east-1-wxmix_policy"
path: "" => "/"
policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": [\n \"ec2:Describe*\"\n ],\n \"Effect\": \"Allow\",\n \"Resource\": \"*\"\n }\n ]\n}\n"
- aws_iam_policy_attachment.testnode_policy-attach
+ aws_iam_policy_attachment.wxmix_policy-attach
name: "" => "wxmix-qa-us-east-1-wxmix_policy-attach"
policy_arn: "" => "${aws_iam_policy.wxmix_policy.arn}"
roles.#: "" => "1"
roles.2262189201: "" => "wxmix-qa-us-east-1-wxmix_role"
- aws_iam_role.testnode_role
+ aws_iam_role.wxmix_role
arn: "" => "<computed>"
assume_role_policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": \"sts:AssumeRole\",\n \"Principal\": {\n \"Service\": \"ec2.amazonaws.com\"\n },\n \"Effect\": \"Allow\",\n \"Sid\": \"\"\n }\n ]\n}\n"
name: "" => "wxmix-qa-us-east-1-wxmix_role"
path: "" => "/"
unique_id: "" => "<computed>"
-/+ aws_instance.bastion
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.micro"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "1"
tags.Name: "" => "bastion-qa-useast1b-01"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.594606926: "" => "sg-94fae0f2"
-/+ aws_instance.testnode.0
ami: "ami-aa094ec2" => "ami-aa094ec2"
associate_public_ip_address: "true" => "1"
availability_zone: "us-east-1b" => "us-east-1b"
ebs_block_device.#: "0" => "<computed>"
ephemeral_block_device.#: "0" => "<computed>"
iam_instance_profile: "wxmix-qa-us-east-1-testnode_profile" => "wxmix-qa-us-east-1-wxmix_profile" (forces new resource)
instance_type: "t2.small" => "t2.small"
key_name: "sunfod-qa-us-east-1-general" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "ip-10-233-212-29.ec2.internal" => "<computed>"
private_ip: "10.233.212.29" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "54.164.102.29" => "<computed>"
root_block_device.#: "1" => "<computed>"
security_groups.#: "0" => "<computed>"
source_dest_check: "true" => "1"
subnet_id: "subnet-adfbe486" => "subnet-adfbe486"
tags.#: "2" => "2"
tags.Billing: "FOD" => "FOD"
tags.Name: "wxmix-qa-testnode-000" => "wxmix-qa-testnode-000"
tenancy: "default" => "<computed>"
vpc_security_group_ids.#: "2" => "2"
vpc_security_group_ids.2604585730: "sg-4a342e2c" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "sg-4d342e2b" => "sg-4d342e2b"
-/+ aws_instance.testnode.1
ami: "ami-aa094ec2" => "ami-aa094ec2"
associate_public_ip_address: "true" => "1"
availability_zone: "us-east-1c" => "us-east-1c"
ebs_block_device.#: "0" => "<computed>"
ephemeral_block_device.#: "0" => "<computed>"
iam_instance_profile: "wxmix-qa-us-east-1-testnode_profile" => "wxmix-qa-us-east-1-wxmix_profile" (forces new resource)
instance_type: "t2.small" => "t2.small"
key_name: "sunfod-qa-us-east-1-general" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "ip-10-233-212-88.ec2.internal" => "<computed>"
private_ip: "10.233.212.88" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "52.91.99.204" => "<computed>"
root_block_device.#: "1" => "<computed>"
security_groups.#: "0" => "<computed>"
source_dest_check: "true" => "1"
subnet_id: "subnet-06529970" => "subnet-06529970"
tags.#: "2" => "2"
tags.Billing: "FOD" => "FOD"
tags.Name: "wxmix-qa-testnode-001" => "wxmix-qa-testnode-001"
tenancy: "default" => "<computed>"
vpc_security_group_ids.#: "2" => "2"
vpc_security_group_ids.2604585730: "sg-4a342e2c" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "sg-4d342e2b" => "sg-4d342e2b"
-/+ aws_instance.testnode.2
ami: "ami-aa094ec2" => "ami-aa094ec2"
associate_public_ip_address: "true" => "1"
availability_zone: "us-east-1b" => "us-east-1b"
ebs_block_device.#: "0" => "<computed>"
ephemeral_block_device.#: "0" => "<computed>"
iam_instance_profile: "wxmix-qa-us-east-1-testnode_profile" => "wxmix-qa-us-east-1-wxmix_profile" (forces new resource)
instance_type: "t2.small" => "t2.small"
key_name: "sunfod-qa-us-east-1-general" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "ip-10-233-212-26.ec2.internal" => "<computed>"
private_ip: "10.233.212.26" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "54.164.51.233" => "<computed>"
root_block_device.#: "1" => "<computed>"
security_groups.#: "0" => "<computed>"
source_dest_check: "true" => "1"
subnet_id: "subnet-adfbe486" => "subnet-adfbe486"
tags.#: "2" => "2"
tags.Billing: "FOD" => "FOD"
tags.Name: "wxmix-qa-testnode-002" => "wxmix-qa-testnode-002"
tenancy: "default" => "<computed>"
vpc_security_group_ids.#: "2" => "2"
vpc_security_group_ids.2604585730: "sg-4a342e2c" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "sg-4d342e2b" => "sg-4d342e2b"
+ aws_route53_record.bastion
fqdn: "" => "<computed>"
name: "" => "bastion-us-east-1"
records.#: "" => "<computed>"
ttl: "" => "300"
type: "" => "A"
Plan: 10 to add, 0 to change, 7 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform apply
aws_iam_policy_attachment.testnode_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_policy-attach)
aws_iam_instance_profile.testnode_profile: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_profile)
aws_instance.bastion: Refreshing state... (ID: i-87fd3536)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_role.testnode_role: Refreshing state... (ID: wxmix-qa-us-east-1-testnode_role)
aws_iam_policy.testnode_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-testnode_policy)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_instance.testnode.2: Refreshing state... (ID: i-47945cf6)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_instance.testnode.0: Refreshing state... (ID: i-44945cf5)
aws_instance.testnode.1: Refreshing state... (ID: i-126400a4)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_iam_policy_attachment.testnode_policy-attach: Destroying...
aws_iam_instance_profile.testnode_profile: Destroying...
aws_instance.testnode.2: Destroying...
aws_instance.bastion: Destroying...
aws_instance.testnode.0: Destroying...
aws_instance.testnode.1: Destroying...
aws_iam_role.wxmix_role: Creating...
arn: "" => "<computed>"
assume_role_policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": \"sts:AssumeRole\",\n \"Principal\": {\n \"Service\": \"ec2.amazonaws.com\"\n },\n \"Effect\": \"Allow\",\n \"Sid\": \"\"\n }\n ]\n}\n"
name: "" => "wxmix-qa-us-east-1-wxmix_role"
path: "" => "/"
unique_id: "" => "<computed>"
aws_iam_policy.wxmix_policy: Creating...
arn: "" => "<computed>"
description: "" => "wxmix-qa-us-east-1-wxmix_policy"
name: "" => "wxmix-qa-us-east-1-wxmix_policy"
path: "" => "/"
policy: "" => "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Action\": [\n \"ec2:Describe*\"\n ],\n \"Effect\": \"Allow\",\n \"Resource\": \"*\"\n }\n ]\n}\n"
aws_iam_policy_attachment.testnode_policy-attach: Destruction complete
aws_iam_policy.testnode_policy: Destroying...
aws_iam_instance_profile.testnode_profile: Destruction complete
aws_iam_role.testnode_role: Destroying...
aws_iam_role.wxmix_role: Creation complete
aws_iam_instance_profile.wxmix_profile: Creating...
arn: "" => "<computed>"
create_date: "" => "<computed>"
name: "" => "wxmix-qa-us-east-1-wxmix_profile"
path: "" => "/"
roles.#: "" => "1"
roles.2262189201: "" => "wxmix-qa-us-east-1-wxmix_role"
unique_id: "" => "<computed>"
aws_iam_policy.wxmix_policy: Creation complete
aws_iam_policy_attachment.wxmix_policy-attach: Creating...
name: "" => "wxmix-qa-us-east-1-wxmix_policy-attach"
policy_arn: "" => "arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy"
roles.#: "" => "1"
roles.2262189201: "" => "wxmix-qa-us-east-1-wxmix_role"
aws_iam_policy.testnode_policy: Destruction complete
aws_iam_role.testnode_role: Destruction complete
aws_iam_instance_profile.wxmix_profile: Creation complete
aws_iam_policy_attachment.wxmix_policy-attach: Creation complete
aws_instance.testnode.2: Destruction complete
aws_instance.testnode.1: Destruction complete
aws_instance.testnode.0: Destruction complete
aws_instance.testnode.0: Creating...
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
aws_instance.testnode.1: Creating...
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
aws_instance.bastion: Creating...
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.micro"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "1"
tags.Name: "" => "bastion-qa-useast1b-01"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.594606926: "" => "sg-94fae0f2"
aws_instance.testnode.2: Creating...
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "t2.small"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-testnode-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
aws_instance.testnode.0: Creation complete
aws_instance.bastion: Provisioning with 'chef'...
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.172.177.26
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.testnode.2: Creation complete
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.172.177.26
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.testnode.1: Creation complete
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.172.177.26
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.172.177.26
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.172.177.26
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connected!
aws_instance.bastion (chef): % Total % Received % Xferd Average Speed Time Time Time Current
aws_instance.bastion (chef): Dload Upload Total Spent Left Speed
aws_instance.bastion (chef): 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
aws_instance.bastion (chef): 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0
aws_instance.bastion (chef): 100 19958 100 19958 0 0 19324 0 0:00:01 0:00:01 --:--:-- 19339
aws_instance.bastion (chef): Getting information for chef stable 12.4.3 for el...
aws_instance.bastion (chef): downloading https://www.chef.io/stable/chef/metadata?v=12.4.3&p=el&pv=7&m=x86_64
aws_instance.bastion (chef): to file /tmp/install.sh.3657/metadata.txt
aws_instance.bastion (chef): trying curl...
aws_instance.bastion (chef): url https://opscode-omnibus-packages.s3.amazonaws.com/el/7/x86_64/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): md5 66f826b65ea42802b1f97fa7a355b3b5
aws_instance.bastion (chef): sha256 ae3b50e38120e62ab9e7a0e69792432d7eba2560a1dfc4f5fd4a72396a403245
aws_instance.bastion (chef): version 12.4.3downloaded metadata file looks valid...
aws_instance.bastion (chef): downloading https://opscode-omnibus-packages.s3.amazonaws.com/el/7/x86_64/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): to file /tmp/install.sh.3657/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): trying curl...
aws_instance.bastion (chef): Comparing checksum with sha256sum...
aws_instance.bastion (chef): Installing chef 12.4.3
aws_instance.bastion (chef): installing with rpm...
aws_instance.bastion (chef): warning: /tmp/install.sh.3657/chef-12.4.3-1.el7.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
aws_instance.bastion (chef): Preparing...
aws_instance.bastion (chef): ################################# [100%]
aws_instance.bastion (chef): Updating / installing...
aws_instance.bastion (chef): 1:chef-12.4.3-1.el7
aws_instance.bastion (chef): ( 1%)
aws_instance.bastion (chef): # ( 4%)
aws_instance.bastion (chef): ## ( 7%)
aws_instance.bastion (chef): ### ( 10%)
aws_instance.bastion (chef): ################ ( 49%)
aws_instance.bastion (chef): ################# ( 51%)
aws_instance.bastion (chef): ################## ( 54%)
aws_instance.bastion (chef): ##################### ( 63%)
aws_instance.bastion (chef): ####################### ( 69%)
aws_instance.bastion (chef): ######################## ( 72%)
aws_instance.bastion (chef): ######################### ( 75%)
aws_instance.bastion (chef): ########################## ( 78%)
aws_instance.bastion (chef): ########################### ( 81%)
aws_instance.bastion (chef): ############################ ( 84%)
aws_instance.bastion (chef): ############################# ( 87%)
aws_instance.bastion (chef): ############################## ( 90%)
aws_instance.bastion (chef): ############################### ( 93%)
aws_instance.bastion (chef): ################################ ( 96%)
aws_instance.bastion (chef): ################################# [100%]
aws_instance.bastion (chef): Thank you for installing Chef!
aws_instance.bastion (chef): Creating configuration files...
Error applying plan:
1 error(s) occurred:
* open /Users/gary.armstrong/.chef/platform-validator.pem: no such file or directory
Terraform does not automatically rollback in the face of errors.
Instead, your Terraform state file has been partially updated with
any resources that successfully completed. Please address the error
above and apply again to incrementally change your infrastructure.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git commit -m "Fixed IAM, maybe time for Chef access"
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
modified: ../config-common/iam.tf
modified: ../config-common/instances.tf
modified: ../config-common/variables.tf
modified: terraform.tfstate
modified: terraform.tfstate.backup
no changes added to commit
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git add ..
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: ../config-common/iam.tf
modified: ../config-common/instances.tf
modified: ../config-common/variables.tf
modified: terraform.tfstate
modified: terraform.tfstate.backup
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git commit -m "Fixed IAM, maybe time for Chef access"
[master 83f1d3b] Fixed IAM, maybe time for Chef access
5 files changed, 188 insertions(+), 81 deletions(-)
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git log --decorate --all --graph
* commit 83f1d3b442a8c7687b18123a65b77a1bfa744944 (HEAD -> master)
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Mon Dec 14 16:22:36 2015 -0500
|
| Fixed IAM, maybe time for Chef access
|
* commit efc83b14b203e34738e78ad8397d85029715dc65 (origin/master, origin/HEAD)
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Mon Dec 14 16:02:46 2015 -0500
|
| Quickly added bastion instance and Chef server
|
* commit e53535d0e1a5b4d990120cb4cf63eaa7c51d66d8
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Mon Dec 14 15:32:46 2015 -0500
|
| SG rules fixed
|
* commit 60f879855b87d28879105bd05602114a995f8793
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Fri Dec 11 12:29:21 2015 -0500
|
| SG rules progress, still broken
|
* commit 3622ca980434f79a3b592afbfa152f1b5b3450ec
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Thu Dec 10 17:02:07 2015 -0500
|
| SG rules somehow broken
|
* commit 7bbed1cd04e1f485a9a90f5e150e89462050e52b
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Thu Dec 10 11:01:56 2015 -0500
|
| Update SG rule names + set public route table as main
|
* commit 2e6d69d16a8f08b7613749513d5bf3bad4fb3fd4
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Thu Dec 3 15:40:23 2015 -0500
|
| Create QA tree from DEV tree
|
* commit 7e4367f9f84aef8cf28e0179cede66cd7718e056
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Thu Dec 3 14:09:23 2015 -0500
|
| Try to fix route tables
|
* commit 4ab25f81c13a0e921d098729afe2b65c0c070a02
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Thu Dec 3 12:06:47 2015 -0500
|
| Try to fix SG
|
* commit 4c35c3804c11d8fcab6c77111fc62cafd53e06d8
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Thu Dec 3 11:04:54 2015 -0500
|
| Fixing up network but not done
|
* commit ddfab23a4980495647fc0161702673e45660332b
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Thu Dec 3 10:30:41 2015 -0500
|
| Remove public net while learning
|
* commit 144246c9c40b531e3d1bce631dade4c070809cde
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Tue Dec 1 15:00:29 2015 -0500
|
| Random commit
|
* commit 269987a8b2f32e3ac75cd603c48f7133e3f0cbf3
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Mon Nov 30 16:04:50 2015 -0500
|
| SG Framework adds
|
* commit c1352969296afc489a2fc0e38735380bd421b82e
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Mon Nov 30 15:16:32 2015 -0500
|
| Put vim .swp files in .gitignore
|
* commit 966ca3f81bbab2e073c0bac9c5651f411aa1b053
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Mon Nov 30 15:15:27 2015 -0500
|
| Mostly just framing SG rules
|
* commit 32ac7f079843314d12c5cd9839685c8d4a3a664c
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Mon Nov 30 12:23:45 2015 -0500
|
| Adding SG rules
|
* commit 6ae4df5a697796368bba62e031af8e8d8481d993
| Author: Gary Armstrong <gary.armstrong@weather.com>
| Date: Mon Nov 30 09:08:08 2015 -0500
|
| Modify to use SUN FOD QA General keypair
|
* commit 369f2fed35869fbfd77ee9828011d53492a83010
|\ Merge: bb5ae6f a062d09
| | Author: Patrick Flaherty <patrick.flaherty@weather.com>
| | Date: Fri Nov 20 16:15:17 2015 -0500
| |
| | Merge pull request #2 from TheWeatherCompany/initial_skeleton
| |
| | nat fw, and rename directory
| |
| * commit a062d09dca67002e0363774c78228c8ae772af79 (origin/initial_skeleton)
| | Author: Patrick Flaherty <patrick.flaherty@weather.com>
| | Date: Fri Nov 20 16:14:24 2015 -0500
| |
| | nat fw, and rename directory
| |
* | commit bb5ae6f204722be9416961adc5bee874cf66779c
|\ \ Merge: 08a0f18 541bc27
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git push
Counting objects: 9, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (9/9), done.
Writing objects: 100% (9/9), 2.13 KiB | 0 bytes/s, done.
Total 9 (delta 8), reused 0 (delta 0)
To git@github.com:TheWeatherCompany/wcs-env-wxmix.git
efc83b1..83f1d3b master -> master
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working directory clean
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_instance.bastion: Refreshing state... (ID: i-661ed6d7)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_eip.bastion_eip
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "${aws_instance.bastion.id}"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
-/+ aws_instance.bastion
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.micro"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "1"
tags.Name: "" => "bastion-qa-useast1b-01"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.594606926: "" => "sg-94fae0f2"
+ aws_route53_record.bastion
fqdn: "" => "<computed>"
name: "" => "bastion-us-east-1"
records.#: "" => "<computed>"
ttl: "" => "300"
type: "" => "A"
Plan: 3 to add, 0 to change, 0 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform apply
aws_instance.bastion: Refreshing state... (ID: i-661ed6d7)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
aws_instance.bastion: Destroying...
aws_instance.bastion: Creating...
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.micro"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "1"
tags.Name: "" => "bastion-qa-useast1b-01"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.594606926: "" => "sg-94fae0f2"
aws_instance.bastion: Provisioning with 'chef'...
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.208.40.28
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.208.40.28
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.208.40.28
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.208.40.28
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.208.40.28
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.208.40.28
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.208.40.28
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connected!
aws_instance.bastion (chef): % Total % Received % Xferd Average Speed Time Time Time Current
aws_instance.bastion (chef): Dload Upload Total Spent Left Speed
aws_instance.bastion (chef): 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
aws_instance.bastion (chef): 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
aws_instance.bastion (chef): 100 19958 100 19958 0 0 20153 0 --:--:-- --:--:-- --:--:-- 20159
aws_instance.bastion (chef): Getting information for chef stable 12.4.3 for el...
aws_instance.bastion (chef): downloading https://www.chef.io/stable/chef/metadata?v=12.4.3&p=el&pv=7&m=x86_64
aws_instance.bastion (chef): to file /tmp/install.sh.3915/metadata.txt
aws_instance.bastion (chef): trying curl...
aws_instance.bastion (chef): url https://opscode-omnibus-packages.s3.amazonaws.com/el/7/x86_64/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): md5 66f826b65ea42802b1f97fa7a355b3b5
aws_instance.bastion (chef): sha256 ae3b50e38120e62ab9e7a0e69792432d7eba2560a1dfc4f5fd4a72396a403245
aws_instance.bastion (chef): version 12.4.3downloaded metadata file looks valid...
aws_instance.bastion (chef): downloading https://opscode-omnibus-packages.s3.amazonaws.com/el/7/x86_64/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): to file /tmp/install.sh.3915/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): trying curl...
aws_instance.bastion (chef): Comparing checksum with sha256sum...
aws_instance.bastion (chef): Installing chef 12.4.3
aws_instance.bastion (chef): installing with rpm...
aws_instance.bastion (chef): warning: /tmp/install.sh.3915/chef-12.4.3-1.el7.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
aws_instance.bastion (chef): Preparing...
aws_instance.bastion (chef): ################################# [100%]
aws_instance.bastion (chef): Updating / installing...
aws_instance.bastion (chef): 1:chef-12.4.3-1.el7
aws_instance.bastion (chef): ( 1%)
aws_instance.bastion (chef): # ( 4%)
aws_instance.bastion (chef): ## ( 7%)
aws_instance.bastion (chef): ### ( 10%)
aws_instance.bastion (chef): ################ ( 49%)
aws_instance.bastion (chef): ################# ( 51%)
aws_instance.bastion (chef): ################## ( 54%)
aws_instance.bastion (chef): ################### ( 57%)
aws_instance.bastion (chef): ##################### ( 63%)
aws_instance.bastion (chef): ####################### ( 69%)
aws_instance.bastion (chef): ######################## ( 72%)
aws_instance.bastion (chef): ######################### ( 75%)
aws_instance.bastion (chef): ########################## ( 78%)
aws_instance.bastion (chef): ############################ ( 84%)
aws_instance.bastion (chef): ############################# ( 87%)
aws_instance.bastion (chef): ############################## ( 90%)
aws_instance.bastion (chef): ############################### ( 93%)
aws_instance.bastion (chef): ################################ ( 96%)
aws_instance.bastion (chef): ################################# [100%]
aws_instance.bastion (chef): Thank you for installing Chef!
aws_instance.bastion (chef): Creating configuration files...
Error applying plan:
1 error(s) occurred:
* open /Users/gary.armstrong/.chef/platform-validator.pem: no such file or directory
Terraform does not automatically rollback in the face of errors.
Instead, your Terraform state file has been partially updated with
any resources that successfully completed. Please address the error
above and apply again to incrementally change your infrastructure.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform apply
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_instance.bastion: Refreshing state... (ID: i-5ca670ed)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
aws_instance.bastion: Destroying...
aws_instance.bastion: Creating...
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.micro"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "1"
tags.Name: "" => "bastion-qa-useast1b-01"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.594606926: "" => "sg-94fae0f2"
aws_instance.bastion: Provisioning with 'chef'...
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.238.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.238.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.238.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.238.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.238.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.238.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connected!
aws_instance.bastion (chef): % Total % Received % Xferd Average Speed Time Time Time Current
aws_instance.bastion (chef): Dload Upload Total Spent Left Speed
aws_instance.bastion (chef): 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
aws_instance.bastion (chef): 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
aws_instance.bastion (chef): 100 19958 100 19958 0 0 36898 0 --:--:-- --:--:-- --:--:-- 36890
aws_instance.bastion (chef): Getting information for chef stable 12.4.3 for el...
aws_instance.bastion (chef): downloading https://www.chef.io/stable/chef/metadata?v=12.4.3&p=el&pv=7&m=x86_64
aws_instance.bastion (chef): to file /tmp/install.sh.3657/metadata.txt
aws_instance.bastion (chef): trying curl...
aws_instance.bastion (chef): url https://opscode-omnibus-packages.s3.amazonaws.com/el/7/x86_64/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): md5 66f826b65ea42802b1f97fa7a355b3b5
aws_instance.bastion (chef): sha256 ae3b50e38120e62ab9e7a0e69792432d7eba2560a1dfc4f5fd4a72396a403245
aws_instance.bastion (chef): version 12.4.3downloaded metadata file looks valid...
aws_instance.bastion (chef): downloading https://opscode-omnibus-packages.s3.amazonaws.com/el/7/x86_64/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): to file /tmp/install.sh.3657/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): trying curl...
aws_instance.bastion (chef): Comparing checksum with sha256sum...
aws_instance.bastion (chef): Installing chef 12.4.3
aws_instance.bastion (chef): installing with rpm...
aws_instance.bastion (chef): warning: /tmp/install.sh.3657/chef-12.4.3-1.el7.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
aws_instance.bastion (chef): Preparing...
aws_instance.bastion (chef): ################################# [100%]
aws_instance.bastion (chef): Updating / installing...
aws_instance.bastion (chef): 1:chef-12.4.3-1.el7 ( 1%)
aws_instance.bastion (chef): # ( 4%)
aws_instance.bastion (chef): ## ( 7%)
aws_instance.bastion (chef): ### ( 10%)
aws_instance.bastion (chef): ################ ( 49%)
aws_instance.bastion (chef): ################# ( 51%)
aws_instance.bastion (chef): ################## ( 54%)
aws_instance.bastion (chef): ##################### ( 63%)
aws_instance.bastion (chef): ####################### ( 69%)
aws_instance.bastion (chef): ######################## ( 72%)
aws_instance.bastion (chef): ######################### ( 75%)
aws_instance.bastion (chef): ########################## ( 78%)
aws_instance.bastion (chef): ############################ ( 84%)
aws_instance.bastion (chef): ############################# ( 87%)
aws_instance.bastion (chef): ############################## ( 90%)
aws_instance.bastion (chef): ############################### ( 93%)
aws_instance.bastion (chef): ################################ ( 96%)
aws_instance.bastion (chef): ################################# [100%]
aws_instance.bastion (chef): Thank you for installing Chef!
aws_instance.bastion (chef): Creating configuration files...
Error applying plan:
1 error(s) occurred:
* open /Users/gary.armstrong/.chef/platform-validator.pem: no such file or directory
Terraform does not automatically rollback in the face of errors.
Instead, your Terraform state file has been partially updated with
any resources that successfully completed. Please address the error
above and apply again to incrementally change your infrastructure.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ cd
garmstrong-ml:~ gary.armstrong$ cd -
/Users/gary.armstrong/git-repos/wcs-env-wxmix/config-qa-aws-us-east-1
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
aws_instance.bastion: Refreshing state... (ID: i-01ac7ab0)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_eip.bastion_eip
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "${aws_instance.bastion.id}"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
-/+ aws_instance.bastion
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.micro"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "1"
tags.Name: "" => "bastion-qa-useast1b-01"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.594606926: "" => "sg-94fae0f2"
+ aws_route53_record.bastion
fqdn: "" => "<computed>"
name: "" => "bastion-us-east-1"
records.#: "" => "<computed>"
ttl: "" => "300"
type: "" => "A"
Plan: 3 to add, 0 to change, 0 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform apply
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_instance.bastion: Refreshing state... (ID: i-01ac7ab0)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
aws_instance.bastion: Destroying...
aws_instance.bastion: Creating...
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.micro"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "1"
tags.Name: "" => "bastion-qa-useast1b-01"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.594606926: "" => "sg-94fae0f2"
aws_instance.bastion: Provisioning with 'chef'...
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.249.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.249.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.249.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.249.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.249.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.249.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.249.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.249.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.249.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 54.165.249.74
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connected!
aws_instance.bastion (chef): % Total % Received % Xferd Average Speed Time Time Time Current
aws_instance.bastion (chef): Dload Upload Total Spent Left Speed
aws_instance.bastion (chef): 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
aws_instance.bastion (chef): 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
aws_instance.bastion (chef): 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0
aws_instance.bastion (chef): 100 19958 100 19958 0 0 9607 0 0:00:02 0:00:02 --:--:-- 9613
aws_instance.bastion (chef): Getting information for chef stable 12.4.3 for el...
aws_instance.bastion (chef): downloading https://www.chef.io/stable/chef/metadata?v=12.4.3&p=el&pv=7&m=x86_64
aws_instance.bastion (chef): to file /tmp/install.sh.3968/metadata.txt
aws_instance.bastion (chef): trying curl...
aws_instance.bastion (chef): url https://opscode-omnibus-packages.s3.amazonaws.com/el/7/x86_64/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): md5 66f826b65ea42802b1f97fa7a355b3b5
aws_instance.bastion (chef): sha256 ae3b50e38120e62ab9e7a0e69792432d7eba2560a1dfc4f5fd4a72396a403245
aws_instance.bastion (chef): version 12.4.3downloaded metadata file looks valid...
aws_instance.bastion (chef): downloading https://opscode-omnibus-packages.s3.amazonaws.com/el/7/x86_64/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): to file /tmp/install.sh.3968/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): trying curl...
aws_instance.bastion (chef): Comparing checksum with sha256sum...
aws_instance.bastion (chef): Installing chef 12.4.3
aws_instance.bastion (chef): installing with rpm...
aws_instance.bastion (chef): warning: /tmp/install.sh.3968/chef-12.4.3-1.el7.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
aws_instance.bastion (chef): Preparing...
aws_instance.bastion (chef): ################################# [100%]
aws_instance.bastion (chef): Updating / installing...
aws_instance.bastion (chef): 1:chef-12.4.3-1.el7
aws_instance.bastion (chef): ( 1%)
aws_instance.bastion (chef): # ( 4%)
aws_instance.bastion (chef): ## ( 7%)
aws_instance.bastion (chef): ### ( 10%)
aws_instance.bastion (chef): ################ ( 49%)
aws_instance.bastion (chef): ################# ( 51%)
aws_instance.bastion (chef): ################## ( 54%)
aws_instance.bastion (chef): ##################### ( 63%)
aws_instance.bastion (chef): ####################### ( 69%)
aws_instance.bastion (chef): ######################## ( 72%)
aws_instance.bastion (chef): ######################### ( 75%)
aws_instance.bastion (chef): ########################## ( 78%)
aws_instance.bastion (chef): ############################ ( 84%)
aws_instance.bastion (chef): ############################# ( 87%)
aws_instance.bastion (chef): ############################## ( 90%)
aws_instance.bastion (chef): ############################### ( 93%)
aws_instance.bastion (chef): ################################ ( 96%)
aws_instance.bastion (chef): ################################# [100%]
aws_instance.bastion (chef): Thank you for installing Chef!
aws_instance.bastion (chef): Creating configuration files...
Error applying plan:
1 error(s) occurred:
* open /Users/gary.armstrong/.chef/platform-validator.pem: no such file or directory
Terraform does not automatically rollback in the face of errors.
Instead, your Terraform state file has been partially updated with
any resources that successfully completed. Please address the error
above and apply again to incrementally change your infrastructure.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ knife node list
WARN: Failed to read the private key /etc/chef/client.pem: #<Errno::ENOENT: No such file or directory @ rb_sysopen - /etc/chef/client.pem>
ERROR: Your private key could not be loaded from /etc/chef/client.pem
Check your configuration file and ensure that your private key is readable
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform apply
aws_instance.bastion: Refreshing state... (ID: i-cd12c47c)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
aws_instance.bastion: Destroying...
aws_instance.bastion: Creating...
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.micro"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "1"
tags.Name: "" => "bastion-qa-useast1b-01"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.594606926: "" => "sg-94fae0f2"
aws_instance.bastion: Provisioning with 'chef'...
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 52.90.91.195
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 52.90.91.195
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 52.90.91.195
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 52.90.91.195
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 52.90.91.195
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connected!
aws_instance.bastion (chef): % Total % Received % Xferd Average Speed Time Time Time Current
aws_instance.bastion (chef): Dload Upload Total Spent Left Speed
aws_instance.bastion (chef): 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
aws_instance.bastion (chef): 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0
aws_instance.bastion (chef): 100 19958 100 19958 0 0 15897 0 0:00:01 0:00:01 --:--:-- 15915
aws_instance.bastion (chef): Getting information for chef stable 12.4.3 for el...
aws_instance.bastion (chef): downloading https://www.chef.io/stable/chef/metadata?v=12.4.3&p=el&pv=7&m=x86_64
aws_instance.bastion (chef): to file /tmp/install.sh.3885/metadata.txt
aws_instance.bastion (chef): trying curl...
aws_instance.bastion (chef): url https://opscode-omnibus-packages.s3.amazonaws.com/el/7/x86_64/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): md5 66f826b65ea42802b1f97fa7a355b3b5
aws_instance.bastion (chef): sha256 ae3b50e38120e62ab9e7a0e69792432d7eba2560a1dfc4f5fd4a72396a403245
aws_instance.bastion (chef): version 12.4.3downloaded metadata file looks valid...
aws_instance.bastion (chef): downloading https://opscode-omnibus-packages.s3.amazonaws.com/el/7/x86_64/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): to file /tmp/install.sh.3885/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): trying curl...
aws_instance.bastion (chef): Comparing checksum with sha256sum...
aws_instance.bastion (chef): Installing chef 12.4.3
aws_instance.bastion (chef): installing with rpm...
aws_instance.bastion (chef): warning: /tmp/install.sh.3885/chef-12.4.3-1.el7.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
aws_instance.bastion (chef): Preparing...
aws_instance.bastion (chef): ################################# [100%]
aws_instance.bastion (chef): Updating / installing...
aws_instance.bastion (chef): 1:chef-12.4.3-1.el7
aws_instance.bastion (chef): ( 1%)
aws_instance.bastion (chef): # ( 4%)
aws_instance.bastion (chef): ## ( 7%)
aws_instance.bastion (chef): ### ( 10%)
aws_instance.bastion (chef): ################ ( 49%)
aws_instance.bastion (chef): ################# ( 51%)
aws_instance.bastion (chef): ################## ( 54%)
aws_instance.bastion (chef): ##################### ( 63%)
aws_instance.bastion (chef): ####################### ( 69%)
aws_instance.bastion (chef): ######################## ( 72%)
aws_instance.bastion (chef): ######################### ( 75%)
aws_instance.bastion (chef): ########################## ( 78%)
aws_instance.bastion (chef): ############################ ( 84%)
aws_instance.bastion (chef): ############################# ( 87%)
aws_instance.bastion (chef): ############################## ( 90%)
aws_instance.bastion (chef): ############################### ( 93%)
aws_instance.bastion (chef): ################################ ( 96%)
aws_instance.bastion (chef): ################################# [100%]
aws_instance.bastion (chef): Thank you for installing Chef!
aws_instance.bastion (chef): Creating configuration files...
Error applying plan:
1 error(s) occurred:
* open /Users/gary.armstrong/.chef/platform-validator.pem: no such file or directory
Terraform does not automatically rollback in the face of errors.
Instead, your Terraform state file has been partially updated with
any resources that successfully completed. Please address the error
above and apply again to incrementally change your infrastructure.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ls-la
-bash: ls-la: command not found
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ls -la
total 384
drwxr-xr-x 23 gary.armstrong TWC_NETOPS\Domain Users 782 Dec 14 15:39 .
drwxr-xr-x 8 gary.armstrong TWC_NETOPS\Domain Users 272 Dec 3 15:39 ..
drwxr-xr-x 3 gary.armstrong TWC_NETOPS\Domain Users 102 Nov 20 16:24 .terraform
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 38 Nov 20 16:17 autoscaling_groups.tf -> ../config-common/autoscaling_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 27 Dec 14 15:39 bastion.tf -> ../config-common/bastion.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 dns.tf -> ../config-common/dns.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 elbs.tf -> ../config-common/elbs.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 166 Nov 20 16:17 env.properties
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 36 Nov 20 16:17 external_modules.tf -> ../config-common/external_modules.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 iam.tf -> ../config-common/iam.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 instances.tf -> ../config-common/instances.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 28 Nov 20 16:17 keypairs.tf -> ../config-common/keypairs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 34 Nov 20 16:17 launch_configs.tf -> ../config-common/launch_configs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 main.tf -> ../config-common/main.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 30 Nov 20 16:17 s3_buckets.tf -> ../config-common/s3_buckets.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 192 Nov 24 11:00 secrets_override.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 35 Nov 20 16:17 security_groups.tf -> ../config-common/security_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 26 Nov 20 16:17 templates -> ../config-common/templates
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 58915 Dec 15 10:53 terraform.tfstate
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 58916 Dec 15 10:50 terraform.tfstate.backup
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 1636 Dec 14 15:53 terraform.tfvars
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 variables.tf -> ../config-common/variables.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 vpc.tf -> ../config-common/vpc.tf
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ cd ..
garmstrong-ml:wcs-env-wxmix gary.armstrong$ cd config-common/
garmstrong-ml:config-common gary.armstrong$ ls -la
total 80
drwxr-xr-x 17 gary.armstrong TWC_NETOPS\Domain Users 578 Dec 14 15:38 .
drwxr-xr-x 8 gary.armstrong TWC_NETOPS\Domain Users 272 Dec 3 15:39 ..
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 0 Nov 20 16:00 autoscaling_groups.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 1721 Dec 14 15:51 bastion.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 0 Nov 20 16:00 dns.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 0 Nov 20 16:00 elbs.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 277 Nov 20 16:00 external_modules.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 1338 Dec 14 16:12 iam.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 2938 Dec 14 16:14 instances.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 118 Dec 3 09:19 keypairs.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 0 Nov 20 16:00 launch_configs.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 142 Nov 20 16:00 main.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 0 Nov 20 16:00 s3_buckets.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 4136 Dec 14 14:54 security_groups.tf
drwxr-xr-x 2 gary.armstrong TWC_NETOPS\Domain Users 68 Dec 3 09:52 templates
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 1488 Dec 14 16:09 variables.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 2942 Dec 11 11:07 vpc.tf
garmstrong-ml:config-common gary.armstrong$ cd ../config-qa-aws-us-east-1/
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ls -la
total 384
drwxr-xr-x 23 gary.armstrong TWC_NETOPS\Domain Users 782 Dec 14 15:39 .
drwxr-xr-x 8 gary.armstrong TWC_NETOPS\Domain Users 272 Dec 3 15:39 ..
drwxr-xr-x 3 gary.armstrong TWC_NETOPS\Domain Users 102 Nov 20 16:24 .terraform
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 38 Nov 20 16:17 autoscaling_groups.tf -> ../config-common/autoscaling_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 27 Dec 14 15:39 bastion.tf -> ../config-common/bastion.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 dns.tf -> ../config-common/dns.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 elbs.tf -> ../config-common/elbs.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 166 Nov 20 16:17 env.properties
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 36 Nov 20 16:17 external_modules.tf -> ../config-common/external_modules.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 iam.tf -> ../config-common/iam.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 instances.tf -> ../config-common/instances.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 28 Nov 20 16:17 keypairs.tf -> ../config-common/keypairs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 34 Nov 20 16:17 launch_configs.tf -> ../config-common/launch_configs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 main.tf -> ../config-common/main.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 30 Nov 20 16:17 s3_buckets.tf -> ../config-common/s3_buckets.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 192 Nov 24 11:00 secrets_override.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 35 Nov 20 16:17 security_groups.tf -> ../config-common/security_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 26 Nov 20 16:17 templates -> ../config-common/templates
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 58915 Dec 15 10:53 terraform.tfstate
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 58916 Dec 15 10:50 terraform.tfstate.backup
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 1636 Dec 14 15:53 terraform.tfvars
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 variables.tf -> ../config-common/variables.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 vpc.tf -> ../config-common/vpc.tf
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_instance.bastion: Refreshing state... (ID: i-2765b396)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_eip.bastion_eip
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "${aws_instance.bastion.id}"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
-/+ aws_instance.bastion
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.micro"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "1"
tags.Name: "" => "bastion-qa-useast1b-01"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.594606926: "" => "sg-94fae0f2"
+ aws_route53_record.bastion
fqdn: "" => "<computed>"
name: "" => "bastion-us-east-1"
records.#: "" => "<computed>"
ttl: "" => "300"
type: "" => "A"
Plan: 3 to add, 0 to change, 0 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform apply
aws_instance.bastion: Refreshing state... (ID: i-2765b396)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
aws_instance.bastion: Destroying...
aws_instance.bastion: Creating...
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.micro"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "1"
tags.Name: "" => "bastion-qa-useast1b-01"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.594606926: "" => "sg-94fae0f2"
aws_instance.bastion: Provisioning with 'chef'...
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 52.91.18.67
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 52.91.18.67
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 52.91.18.67
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 52.91.18.67
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connecting to remote host via SSH...
aws_instance.bastion (chef): Host: 52.91.18.67
aws_instance.bastion (chef): User: centos
aws_instance.bastion (chef): Password: false
aws_instance.bastion (chef): Private key: false
aws_instance.bastion (chef): SSH Agent: true
aws_instance.bastion (chef): Connected!
aws_instance.bastion (chef): % Total % Received % Xferd Average Speed Time Time Time Current
aws_instance.bastion (chef): Dload Upload Total Spent Left Speed
aws_instance.bastion (chef): 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
aws_instance.bastion (chef): 100 19958 100 19958 0 0 33927 0 --:--:-- --:--:-- --:--:-- 34000
aws_instance.bastion (chef): Getting information for chef stable 12.4.3 for el...
aws_instance.bastion (chef): downloading https://www.chef.io/stable/chef/metadata?v=12.4.3&p=el&pv=7&m=x86_64
aws_instance.bastion (chef): to file /tmp/install.sh.3680/metadata.txt
aws_instance.bastion (chef): trying curl...
aws_instance.bastion (chef): url https://opscode-omnibus-packages.s3.amazonaws.com/el/7/x86_64/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): md5 66f826b65ea42802b1f97fa7a355b3b5
aws_instance.bastion (chef): sha256 ae3b50e38120e62ab9e7a0e69792432d7eba2560a1dfc4f5fd4a72396a403245
aws_instance.bastion (chef): version 12.4.3downloaded metadata file looks valid...
aws_instance.bastion (chef): downloading https://opscode-omnibus-packages.s3.amazonaws.com/el/7/x86_64/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): to file /tmp/install.sh.3680/chef-12.4.3-1.el7.x86_64.rpm
aws_instance.bastion (chef): trying curl...
aws_instance.bastion (chef): Comparing checksum with sha256sum...
aws_instance.bastion (chef): Installing chef 12.4.3
aws_instance.bastion (chef): installing with rpm...
aws_instance.bastion (chef): warning: /tmp/install.sh.3680/chef-12.4.3-1.el7.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
aws_instance.bastion (chef): Preparing...
aws_instance.bastion (chef): ################################# [100%]
aws_instance.bastion (chef): Updating / installing...
aws_instance.bastion (chef): 1:chef-12.4.3-1.el7
aws_instance.bastion (chef): ( 1%)
aws_instance.bastion (chef): # ( 4%)
aws_instance.bastion (chef): ## ( 7%)
aws_instance.bastion (chef): ### ( 10%)
aws_instance.bastion (chef): ################ ( 49%)
aws_instance.bastion (chef): ################# ( 51%)
aws_instance.bastion (chef): ################## ( 54%)
aws_instance.bastion (chef): ##################### ( 63%)
aws_instance.bastion (chef): ####################### ( 69%)
aws_instance.bastion (chef): ######################## ( 72%)
aws_instance.bastion (chef): ######################### ( 75%)
aws_instance.bastion (chef): ########################## ( 78%)
aws_instance.bastion (chef): ############################ ( 84%)
aws_instance.bastion (chef): ############################# ( 87%)
aws_instance.bastion (chef): ############################## ( 90%)
aws_instance.bastion (chef): ############################### ( 93%)
aws_instance.bastion (chef): ################################ ( 96%)
aws_instance.bastion (chef): ################################# [100%]
aws_instance.bastion (chef): Thank you for installing Chef!
aws_instance.bastion (chef): Creating configuration files...
Error applying plan:
1 error(s) occurred:
* open /Users/gary.armstrong/.chef/platform-validator.pem: no such file or directory
Terraform does not automatically rollback in the face of errors.
Instead, your Terraform state file has been partially updated with
any resources that successfully completed. Please address the error
above and apply again to incrementally change your infrastructure.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ grep platform *
grep: templates: Is a directory
terraform.tfvars:bootstrap_chef_server = "https://chef.grid.weather.com/organizations/platform"
variables.tf: default = "platform-validator"
variables.tf: default = "~/.chef/platform-validator.pem"
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ grep obsqc *
grep: templates: Is a directory
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ls -la
total 384
drwxr-xr-x 23 gary.armstrong TWC_NETOPS\Domain Users 782 Dec 14 15:39 .
drwxr-xr-x 8 gary.armstrong TWC_NETOPS\Domain Users 272 Dec 3 15:39 ..
drwxr-xr-x 3 gary.armstrong TWC_NETOPS\Domain Users 102 Nov 20 16:24 .terraform
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 38 Nov 20 16:17 autoscaling_groups.tf -> ../config-common/autoscaling_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 27 Dec 14 15:39 bastion.tf -> ../config-common/bastion.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 dns.tf -> ../config-common/dns.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 elbs.tf -> ../config-common/elbs.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 166 Nov 20 16:17 env.properties
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 36 Nov 20 16:17 external_modules.tf -> ../config-common/external_modules.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 iam.tf -> ../config-common/iam.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 instances.tf -> ../config-common/instances.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 28 Nov 20 16:17 keypairs.tf -> ../config-common/keypairs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 34 Nov 20 16:17 launch_configs.tf -> ../config-common/launch_configs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 main.tf -> ../config-common/main.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 30 Nov 20 16:17 s3_buckets.tf -> ../config-common/s3_buckets.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 192 Nov 24 11:00 secrets_override.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 35 Nov 20 16:17 security_groups.tf -> ../config-common/security_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 26 Nov 20 16:17 templates -> ../config-common/templates
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 58914 Dec 15 11:40 terraform.tfstate
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 58915 Dec 15 11:37 terraform.tfstate.backup
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 1636 Dec 14 15:53 terraform.tfvars
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 variables.tf -> ../config-common/variables.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 vpc.tf -> ../config-common/vpc.tf
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ cat vpc.tf
##
## VPC - main
##
resource "aws_vpc" "main" {
cidr_block = "${var.vpc_cidr_block}"
# enable_dns_support = true
# enable_dns_hostnames = true
tags {
Name = "vpc-${var.project}-${var.region}"
}
}
output "VPC id" {
value = "${aws_vpc.main.id}"
}
##
## VPC Peering
##
resource "aws_vpc_peering_connection" "legacy_sun_vpc" {
peer_owner_id = "${var.legacy_account_id}"
peer_vpc_id = "${var.legacy_vpc_id}"
vpc_id = "${aws_vpc.main.id}"
auto_accept = true
}
##
## IGW - main
##
resource "aws_internet_gateway" "main" {
vpc_id = "${aws_vpc.main.id}"
tags {
Name = "igw-${var.project}-${var.region}"
}
}
##
## Public subnet
##
resource "aws_subnet" "public" {
count = "${length(split(",", var.public_cidr_blocks))}"
vpc_id = "${aws_vpc.main.id}"
cidr_block = "${element(split(",",var.public_cidr_blocks),count.index)}"
availability_zone = "${var.region}${element(split(",",var.zones),count.index)}"
map_public_ip_on_launch = false
tags {
Name = "sn-${var.project}-${var.region}-public-${element(split(",",var.zones),count.index)}"
}
}
resource "aws_route_table" "public" {
vpc_id = "${aws_vpc.main.id}"
route {
cidr_block = "0.0.0.0/0"
gateway_id = "${aws_internet_gateway.main.id}"
}
route {
cidr_block = "${var.legacy_vpc_cidr}"
vpc_peering_connection_id = "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
}
tags {
Name = "rtb-${var.project}-${var.region}-main"
}
}
resource "aws_route_table_association" "public" {
route_table_id = "${aws_route_table.public.id}"
subnet_id = "${element(aws_subnet.public.*.id, count.index)}"
count = "${length(split(",", var.public_cidr_blocks))}"
}
##
## Private subnet
##
resource "aws_subnet" "private" {
count = "${length(split(",", var.private_cidr_blocks))}"
vpc_id = "${aws_vpc.main.id}"
cidr_block = "${element(split(",",var.private_cidr_blocks),count.index)}"
availability_zone = "${var.region}${element(split(",",var.zones),count.index)}"
map_public_ip_on_launch = false
tags {
environment = "qa"
Name = "sn-${var.project}-${var.region}-private-${element(split(",",var.zones),count.index)}"
}
}
resource "aws_route_table" "private" {
vpc_id = "${aws_vpc.main.id}"
depends_on = ["aws_instance.nat"]
route {
cidr_block = "0.0.0.0/0"
instance_id = "${aws_instance.nat.id}"
}
route {
cidr_block = "${var.legacy_vpc_cidr}"
vpc_peering_connection_id = "${aws_vpc_peering_connection.legacy_sun_vpc.id}"
}
tags {
Name = "rtb-${var.project}-${var.region}-private"
}
}
resource "aws_route_table_association" "private" {
route_table_id = "${aws_route_table.private.id}"
subnet_id = "${element(aws_subnet.private.*.id, count.index)}"
count = "${length(split(",", var.private_cidr_blocks))}"
}
##
## Set main route table
##
resource "aws_main_route_table_association" "a" {
vpc_id = "${aws_vpc.main.id}"
route_table_id = "${aws_route_table.public.id}"
}
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ cat terraform.tfvars
environment = "qa"
region = "us-east-1"
#zones = "b,c,d,e"
zones = "b,c"
# us-east-1
vpc_cidr_block = "10.233.212.0/24"
# us-west-2
#vpc_cidr_block = "10.233.211.0/24"
public_cidr_blocks = "10.233.212.0/26,10.233.212.64/26"
private_cidr_blocks = "10.233.212.128/26,10.233.212.192/26"
# VPC Peering to SUN_FOD_QA_VPC
legacy_account_id = "133124267079"
legacy_vpc_id = "vpc-1033c37e"
legacy_vpc_cidr = "10.224.32.0/19"
wfh_ip = "99.170.166.187/32"
# WxMix instance
testnode_count = 3
head_count = 1
compute_count = 6
viewer_count = 1
# TODO - Get some correct CIDR
# SG stuff
ftp_cidr_blocks = "205.156.51.233/32,10.224.32.8/32,199.26.254.194/32"
ldm_port = 388
ldm_cidr_blocks = "96.8.80.0/20,10.0.0.0/8,52.22.139.84/32,52.70.108.250/32,54.164.35.174/32"
http_port = 80
#http_cidr_blocks = "96.8.80.0/20,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,3.4.128.0/18,50.192.63.89/32,54.191.161.136/32,54.191.221.241/32,54.208.110.10/32"
http_cidr_blocks = "96.8.80.0/20,10.0.0.0/8"
https_port = 443
https_cidr_blocks = "10.0.0.0/8"
postgres_port = 5432
postgres_cidr_blocks = "96.8.80.0/20,10.0.0.0/8"
rmq_port = 5672
rmq_cidr_blocks = "96.8.80.0/20,10.0.0.0/8"
rmqadmin_port = 15672
rmqadmin_cidr_blocks = "96.8.80.0/20,10.0.0.0/8"
perforce_port = 1666
perforce_cidr_blocks = "96.8.80.0/20,10.0.0.0/8"
# must be hvm
nat_instance_type = "t2.small"
# must be hvm
testnode_instance_type = "t2.small"
head_instance_type = "r3.2xlarge"
compute_instance_type = "r3.8xlarge"
viewer_instance_type = "i2.xlarge"
keypair_name = "sunfod-qa-us-east-1-general"
bootstrap_chef_server = "https://chef.grid.weather.com/organizations/platform"
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ cd ..
garmstrong-ml:wcs-env-wxmix gary.armstrong$ ls -la
total 16
drwxr-xr-x 8 gary.armstrong TWC_NETOPS\Domain Users 272 Dec 3 15:39 .
drwxr-xr-x 14 gary.armstrong TWC_NETOPS\Domain Users 476 Dec 15 10:55 ..
drwxr-xr-x 16 gary.armstrong TWC_NETOPS\Domain Users 544 Dec 15 08:34 .git
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 79 Dec 1 14:59 .gitignore
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 50 Nov 20 16:17 README.md
drwxr-xr-x 17 gary.armstrong TWC_NETOPS\Domain Users 578 Dec 14 15:38 config-common
drwxr-xr-x 22 gary.armstrong TWC_NETOPS\Domain Users 748 Dec 3 14:52 config-dev-aws-us-east-1
drwxr-xr-x 23 gary.armstrong TWC_NETOPS\Domain Users 782 Dec 14 15:39 config-qa-aws-us-east-1
garmstrong-ml:wcs-env-wxmix gary.armstrong$ cp -Rp config-qa-aws-us-east-1 config-qa-aws-us-west-2
garmstrong-ml:wcs-env-wxmix gary.armstrong$ cd config-qa-aws-us-west-2/
garmstrong-ml:config-qa-aws-us-west-2 gary.armstrong$ vim terraform.tfvars
garmstrong-ml:config-qa-aws-us-west-2 gary.armstrong$ terraform plan
There are warnings and/or errors related to your configuration. Please
fix these before continuing.
Errors:
* 3 error(s) occurred:
* Required variable not set: legacy_account_id
* Required variable not set: legacy_vpc_id
* Required variable not set: legacy_vpc_cidr
garmstrong-ml:config-qa-aws-us-west-2 gary.armstrong$ pwd
/Users/gary.armstrong/git-repos/wcs-env-wxmix/config-qa-aws-us-west-2
garmstrong-ml:config-qa-aws-us-west-2 gary.armstrong$ cd ../config-qa-aws-us-east-1/
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ls -la
total 384
drwxr-xr-x 23 gary.armstrong TWC_NETOPS\Domain Users 782 Dec 14 15:39 .
drwxr-xr-x 9 gary.armstrong TWC_NETOPS\Domain Users 306 Dec 15 14:26 ..
drwxr-xr-x 3 gary.armstrong TWC_NETOPS\Domain Users 102 Nov 20 16:24 .terraform
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 38 Nov 20 16:17 autoscaling_groups.tf -> ../config-common/autoscaling_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 27 Dec 14 15:39 bastion.tf -> ../config-common/bastion.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 dns.tf -> ../config-common/dns.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 elbs.tf -> ../config-common/elbs.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 166 Nov 20 16:17 env.properties
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 36 Nov 20 16:17 external_modules.tf -> ../config-common/external_modules.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 iam.tf -> ../config-common/iam.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 instances.tf -> ../config-common/instances.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 28 Nov 20 16:17 keypairs.tf -> ../config-common/keypairs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 34 Nov 20 16:17 launch_configs.tf -> ../config-common/launch_configs.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 24 Nov 20 16:17 main.tf -> ../config-common/main.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 30 Nov 20 16:17 s3_buckets.tf -> ../config-common/s3_buckets.tf
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 192 Nov 24 11:00 secrets_override.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 35 Nov 20 16:17 security_groups.tf -> ../config-common/security_groups.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 26 Nov 20 16:17 templates -> ../config-common/templates
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 58914 Dec 15 11:40 terraform.tfstate
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 58915 Dec 15 11:37 terraform.tfstate.backup
-rw-r--r-- 1 gary.armstrong TWC_NETOPS\Domain Users 1636 Dec 14 15:53 terraform.tfvars
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 29 Nov 20 16:17 variables.tf -> ../config-common/variables.tf
lrwxr-xr-x 1 gary.armstrong TWC_NETOPS\Domain Users 23 Nov 20 16:17 vpc.tf -> ../config-common/vpc.tf
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
aws_instance.bastion: Refreshing state... (ID: i-45db0af4)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_eip.bastion_eip
allocation_id: "" => "<computed>"
association_id: "" => "<computed>"
domain: "" => "<computed>"
instance: "" => "${aws_instance.bastion.id}"
network_interface: "" => "<computed>"
private_ip: "" => "<computed>"
public_ip: "" => "<computed>"
vpc: "" => "1"
-/+ aws_instance.bastion
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_type: "" => "t2.micro"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "1"
tags.Name: "" => "bastion-qa-useast1b-01"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.594606926: "" => "sg-94fae0f2"
+ aws_route53_record.bastion
fqdn: "" => "<computed>"
name: "" => "bastion-us-east-1"
records.#: "" => "<computed>"
ttl: "" => "300"
type: "" => "A"
Plan: 3 to add, 0 to change, 0 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ pwd
/Users/gary.armstrong/git-repos/wcs-env-wxmix/config-qa-aws-us-east-1
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ cd ..
garmstrong-ml:wcs-env-wxmix gary.armstrong$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: config-qa-aws-us-east-1/terraform.tfstate
modified: config-qa-aws-us-east-1/terraform.tfstate.backup
Untracked files:
(use "git add <file>..." to include in what will be committed)
config-qa-aws-us-west-2/
no changes added to commit (use "git add" and/or "git commit -a")
garmstrong-ml:wcs-env-wxmix gary.armstrong$ git add .
garmstrong-ml:wcs-env-wxmix gary.armstrong$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: config-qa-aws-us-east-1/terraform.tfstate
modified: config-qa-aws-us-east-1/terraform.tfstate.backup
new file: config-qa-aws-us-west-2/autoscaling_groups.tf
new file: config-qa-aws-us-west-2/bastion.tf
new file: config-qa-aws-us-west-2/dns.tf
new file: config-qa-aws-us-west-2/elbs.tf
new file: config-qa-aws-us-west-2/env.properties
new file: config-qa-aws-us-west-2/external_modules.tf
new file: config-qa-aws-us-west-2/iam.tf
new file: config-qa-aws-us-west-2/instances.tf
new file: config-qa-aws-us-west-2/keypairs.tf
new file: config-qa-aws-us-west-2/launch_configs.tf
new file: config-qa-aws-us-west-2/main.tf
new file: config-qa-aws-us-west-2/s3_buckets.tf
new file: config-qa-aws-us-west-2/security_groups.tf
new file: config-qa-aws-us-west-2/templates
new file: config-qa-aws-us-west-2/terraform.tfstate
new file: config-qa-aws-us-west-2/terraform.tfstate.backup
new file: config-qa-aws-us-west-2/terraform.tfvars
new file: config-qa-aws-us-west-2/variables.tf
new file: config-qa-aws-us-west-2/vpc.tf
garmstrong-ml:wcs-env-wxmix gary.armstrong$ git commit -m "Started us-west-2"
[master 4fe6703] Started us-west-2
21 files changed, 2552 insertions(+), 57 deletions(-)
create mode 120000 config-qa-aws-us-west-2/autoscaling_groups.tf
create mode 120000 config-qa-aws-us-west-2/bastion.tf
create mode 120000 config-qa-aws-us-west-2/dns.tf
create mode 120000 config-qa-aws-us-west-2/elbs.tf
create mode 100644 config-qa-aws-us-west-2/env.properties
create mode 120000 config-qa-aws-us-west-2/external_modules.tf
create mode 120000 config-qa-aws-us-west-2/iam.tf
create mode 120000 config-qa-aws-us-west-2/instances.tf
create mode 120000 config-qa-aws-us-west-2/keypairs.tf
create mode 120000 config-qa-aws-us-west-2/launch_configs.tf
create mode 120000 config-qa-aws-us-west-2/main.tf
create mode 120000 config-qa-aws-us-west-2/s3_buckets.tf
create mode 120000 config-qa-aws-us-west-2/security_groups.tf
create mode 120000 config-qa-aws-us-west-2/templates
create mode 100644 config-qa-aws-us-west-2/terraform.tfstate
create mode 100644 config-qa-aws-us-west-2/terraform.tfstate.backup
create mode 100644 config-qa-aws-us-west-2/terraform.tfvars
create mode 120000 config-qa-aws-us-west-2/variables.tf
create mode 120000 config-qa-aws-us-west-2/vpc.tf
garmstrong-ml:wcs-env-wxmix gary.armstrong$ git push
Counting objects: 7, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (7/7), done.
Writing objects: 100% (7/7), 6.66 KiB | 0 bytes/s, done.
Total 7 (delta 3), reused 0 (delta 0)
To git@github.com:TheWeatherCompany/wcs-env-wxmix.git
83f1d3b..4fe6703 master -> master
garmstrong-ml:wcs-env-wxmix gary.armstrong$ terraform plan
Error loading config: No Terraform configuration files found in directory: /Users/gary.armstrong/git-repos/wcs-env-wxmix
garmstrong-ml:wcs-env-wxmix gary.armstrong$ ls -la
total 16
drwxr-xr-x 9 gary.armstrong 1904466829 306 Dec 15 14:26 .
drwxr-xr-x 14 gary.armstrong 1904466829 476 Dec 15 10:55 ..
drwxr-xr-x 16 gary.armstrong 1904466829 544 Dec 16 09:28 .git
-rw-r--r-- 1 gary.armstrong 1904466829 79 Dec 1 14:59 .gitignore
-rw-r--r-- 1 gary.armstrong 1904466829 50 Nov 20 16:17 README.md
drwxr-xr-x 17 gary.armstrong 1904466829 578 Dec 14 15:38 config-common
drwxr-xr-x 22 gary.armstrong 1904466829 748 Dec 3 14:52 config-dev-aws-us-east-1
drwxr-xr-x 23 gary.armstrong 1904466829 782 Dec 14 15:39 config-qa-aws-us-east-1
drwxr-xr-x 23 gary.armstrong 1904466829 782 Dec 15 14:28 config-qa-aws-us-west-2
garmstrong-ml:wcs-env-wxmix gary.armstrong$ cd config-qa-aws-us-east-1/
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ls -la
total 384
drwxr-xr-x 23 gary.armstrong 1904466829 782 Dec 14 15:39 .
drwxr-xr-x 9 gary.armstrong 1904466829 306 Dec 15 14:26 ..
drwxr-xr-x 3 gary.armstrong 1904466829 102 Nov 20 16:24 .terraform
lrwxr-xr-x 1 gary.armstrong 1904466829 38 Nov 20 16:17 autoscaling_groups.tf -> ../config-common/autoscaling_groups.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 27 Dec 14 15:39 bastion.tf -> ../config-common/bastion.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 23 Nov 20 16:17 dns.tf -> ../config-common/dns.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 24 Nov 20 16:17 elbs.tf -> ../config-common/elbs.tf
-rw-r--r-- 1 gary.armstrong 1904466829 166 Nov 20 16:17 env.properties
lrwxr-xr-x 1 gary.armstrong 1904466829 36 Nov 20 16:17 external_modules.tf -> ../config-common/external_modules.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 23 Nov 20 16:17 iam.tf -> ../config-common/iam.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 29 Nov 20 16:17 instances.tf -> ../config-common/instances.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 28 Nov 20 16:17 keypairs.tf -> ../config-common/keypairs.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 34 Nov 20 16:17 launch_configs.tf -> ../config-common/launch_configs.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 24 Nov 20 16:17 main.tf -> ../config-common/main.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 30 Nov 20 16:17 s3_buckets.tf -> ../config-common/s3_buckets.tf
-rw-r--r-- 1 gary.armstrong 1904466829 192 Nov 24 11:00 secrets_override.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 35 Nov 20 16:17 security_groups.tf -> ../config-common/security_groups.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 26 Nov 20 16:17 templates -> ../config-common/templates
-rw-r--r-- 1 gary.armstrong 1904466829 58914 Dec 15 15:39 terraform.tfstate
-rw-r--r-- 1 gary.armstrong 1904466829 58914 Dec 15 15:39 terraform.tfstate.backup
-rw-r--r-- 1 gary.armstrong 1904466829 1636 Dec 14 15:53 terraform.tfvars
lrwxr-xr-x 1 gary.armstrong 1904466829 29 Nov 20 16:17 variables.tf -> ../config-common/variables.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 23 Nov 20 16:17 vpc.tf -> ../config-common/vpc.tf
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Error loading config: Error parsing /Users/gary.armstrong/git-repos/wcs-env-wxmix/config-qa-aws-us-east-1/instances.tf: Line 6, column 10: syntax error
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_instance.head
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.2xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-wxmix-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
- aws_security_group.bastion
Plan: 1 to add, 0 to change, 1 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_instance.head
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.2xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-head-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
- aws_security_group.bastion
Plan: 1 to add, 0 to change, 1 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_instance.compute.0
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.1
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.2
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.3
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-003"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.4
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-004"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.5
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-005"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.head
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.2xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-head-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.viewer
ami: "" => "ami-aa094ec2"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "i2.xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-viewer-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
- aws_security_group.bastion
Plan: 8 to add, 0 to change, 1 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_instance.compute.0
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.1
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.2
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.3
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-003"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.4
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-004"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.5
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-005"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.head
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.2xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-head-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.viewer
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "i2.xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-viewer-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
- aws_security_group.bastion
Plan: 8 to add, 0 to change, 1 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: ../config-common/bastion.tf
modified: ../config-common/instances.tf
no changes added to commit (use "git add" and/or "git commit -a")
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git add .
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: ../config-common/bastion.tf
modified: ../config-common/instances.tf
no changes added to commit (use "git add" and/or "git commit -a")
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git add ..
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: ../config-common/bastion.tf
modified: ../config-common/instances.tf
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git commit -m "Disabled bastion, setup full WxMix instance count"
[master 62e2940] Disabled bastion, setup full WxMix instance count
2 files changed, 57 insertions(+), 7 deletions(-)
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git status
On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
nothing to commit, working directory clean
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ /plan
-bash: /plan: No such file or directory
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_instance.compute.0
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.1
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.2
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.3
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-003"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.4
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-004"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.5
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-005"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.head
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.2xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-head-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.viewer
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "i2.xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-viewer-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
- aws_security_group.bastion
Plan: 8 to add, 0 to change, 1 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform apply
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git status
On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: ../config-common/instances.tf
no changes added to commit (use "git add" and/or "git commit -a")
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git add ..
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git status
On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: ../config-common/instances.tf
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git commit -m "Disabled testnode"
[master 575221e] Disabled testnode
1 file changed, 2 insertions(+), 2 deletions(-)
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git status
On branch master
Your branch is ahead of 'origin/master' by 2 commits.
(use "git push" to publish your local commits)
nothing to commit, working directory clean
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git push
Counting objects: 9, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (9/9), done.
Writing objects: 100% (9/9), 984 bytes | 0 bytes/s, done.
Total 9 (delta 7), reused 0 (delta 0)
To git@github.com:TheWeatherCompany/wcs-env-wxmix.git
4fe6703..575221e master -> master
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
There are warnings and/or errors related to your configuration. Please
fix these before continuing.
Errors:
* 1 error(s) occurred:
* null_resource.provision_testnode: missing dependency: aws_instance.testnode
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ aws_instance.compute.0
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.1
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.2
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.3
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-003"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.4
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-004"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.compute.5
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-005"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
+ aws_instance.head
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.2xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-head-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
- aws_instance.testnode.0
- aws_instance.testnode.1
- aws_instance.testnode.2
+ aws_instance.viewer
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "i2.xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-viewer-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
- aws_security_group.bastion
+ null_resource.provision_compute.0
+ null_resource.provision_compute.1
+ null_resource.provision_compute.2
+ null_resource.provision_compute.3
+ null_resource.provision_compute.4
+ null_resource.provision_compute.5
+ null_resource.provision_head
- null_resource.provision_testnode.0
- null_resource.provision_testnode.1
- null_resource.provision_testnode.2
+ null_resource.provision_viewer
Plan: 16 to add, 0 to change, 7 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git add ..
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ c/
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git commit -m "Implemented stub null_provisioners"
[master c468530] Implemented stub null_provisioners
1 file changed, 47 insertions(+)
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ git push
Counting objects: 4, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 472 bytes | 0 bytes/s, done.
Total 4 (delta 3), reused 0 (delta 0)
To git@github.com:TheWeatherCompany/wcs-env-wxmix.git
575221e..c468530 master -> master
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform apply
null_resource.provision_testnode.0: Refreshing state... (ID: 4560282439367661515)
null_resource.provision_testnode.2: Refreshing state... (ID: 7872609972906193189)
null_resource.provision_testnode.1: Refreshing state... (ID: 1361558103826360151)
aws_instance.testnode.1: Refreshing state... (ID: i-7f94f0c9)
aws_instance.testnode.2: Refreshing state... (ID: i-671ed6d6)
aws_instance.testnode.0: Refreshing state... (ID: i-641ed6d5)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
null_resource.provision_testnode.2: Destroying...
null_resource.provision_testnode.2: Destruction complete
null_resource.provision_testnode.1: Destroying...
null_resource.provision_testnode.1: Destruction complete
null_resource.provision_testnode.0: Destroying...
null_resource.provision_testnode.0: Destruction complete
aws_instance.testnode.1: Destroying...
aws_instance.testnode.2: Destroying...
aws_instance.testnode.0: Destroying...
aws_security_group.bastion: Destroying...
aws_instance.testnode.0: Destruction complete
aws_instance.testnode.2: Destruction complete
aws_instance.testnode.1: Destruction complete
aws_instance.viewer: Creating...
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "i2.xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-viewer-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
aws_instance.head: Creating...
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.2xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-head-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
aws_instance.compute.2: Creating...
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-002"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
aws_instance.compute.4: Creating...
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-004"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
aws_instance.compute.1: Creating...
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-001"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
aws_instance.compute.5: Creating...
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-005"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
aws_instance.compute.3: Creating...
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1c"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-06529970"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-003"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
aws_instance.compute.0: Creating...
ami: "" => "ami-61bbf104"
associate_public_ip_address: "" => "1"
availability_zone: "" => "us-east-1b"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
iam_instance_profile: "" => "wxmix-qa-us-east-1-wxmix_profile"
instance_type: "" => "r3.8xlarge"
key_name: "" => "sunfod-qa-us-east-1-general"
placement_group: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "1"
subnet_id: "" => "subnet-adfbe486"
tags.#: "" => "2"
tags.Billing: "" => "FOD"
tags.Name: "" => "wxmix-qa-compute-000"
tenancy: "" => "<computed>"
vpc_security_group_ids.#: "" => "2"
vpc_security_group_ids.2604585730: "" => "sg-4a342e2c"
vpc_security_group_ids.3187788851: "" => "sg-4d342e2b"
aws_instance.compute.1: Creation complete
aws_instance.viewer: Creation complete
null_resource.provision_viewer: Creating...
null_resource.provision_viewer: Provisioning with 'remote-exec'...
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
aws_instance.compute.0: Creation complete
aws_instance.compute.4: Creation complete
aws_instance.head: Creation complete
null_resource.provision_head: Creating...
null_resource.provision_head: Provisioning with 'remote-exec'...
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
aws_instance.compute.2: Creation complete
aws_instance.compute.3: Creation complete
aws_instance.compute.5: Creation complete
null_resource.provision_compute.0: Creating...
null_resource.provision_compute.1: Creating...
null_resource.provision_compute.3: Creating...
null_resource.provision_compute.5: Creating...
null_resource.provision_compute.4: Creating...
null_resource.provision_compute.2: Creating...
null_resource.provision_compute.0: Provisioning with 'remote-exec'...
null_resource.provision_compute.1: Provisioning with 'remote-exec'...
null_resource.provision_compute.3: Provisioning with 'remote-exec'...
null_resource.provision_compute.5: Provisioning with 'remote-exec'...
null_resource.provision_compute.4: Provisioning with 'remote-exec'...
null_resource.provision_compute.2: Provisioning with 'remote-exec'...
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
Error applying plan:
9 error(s) occurred:
* aws_security_group.bastion: DependencyViolation: resource sg-94fae0f2 has a dependent object
status code: 400, request id:
* dial tcp 52.90.89.115:22: i/o timeout
* dial tcp 54.172.150.140:22: i/o timeout
* dial tcp 54.174.10.138:22: i/o timeout
* dial tcp 54.173.92.78:22: i/o timeout
* dial tcp 54.236.199.35:22: i/o timeout
* dial tcp 54.174.237.74:22: i/o timeout
* dial tcp 54.236.106.197:22: i/o timeout
* dial tcp 54.174.111.104:22: i/o timeout
Terraform does not automatically rollback in the face of errors.
Instead, your Terraform state file has been partially updated with
any resources that successfully completed. Please address the error
above and apply again to incrementally change your infrastructure.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform help
usage: terraform [--version] [--help] <command> [<args>]
Available commands are:
apply Builds or changes infrastructure
destroy Destroy Terraform-managed infrastructure
get Download and install modules for the configuration
graph Create a visual graph of Terraform resources
init Initializes Terraform configuration from a module
output Read an output from a state file
plan Generate and show an execution plan
push Upload this Terraform module to Atlas to run
refresh Update local state file against real resources
remote Configure remote state storage
show Inspect Terraform state or plan
taint Manually mark a resource for recreation
version Prints the Terraform version
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ grep 'access to bastion' *
bastion.tf: description = "SSH access to bastion"
grep: templates: Is a directory
terraform.tfstate: "description": "SSH access to bastion",
terraform.tfstate.backup: "description": "SSH access to bastion",
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
null_resource.provision_compute.3: Refreshing state... (ID: 5349711034176369054)
null_resource.provision_viewer: Refreshing state... (ID: 8104465259171352512)
null_resource.provision_head: Refreshing state... (ID: 108384442662126374)
null_resource.provision_compute.2: Refreshing state... (ID: 1967017985745993691)
null_resource.provision_compute.1: Refreshing state... (ID: 7734851634547486845)
null_resource.provision_compute.0: Refreshing state... (ID: 3355860497809887275)
null_resource.provision_compute.4: Refreshing state... (ID: 6497317857757991527)
null_resource.provision_compute.5: Refreshing state... (ID: 1951315055904832441)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_instance.compute.0: Refreshing state... (ID: i-bac31a0b)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_instance.head: Refreshing state... (ID: i-b9c31a08)
aws_instance.compute.1: Refreshing state... (ID: i-0b046ebd)
aws_instance.compute.2: Refreshing state... (ID: i-b8c31a09)
aws_instance.compute.3: Refreshing state... (ID: i-461b71f0)
aws_instance.compute.4: Refreshing state... (ID: i-bbc31a0a)
aws_instance.compute.5: Refreshing state... (ID: i-0a046ebc)
aws_instance.viewer: Refreshing state... (ID: i-d6c31a67)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
- aws_security_group.bastion
-/+ null_resource.provision_compute.0
-/+ null_resource.provision_compute.1
-/+ null_resource.provision_compute.2
-/+ null_resource.provision_compute.3
-/+ null_resource.provision_compute.4
-/+ null_resource.provision_compute.5
-/+ null_resource.provision_head
-/+ null_resource.provision_viewer
Plan: 8 to add, 0 to change, 1 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform apply
null_resource.provision_viewer: Refreshing state... (ID: 8104465259171352512)
null_resource.provision_compute.3: Refreshing state... (ID: 5349711034176369054)
null_resource.provision_compute.5: Refreshing state... (ID: 1951315055904832441)
null_resource.provision_head: Refreshing state... (ID: 108384442662126374)
null_resource.provision_compute.2: Refreshing state... (ID: 1967017985745993691)
null_resource.provision_compute.4: Refreshing state... (ID: 6497317857757991527)
null_resource.provision_compute.1: Refreshing state... (ID: 7734851634547486845)
null_resource.provision_compute.0: Refreshing state... (ID: 3355860497809887275)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_instance.compute.1: Refreshing state... (ID: i-0b046ebd)
aws_instance.head: Refreshing state... (ID: i-b9c31a08)
aws_instance.compute.2: Refreshing state... (ID: i-b8c31a09)
aws_instance.compute.3: Refreshing state... (ID: i-461b71f0)
aws_instance.compute.4: Refreshing state... (ID: i-bbc31a0a)
aws_instance.compute.5: Refreshing state... (ID: i-0a046ebc)
aws_instance.compute.0: Refreshing state... (ID: i-bac31a0b)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_instance.viewer: Refreshing state... (ID: i-d6c31a67)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
null_resource.provision_head: Destroying...
null_resource.provision_viewer: Destroying...
null_resource.provision_compute.3: Destroying...
null_resource.provision_compute.1: Destroying...
null_resource.provision_compute.0: Destroying...
null_resource.provision_compute.4: Destroying...
null_resource.provision_compute.2: Destroying...
null_resource.provision_compute.5: Destroying...
aws_security_group.bastion: Destroying...
null_resource.provision_compute.0: Creating...
null_resource.provision_compute.1: Creating...
null_resource.provision_compute.3: Creating...
null_resource.provision_compute.5: Creating...
null_resource.provision_compute.2: Creating...
null_resource.provision_head: Creating...
null_resource.provision_compute.4: Creating...
null_resource.provision_viewer: Creating...
null_resource.provision_compute.0: Provisioning with 'remote-exec'...
null_resource.provision_compute.1: Provisioning with 'remote-exec'...
null_resource.provision_compute.3: Provisioning with 'remote-exec'...
null_resource.provision_compute.5: Provisioning with 'remote-exec'...
null_resource.provision_compute.2: Provisioning with 'remote-exec'...
null_resource.provision_head: Provisioning with 'remote-exec'...
null_resource.provision_compute.4: Provisioning with 'remote-exec'...
null_resource.provision_viewer: Provisioning with 'remote-exec'...
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
null_resource.provision_compute.0 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.0 (remote-exec): Host: 54.173.92.78
null_resource.provision_compute.0 (remote-exec): User: centos
null_resource.provision_compute.0 (remote-exec): Password: false
null_resource.provision_compute.0 (remote-exec): Private key: false
null_resource.provision_compute.0 (remote-exec): SSH Agent: true
null_resource.provision_head (remote-exec): Connecting to remote host via SSH...
null_resource.provision_head (remote-exec): Host: 54.172.150.140
null_resource.provision_head (remote-exec): User: centos
null_resource.provision_head (remote-exec): Password: false
null_resource.provision_head (remote-exec): Private key: false
null_resource.provision_head (remote-exec): SSH Agent: true
null_resource.provision_compute.1 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.1 (remote-exec): Host: 54.174.237.74
null_resource.provision_compute.1 (remote-exec): User: centos
null_resource.provision_compute.1 (remote-exec): Password: false
null_resource.provision_compute.1 (remote-exec): Private key: false
null_resource.provision_compute.1 (remote-exec): SSH Agent: true
null_resource.provision_compute.3 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.3 (remote-exec): Host: 54.236.199.35
null_resource.provision_compute.3 (remote-exec): User: centos
null_resource.provision_compute.3 (remote-exec): Password: false
null_resource.provision_compute.3 (remote-exec): Private key: false
null_resource.provision_compute.3 (remote-exec): SSH Agent: true
null_resource.provision_compute.2 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.2 (remote-exec): Host: 54.174.10.138
null_resource.provision_compute.2 (remote-exec): User: centos
null_resource.provision_compute.2 (remote-exec): Password: false
null_resource.provision_compute.2 (remote-exec): Private key: false
null_resource.provision_compute.2 (remote-exec): SSH Agent: true
null_resource.provision_compute.4 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.4 (remote-exec): Host: 54.174.111.104
null_resource.provision_compute.4 (remote-exec): User: centos
null_resource.provision_compute.4 (remote-exec): Password: false
null_resource.provision_compute.4 (remote-exec): Private key: false
null_resource.provision_compute.4 (remote-exec): SSH Agent: true
null_resource.provision_compute.5 (remote-exec): Connecting to remote host via SSH...
null_resource.provision_compute.5 (remote-exec): Host: 54.236.106.197
null_resource.provision_compute.5 (remote-exec): User: centos
null_resource.provision_compute.5 (remote-exec): Password: false
null_resource.provision_compute.5 (remote-exec): Private key: false
null_resource.provision_compute.5 (remote-exec): SSH Agent: true
null_resource.provision_viewer (remote-exec): Connecting to remote host via SSH...
null_resource.provision_viewer (remote-exec): Host: 52.90.89.115
null_resource.provision_viewer (remote-exec): User: centos
null_resource.provision_viewer (remote-exec): Password: false
null_resource.provision_viewer (remote-exec): Private key: false
null_resource.provision_viewer (remote-exec): SSH Agent: true
Error applying plan:
9 error(s) occurred:
* aws_security_group.bastion: DependencyViolation: resource sg-94fae0f2 has a dependent object
status code: 400, request id:
* dial tcp 54.172.150.140:22: i/o timeout
* dial tcp 52.90.89.115:22: i/o timeout
* dial tcp 54.173.92.78:22: i/o timeout
* dial tcp 54.174.237.74:22: i/o timeout
* dial tcp 54.236.199.35:22: i/o timeout
* dial tcp 54.174.10.138:22: i/o timeout
* dial tcp 54.174.111.104:22: i/o timeout
* dial tcp 54.236.106.197:22: i/o timeout
Terraform does not automatically rollback in the face of errors.
Instead, your Terraform state file has been partially updated with
any resources that successfully completed. Please address the error
above and apply again to incrementally change your infrastructure.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ grep bastion terraform.tfstate
"aws_instance.bastion": {
"aws_security_group.bastion",
"tags.Name": "bastion-qa-useast1b-01",
"aws_security_group.bastion": {
"description": "SSH access to bastion",
"name": "bastion",
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ ls -la
total 448
drwxr-xr-x 23 gary.armstrong 1904466829 782 Dec 14 15:39 .
drwxr-xr-x 9 gary.armstrong 1904466829 306 Dec 15 14:26 ..
drwxr-xr-x 3 gary.armstrong 1904466829 102 Nov 20 16:24 .terraform
lrwxr-xr-x 1 gary.armstrong 1904466829 38 Nov 20 16:17 autoscaling_groups.tf -> ../config-common/autoscaling_groups.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 27 Dec 14 15:39 bastion.tf -> ../config-common/bastion.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 23 Nov 20 16:17 dns.tf -> ../config-common/dns.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 24 Nov 20 16:17 elbs.tf -> ../config-common/elbs.tf
-rw-r--r-- 1 gary.armstrong 1904466829 166 Nov 20 16:17 env.properties
lrwxr-xr-x 1 gary.armstrong 1904466829 36 Nov 20 16:17 external_modules.tf -> ../config-common/external_modules.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 23 Nov 20 16:17 iam.tf -> ../config-common/iam.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 29 Nov 20 16:17 instances.tf -> ../config-common/instances.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 28 Nov 20 16:17 keypairs.tf -> ../config-common/keypairs.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 34 Nov 20 16:17 launch_configs.tf -> ../config-common/launch_configs.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 24 Nov 20 16:17 main.tf -> ../config-common/main.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 30 Nov 20 16:17 s3_buckets.tf -> ../config-common/s3_buckets.tf
-rw-r--r-- 1 gary.armstrong 1904466829 192 Nov 24 11:00 secrets_override.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 35 Nov 20 16:17 security_groups.tf -> ../config-common/security_groups.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 26 Nov 20 16:17 templates -> ../config-common/templates
-rw-r--r-- 1 gary.armstrong 1904466829 74780 Dec 16 12:13 terraform.tfstate
-rw-r--r-- 1 gary.armstrong 1904466829 74778 Dec 16 12:08 terraform.tfstate.backup
-rw-r--r-- 1 gary.armstrong 1904466829 1636 Dec 14 15:53 terraform.tfvars
lrwxr-xr-x 1 gary.armstrong 1904466829 29 Nov 20 16:17 variables.tf -> ../config-common/variables.tf
lrwxr-xr-x 1 gary.armstrong 1904466829 23 Nov 20 16:17 vpc.tf -> ../config-common/vpc.tf
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
Refreshing Terraform state prior to plan...
null_resource.provision_head: Refreshing state... (ID: 3347003265796665393)
null_resource.provision_compute.2: Refreshing state... (ID: 2300240029413059401)
null_resource.provision_viewer: Refreshing state... (ID: 8377737346495353904)
null_resource.provision_compute.5: Refreshing state... (ID: 1584225393821697118)
null_resource.provision_compute.3: Refreshing state... (ID: 4552810263215192033)
null_resource.provision_compute.4: Refreshing state... (ID: 2518413086555836856)
null_resource.provision_compute.1: Refreshing state... (ID: 4714376913901773149)
null_resource.provision_compute.0: Refreshing state... (ID: 7816368037367881724)
aws_vpc.main: Refreshing state... (ID: vpc-b89e07dc)
aws_iam_role.wxmix_role: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_role)
aws_iam_policy.wxmix_policy: Refreshing state... (ID: arn:aws:iam::133124267079:policy/wxmix-qa-us-east-1-wxmix_policy)
aws_security_group.bastion: Refreshing state... (ID: sg-94fae0f2)
aws_iam_instance_profile.wxmix_profile: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_profile)
aws_iam_policy_attachment.wxmix_policy-attach: Refreshing state... (ID: wxmix-qa-us-east-1-wxmix_policy-attach)
aws_security_group.admin_sg: Refreshing state... (ID: sg-4a342e2c)
aws_security_group.wxmix: Refreshing state... (ID: sg-4d342e2b)
aws_security_group.nat: Refreshing state... (ID: sg-4b342e2d)
aws_internet_gateway.main: Refreshing state... (ID: igw-e43bd280)
aws_subnet.private.0: Refreshing state... (ID: subnet-aefbe485)
aws_vpc_peering_connection.legacy_sun_vpc: Refreshing state... (ID: pcx-3e4c9257)
aws_subnet.public.0: Refreshing state... (ID: subnet-adfbe486)
aws_subnet.private.1: Refreshing state... (ID: subnet-07529971)
aws_subnet.public.1: Refreshing state... (ID: subnet-06529970)
aws_security_group_rule.wxmix_rmq: Refreshing state... (ID: sgrule-450900623)
aws_security_group_rule.wxmix_perforce: Refreshing state... (ID: sgrule-3492022185)
aws_security_group_rule.wxmix_ftp: Refreshing state... (ID: sgrule-3564642630)
aws_security_group_rule.wxmix_postgres: Refreshing state... (ID: sgrule-1253085172)
aws_security_group_rule.wxmix_subnet: Refreshing state... (ID: sgrule-1167425670)
aws_security_group_rule.wxmix_http: Refreshing state... (ID: sgrule-2696598707)
aws_security_group_rule.wxmix_https: Refreshing state... (ID: sgrule-1185019192)
aws_security_group_rule.wxmix_ldm: Refreshing state... (ID: sgrule-3482201414)
aws_security_group_rule.admin_ingress_ICMP: Refreshing state... (ID: sgrule-3038985898)
aws_security_group_rule.admin_ingress_22_offices: Refreshing state... (ID: sgrule-1622961307)
aws_route_table.public: Refreshing state... (ID: rtb-e8d5838c)
aws_security_group_rule.nat_egress_all: Refreshing state... (ID: sgrule-929703067)
aws_security_group_rule.admin_ingress_22_wfh_ip: Refreshing state... (ID: sgrule-2416654726)
aws_security_group_rule.admin_egress_all: Refreshing state... (ID: sgrule-1349328380)
aws_security_group_rule.nat_ingress_all: Refreshing state... (ID: sgrule-897666475)
aws_instance.head: Refreshing state... (ID: i-b9c31a08)
aws_instance.nat: Refreshing state... (ID: i-d2945c63)
aws_instance.viewer: Refreshing state... (ID: i-d6c31a67)
aws_instance.compute.2: Refreshing state... (ID: i-b8c31a09)
aws_instance.compute.3: Refreshing state... (ID: i-461b71f0)
aws_instance.compute.4: Refreshing state... (ID: i-bbc31a0a)
aws_instance.compute.5: Refreshing state... (ID: i-0a046ebc)
aws_instance.compute.0: Refreshing state... (ID: i-bac31a0b)
aws_instance.compute.1: Refreshing state... (ID: i-0b046ebd)
aws_main_route_table_association.a: Refreshing state... (ID: rtbassoc-f5c23892)
aws_route_table_association.public.0: Refreshing state... (ID: rtbassoc-f7c23890)
aws_route_table_association.public.1: Refreshing state... (ID: rtbassoc-f6c23891)
aws_eip.nat: Refreshing state... (ID: eipalloc-2208dd46)
aws_route_table.private: Refreshing state... (ID: rtb-81a8fee5)
aws_route_table_association.private.0: Refreshing state... (ID: rtbassoc-becb31d9)
aws_route_table_association.private.1: Refreshing state... (ID: rtbassoc-bdcb31da)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
- aws_security_group.bastion
-/+ null_resource.provision_compute.0
-/+ null_resource.provision_compute.1
-/+ null_resource.provision_compute.2
-/+ null_resource.provision_compute.3
-/+ null_resource.provision_compute.4
-/+ null_resource.provision_compute.5
-/+ null_resource.provision_head
-/+ null_resource.provision_viewer
Plan: 8 to add, 0 to change, 1 to destroy.
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ export
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ export TF_LOG=DEBUG
garmstrong-ml:config-qa-aws-us-east-1 gary.armstrong$ terraform plan
2015/12/16 12:29:41 [INFO] Terraform version: 0.6.6 60e76961c6251e7745aed821d2cbc1cd79be9bf9+CHANGES
2015/12/16 12:29:41 [DEBUG] Detected home directory from env var: /Users/gary.armstrong
2015/12/16 12:29:41 [DEBUG] Discovered plugin: atlas = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-atlas
2015/12/16 12:29:41 [DEBUG] Discovered plugin: aws = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-aws
2015/12/16 12:29:41 [DEBUG] Discovered plugin: azure = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-azure
2015/12/16 12:29:41 [DEBUG] Discovered plugin: cloudflare = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-cloudflare
2015/12/16 12:29:41 [DEBUG] Discovered plugin: cloudstack = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-cloudstack
2015/12/16 12:29:41 [DEBUG] Discovered plugin: consul = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-consul
2015/12/16 12:29:41 [DEBUG] Discovered plugin: digitalocean = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-digitalocean
2015/12/16 12:29:41 [DEBUG] Discovered plugin: dme = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-dme
2015/12/16 12:29:41 [DEBUG] Discovered plugin: dnsimple = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-dnsimple
2015/12/16 12:29:41 [DEBUG] Discovered plugin: docker = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-docker
2015/12/16 12:29:41 [DEBUG] Discovered plugin: google = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-google
2015/12/16 12:29:41 [DEBUG] Discovered plugin: heroku = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-heroku
2015/12/16 12:29:41 [DEBUG] Discovered plugin: mailgun = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-mailgun
2015/12/16 12:29:41 [DEBUG] Discovered plugin: null = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-null
2015/12/16 12:29:41 [DEBUG] Discovered plugin: openstack = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-openstack
2015/12/16 12:29:41 [DEBUG] Discovered plugin: packet = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-packet
2015/12/16 12:29:41 [DEBUG] Discovered plugin: rundeck = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-rundeck
2015/12/16 12:29:41 [DEBUG] Discovered plugin: template = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-template
2015/12/16 12:29:41 [DEBUG] Discovered plugin: terraform = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-terraform
2015/12/16 12:29:41 [DEBUG] Discovered plugin: vsphere = /Applications/terraform_0.6.6_darwin_amd64/terraform-provider-vsphere
2015/12/16 12:29:41 [DEBUG] Discovered plugin: chef = /Applications/terraform_0.6.6_darwin_amd64/terraform-provisioner-chef
2015/12/16 12:29:41 [DEBUG] Discovered plugin: file = /Applications/terraform_0.6.6_darwin_amd64/terraform-provisioner-file
2015/12/16 12:29:41 [DEBUG] Discovered plugin: local-exec = /Applications/terraform_0.6.6_darwin_amd64/terraform-provisioner-local-exec
2015/12/16 12:29:41 [DEBUG] Discovered plugin: remote-exec = /Applications/terraform_0.6.6_darwin_amd64/terraform-provisioner-remote-exec
2015/12/16 12:29:41 [DEBUG] Detected home directory from env var: /Users/gary.armstrong
2015/12/16 12:29:41 [DEBUG] Attempting to open CLI config file: /Users/gary.armstrong/.terraformrc
2015/12/16 12:29:41 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2015/12/16 12:29:41 [DEBUG] Detected home directory from env var: /Users/gary.armstrong
s_route_table.private
aws_subnet.private
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_subnet.public
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
aws_security_group.nat
aws_vpc.main
aws_security_group.wxmix
aws_vpc.main
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
aws_security_group_rule.nat_egress_all
aws_security_group.nat
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
var.vpc_cidr_block
aws_subnet.private
aws_vpc.main
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.public
aws_vpc.main
var.project
var.public_cidr_blocks
var.region
var.zones
aws_vpc.main
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
var.legacy_account_id
var.legacy_vpc_id
module.common-ami
var.region
module.common-vpc
null_resource.provision_compute
aws_instance.compute
var.compute_count
null_resource.provision_head
aws_instance.head
var.head_count
null_resource.provision_viewer
aws_instance.viewer
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
var.bootstrap_chef_server
var.compute_count
var.compute_instance_type
var.environment
var.ftp_cidr_blocks
var.head_count
var.head_instance_type
var.http_cidr_blocks
var.http_port
var.https_cidr_blocks
var.https_port
var.keypair_name
var.ldm_cidr_blocks
var.ldm_port
var.legacy_account_id
var.legacy_vpc_cidr
var.legacy_vpc_id
var.nat_instance_type
var.perforce_cidr_blocks
var.perforce_port
var.postgres_cidr_blocks
var.postgres_port
var.private_cidr_blocks
var.project
var.project_aws_access_key
var.project_aws_secret_key
var.public_cidr_blocks
var.region
var.rmq_cidr_blocks
var.rmq_port
var.rmqadmin_cidr_blocks
var.rmqadmin_port
var.testnode_count
var.testnode_instance_type
var.validation_client_name
var.validation_key_path
var.viewer_count
var.viewer_instance_type
var.vpc_cidr_block
var.wfh_ip
var.zone_id
var.zones
main
aws_vpc_peering_connection.legacy_sun_vpc
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_subnet.private
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_subnet.public
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
aws_security_group.bastion (orphan)
aws_vpc.main
aws_security_group.nat
aws_vpc.main
aws_security_group.wxmix
aws_vpc.main
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
aws_security_group_rule.nat_egress_all
aws_security_group.nat
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
var.vpc_cidr_block
aws_subnet.private
aws_vpc.main
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.public
aws_vpc.main
var.project
var.public_cidr_blocks
var.region
var.zones
aws_vpc.main
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
var.legacy_account_id
var.legacy_vpc_id
module.common-ami
var.region
module.common-vpc
null_resource.provision_compute
aws_instance.compute
var.compute_count
null_resource.provision_head
aws_instance.head
var.head_count
null_resource.provision_viewer
aws_instance.viewer
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
var.bootstrap_chef_server
var.compute_count
var.compute_instance_type
var.environment
var.ftp_cidr_blocks
var.head_count
var.head_instance_type
var.http_cidr_blocks
var.http_port
var.https_cidr_blocks
var.https_port
var.keypair_name
var.ldm_cidr_blocks
var.ldm_port
var.legacy_account_id
var.legacy_vpc_cidr
var.legacy_vpc_id
var.nat_instance_type
var.perforce_cidr_blocks
var.perforce_port
var.postgres_cidr_blocks
var.postgres_port
var.private_cidr_blocks
var.project
var.project_aws_access_key
var.project_aws_secret_key
var.public_cidr_blocks
var.region
var.rmq_cidr_blocks
var.rmq_port
var.rmqadmin_cidr_blocks
var.rmqadmin_port
var.testnode_count
var.testnode_instance_type
var.validation_client_name
var.validation_key_path
var.viewer_count
var.viewer_instance_type
var.vpc_cidr_block
var.wfh_ip
var.zone_id
var.zones
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_subnet.private
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_subnet.public
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
aws_security_group.bastion (orphan)
aws_vpc.main
aws_security_group.nat
aws_vpc.main
aws_security_group.wxmix
aws_vpc.main
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
aws_security_group_rule.nat_egress_all
aws_security_group.nat
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
var.vpc_cidr_block
aws_subnet.private
aws_vpc.main
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.public
aws_vpc.main
var.project
var.public_cidr_blocks
var.region
var.zones
aws_vpc.main
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
var.legacy_account_id
var.legacy_vpc_id
module.common-ami
var.region
module.common-vpc
null_resource.provision_compute
aws_instance.compute
var.compute_count
null_resource.provision_head
aws_instance.head
var.head_count
null_resource.provision_viewer
aws_instance.viewer
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
var.bootstrap_chef_server
var.compute_count
var.compute_instance_type
var.environment
var.ftp_cidr_blocks
var.head_count
var.head_instance_type
var.http_cidr_blocks
var.http_port
var.https_cidr_blocks
var.https_port
var.keypair_name
var.ldm_cidr_blocks
var.ldm_port
var.legacy_account_id
var.legacy_vpc_cidr
var.legacy_vpc_id
var.nat_instance_type
var.perforce_cidr_blocks
var.perforce_port
var.postgres_cidr_blocks
var.postgres_port
var.private_cidr_blocks
var.project
var.project_aws_access_key
var.project_aws_secret_key
var.public_cidr_blocks
var.region
var.rmq_cidr_blocks
var.rmq_port
var.rmqadmin_cidr_blocks
var.rmqadmin_port
var.testnode_count
var.testnode_instance_type
var.validation_client_name
var.validation_key_path
var.viewer_count
var.viewer_instance_type
var.vpc_cidr_block
var.wfh_ip
var.zone_id
var.zones
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_subnet.private
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_subnet.public
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
aws_security_group.bastion (orphan)
aws_vpc.main
aws_security_group.nat
aws_vpc.main
aws_security_group.wxmix
aws_vpc.main
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
aws_security_group_rule.nat_egress_all
aws_security_group.nat
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
var.vpc_cidr_block
aws_subnet.private
aws_vpc.main
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.public
aws_vpc.main
var.project
var.public_cidr_blocks
var.region
var.zones
aws_vpc.main
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
var.legacy_account_id
var.legacy_vpc_id
module.common-ami
var.region
module.common-vpc
null_resource.provision_compute
aws_instance.compute
var.compute_count
null_resource.provision_head
aws_instance.head
var.head_count
null_resource.provision_viewer
aws_instance.viewer
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
provider.null
var.bootstrap_chef_server
var.compute_count
var.compute_instance_type
var.environment
var.ftp_cidr_blocks
var.head_count
var.head_instance_type
var.http_cidr_blocks
var.http_port
var.https_cidr_blocks
var.https_port
var.keypair_name
var.ldm_cidr_blocks
var.ldm_port
var.legacy_account_id
var.legacy_vpc_cidr
var.legacy_vpc_id
var.nat_instance_type
var.perforce_cidr_blocks
var.perforce_port
var.postgres_cidr_blocks
var.postgres_port
var.private_cidr_blocks
var.project
var.project_aws_access_key
var.project_aws_secret_key
var.public_cidr_blocks
var.region
var.rmq_cidr_blocks
var.rmq_port
var.rmqadmin_cidr_blocks
var.rmqadmin_port
var.testnode_count
var.testnode_instance_type
var.validation_client_name
var.validation_key_path
var.viewer_count
var.viewer_instance_type
var.vpc_cidr_block
var.wfh_ip
var.zone_id
var.zones
instance.nat
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.public
aws_internet_gateway.main
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_subnet.private
provider.aws
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_subnet.public
provider.aws
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
provider.aws
aws_security_group.bastion (orphan)
aws_vpc.main
provider.aws
aws_security_group.nat
aws_vpc.main
provider.aws
aws_security_group.wxmix
aws_vpc.main
provider.aws
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
provider.aws
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.nat_egress_all
aws_security_group.nat
provider.aws
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
provider.aws
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
provider.aws
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
provider.aws
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
provider.aws
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
provider.aws
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
provider.aws
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
provider.aws
var.postgres_cidr_blocks
var.stance_profile.wxmix_profile
aws_iam_role.wxmix_role
provider.aws
var.environment
var.project
var.region
aws_iam_policy.wxmix_policy
provider.aws
var.environment
var.project
var.region
aws_iam_policy_attachment.wxmix_policy-attach
aws_iam_policy.wxmix_policy
aws_iam_role.wxmix_role
provider.aws
var.environment
var.project
var.region
aws_iam_role.wxmix_role
provider.aws
var.environment
var.project
var.region
aws_instance.bastion (orphan)
aws_security_group.admin_sg
aws_security_group.bastion (orphan)
aws_subnet.public
module.common-ami
provider.aws
aws_instance.compute
aws_iam_instance_profile.wxmix_profile
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami
provider.aws
var.compute_count
var.compute_instance_type
var.environment
var.keypair_name
var.project
var.region
var.zones
aws_instance.head
aws_iam_instance_profile.wxmix_profile
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami
provider.aws
var.environment
var.head_count
var.head_instance_type
var.keypair_name
var.project
var.region
var.zones
aws_instance.nat
aws_security_group.admin_sg
aws_security_group.nat
aws_subnet.public
module.common-ami
provider.aws
var.environment
var.keypair_name
var.nat_instance_type
var.project
var.region
var.zones
aws_instance.viewer
aws_iam_instance_profile.wxmix_profile
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami
provider.aws
var.environment
var.keypair_name
var.project
var.region
var.viewer_count
var.viewer_instance_type
var.zones
aws_internet_gateway.main
aws_vpc.main
provider.aws
var.project
var.region
aws_main_route_table_association.a
aws_route_table.public
aws_vpc.main
provider.aws
aws_route_table.private
aws_instance.nat
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.public
aws_internet_gateway.main
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_subnet.private
provider.aws
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_subnet.public
provider.aws
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
provider.aws
aws_security_group.bastion (orphan)
aws_vpc.main
provider.aws
aws_security_group.nat
aws_vpc.main
provider.aws
aws_security_group.wxmix
aws_vpc.main
provider.aws
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
provider.aws
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.nat_egress_all
aws_security_group.nat
provider.aws
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
provider.aws
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
provider.aws
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
provider.aws
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
provider.aws
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
provider.aws
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
provider.aws
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
provider.aws
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
provider.aws
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
provider.aws
var.vpc_cidr_block
aws_subnet.private
aws_vpc.main
provider.aws
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.public
aws_vpc.main
provider.aws
var.project
var.public_cidr_blocks
var.region
var.zones
aws_vpc.main
provider.aws
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
provider.aws
var.legacy_account_id
var.legacy_vpc_id
module.common-ami
var.region
module.common-vpc
null_resource.provision_compute
aws_instance.compute
provider.null
var.compute_count
null_resource.provision_head
aws_instance.head
provider.null
var.head_count
null_resource.provision_viewer
aws_instance.viewer
provider.null
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
provider.null
var.bootstrap_chef_server
var.compute_count
var.compute_instance_type
var.environment
var.ftp_cidr_blocks
var.head_count
var.head_instance_type
var.http_cidr_blocks
var.http_port
var.https_cidr_blocks
var.https_port
var.keypair_name
var.ldm_cidr_blocks
var.ldm_port
var.legacy_account_id
var.legacy_vpc_cidr
var.legacy_vpc_id
var.nat_instance_type
var.perforce_cidr_blocks
var.perforce_port
var.postgres_cidr_blocks
var.postgres_port
var.private_cidr_blocks
var.project
var.project_aws_access_key
var.project_aws_secret_key
var.public_cidr_blocks
var.region
var.rmq_cidr_blocks
var.rmq_port
var.rmqadmin_cidr_blocks
var.rmqadmin_port
var.testnode_count
var.testnode_instance_type
var.validation_client_name
var.validation_key_path
var.viewer_count
var.viewer_instance_type
var.vpc_cidr_block
var.wfh_ip
var.zone_id
var.zones
ate
aws_instance.nat
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.public
aws_internet_gateway.main
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_subnet.private
provider.aws
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_subnet.public
provider.aws
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
provider.aws
aws_security_group.bastion (orphan)
aws_vpc.main
provider.aws
aws_security_group.nat
aws_vpc.main
provider.aws
aws_security_group.wxmix
aws_vpc.main
provider.aws
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
provider.aws
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.nat_egress_all
aws_security_group.nat
provider.aws
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
provider.aws
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
provider.aws
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
provider.aws
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
provider.aws
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
provider.aws
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
provider.aws
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
provider.aws
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
provider.aws
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
provider.aws
var.vpc_cidr_block
aws_subnet.private
aws_vpc.main
provider.aws
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.public
aws_vpc.main
provider.aws
var.project
var.public_cidr_blocks
var.region
var.zones
aws_vpc.main
provider.aws
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
provider.aws
var.legacy_account_id
var.legacy_vpc_id
module.common-ami
var.region
module.common-vpc
null_resource.provision_compute
aws_instance.compute
provider.null
var.compute_count
null_resource.provision_head
aws_instance.head
provider.null
var.head_count
null_resource.provision_viewer
aws_instance.viewer
provider.null
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
provider.null
provisioner.chef
provisioner.file
provisioner.local-exec
provisioner.remote-exec
var.bootstrap_chef_server
var.compute_count
var.compute_instance_type
var.environment
var.ftp_cidr_blocks
var.head_count
var.head_instance_type
var.http_cidr_blocks
var.http_port
var.https_cidr_blocks
var.https_port
var.keypair_name
var.ldm_cidr_blocks
var.ldm_port
var.legacy_account_id
var.legacy_vpc_cidr
var.legacy_vpc_id
var.nat_instance_type
var.perforce_cidr_blocks
var.perforce_port
var.postgres_cidr_blocks
var.postgres_port
var.private_cidr_blocks
var.project
var.project_aws_access_key
var.project_aws_secret_key
var.public_cidr_blocks
var.region
var.rmq_cidr_blocks
var.rmq_port
var.rmqadmin_cidr_blocks
var.rmqadmin_port
var.testnode_count
var.testnode_instance_type
var.validation_client_name
var.validation_key_path
var.viewer_count
var.viewer_instance_type
var.vpc_cidr_block
var.wfh_ip
var.zone_id
var.zones
ws_instance.nat
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.public
aws_internet_gateway.main
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_subnet.private
provider.aws
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_subnet.public
provider.aws
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
provider.aws
aws_security_group.bastion (orphan)
aws_vpc.main
provider.aws
aws_security_group.nat
aws_vpc.main
provider.aws
aws_security_group.wxmix
aws_vpc.main
provider.aws
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
provider.aws
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.nat_egress_all
aws_security_group.nat
provider.aws
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
provider.aws
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
provider.aws
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
provider.aws
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
provider.aws
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
provider.aws
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
provider.aws
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
provider.aws
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
provider.aws
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
provider.aws
var.vpc_cidr_block
aws_subnet.private
aws_vpc.main
provider.aws
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.public
aws_vpc.main
provider.aws
var.project
var.public_cidr_blocks
var.region
var.zones
aws_vpc.main
provider.aws
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
provider.aws
var.legacy_account_id
var.legacy_vpc_id
module.common-ami
var.region
module.common-vpc
null_resource.provision_compute
aws_instance.compute
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_head
aws_instance.head
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_viewer
aws_instance.viewer
provider.null
provisioner.remote-exec
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
provider.null
provisioner.chef
provisioner.file
provisioner.local-exec
provisioner.remote-exec
var.bootstrap_chef_server
var.compute_count
var.compute_instance_type
var.environment
var.ftp_cidr_blocks
var.head_count
var.head_instance_type
var.http_cidr_blocks
var.http_port
var.https_cidr_blocks
var.https_port
var.keypair_name
var.ldm_cidr_blocks
var.ldm_port
var.legacy_account_id
var.legacy_vpc_cidr
var.legacy_vpc_id
var.nat_instance_type
var.perforce_cidr_blocks
var.perforce_port
var.postgres_cidr_blocks
var.postgres_port
var.private_cidr_blocks
var.project
var.project_aws_access_key
var.project_aws_secret_key
var.public_cidr_blocks
var.region
var.rmq_cidr_blocks
var.rmq_port
var.rmqadmin_cidr_blocks
var.rmqadmin_port
var.testnode_count
var.testnode_instance_type
var.validation_client_name
var.validation_key_path
var.viewer_count
var.viewer_instance_type
var.vpc_cidr_block
var.wfh_ip
var.zone_id
var.zones
2015/12/16 12:29:41 [DEBUG] vertex module.common-ami: static expanding
2015/12/16 12:29:41 [DEBUG] vertex module.common-vpc: static expanding
pc.main
provider.aws
aws_route_table.private
aws_instance.nat
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.public
aws_internet_gateway.main
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_subnet.private
provider.aws
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_subnet.public
provider.aws
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
provider.aws
aws_security_group.bastion (orphan)
aws_vpc.main
provider.aws
aws_security_group.nat
aws_vpc.main
provider.aws
aws_security_group.wxmix
aws_vpc.main
provider.aws
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc (expanded)
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
provider.aws
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.nat_egress_all
aws_security_group.nat
provider.aws
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
provider.aws
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
provider.aws
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
provider.aws
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
provider.aws
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
provider.aws
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
provider.aws
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
provider.aws
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
provider.aws
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
provider.aws
var.vpc_cidr_block
aws_subnet.private
aws_vpc.main
provider.aws
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.public
aws_vpc.main
provider.aws
var.project
var.public_cidr_blocks
var.region
var.zones
aws_vpc.main
provider.aws
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
provider.aws
var.legacy_account_id
var.legacy_vpc_id
module.common-ami (expanded)
var.region
module.common-vpc (expanded)
null_resource.provision_compute
aws_instance.compute
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_head
aws_instance.head
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_viewer
aws_instance.viewer
provider.null
provisioner.remote-exec
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
provider.null
provisioner.chef
provisioner.file
provisioner.local-exec
provisioner.remote-exec
var.bootstrap_chef_server
var.compute_count
var.compute_instance_type
var.environment
var.ftp_cidr_blocks
var.head_count
var.head_instance_type
var.http_cidr_blocks
var.http_port
var.https_cidr_blocks
var.https_port
var.keypair_name
var.ldm_cidr_blocks
var.ldm_port
var.legacy_account_id
var.legacy_vpc_cidr
var.legacy_vpc_id
var.nat_instance_type
var.perforce_cidr_blocks
var.perforce_port
var.postgres_cidr_blocks
var.postgres_port
var.private_cidr_blocks
var.project
var.project_aws_access_key
var.project_aws_secret_key
var.public_cidr_blocks
var.region
var.rmq_cidr_blocks
var.rmq_port
var.rmqadmin_cidr_blocks
var.rmqadmin_port
var.testnode_count
var.testnode_instance_type
var.validation_client_name
var.validation_key_path
var.viewer_count
var.viewer_instance_type
var.vpc_cidr_block
var.wfh_ip
var.zone_id
var.zones
te_table_association.a
aws_route_table.public
aws_vpc.main
provider.aws
aws_route_table.private
aws_instance.nat
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.public
aws_internet_gateway.main
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_subnet.private
provider.aws
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_subnet.public
provider.aws
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
provider.aws
aws_security_group.bastion (orphan)
aws_vpc.main
provider.aws
aws_security_group.nat
aws_vpc.main
provider.aws
aws_security_group.wxmix
aws_vpc.main
provider.aws
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc.output.twc_cidr_blocks_offices
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
provider.aws
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.nat_egress_all
aws_security_group.nat
provider.aws
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
provider.aws
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
provider.aws
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
provider.aws
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
provider.aws
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
provider.aws
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
provider.aws
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
provider.aws
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
provider.aws
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
provider.aws
var.vpc_cidr_block
aws_subnet.private
aws_vpc.main
provider.aws
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.public
aws_vpc.main
provider.aws
var.project
var.public_cidr_blocks
var.region
var.zones
aws_vpc.main
provider.aws
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
provider.aws
var.legacy_account_id
var.legacy_vpc_id
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.region
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.region
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.region
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.region
module.common-ami.output.amis_grid_stable
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-vpc.output.grid_gem_external_ips
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
module.common-vpc.plan-destroy
module.common-vpc.provisioner.chef
module.common-vpc.provisioner.file
module.common-vpc.provisioner.local-exec
module.common-vpc.provisioner.remote-exec
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.var.twc_cidr_blocks_offices
null_resource.provision_compute
aws_instance.compute
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_head
aws_instance.head
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_viewer
aws_instance.viewer
provider.null
provisioner.remote-exec
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
provider.null
provisioner.chef
provisioner.file
provisioner.local-exec
provisioner.remote-exec
root
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.output.amis_grid_stable
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-vpc.output.grid_gem_external_ips
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.provisioner.chef
module.common-vpc.provisioner.file
module.common-vpc.provisioner.local-exec
module.common-vpc.provisioner.remote-exec
var.bootstrap_chef_server
var.compute_count
var.compute_instance_type
var.environment
var.ftp_cidr_blocks
var.head_count
var.head_instance_type
var.http_cidr_blocks
var.http_port
var.https_cidr_blocks
var.https_port
var.keypair_name
var.ldm_cidr_blocks
var.ldm_port
var.legacy_account_id
var.legacy_vpc_cidr
var.legacy_vpc_id
var.nat_instance_type
var.perforce_cidr_blocks
var.perforce_port
var.postgres_cidr_blocks
var.postgres_port
var.private_cidr_blocks
var.project
var.project_aws_access_key
var.project_aws_secret_key
var.public_cidr_blocks
var.region
var.rmq_cidr_blocks
var.rmq_port
var.rmqadmin_cidr_blocks
var.rmqadmin_port
var.testnode_count
var.testnode_instance_type
var.validation_client_name
var.validation_key_path
var.viewer_count
var.viewer_instance_type
var.vpc_cidr_block
var.wfh_ip
var.zone_id
var.zones
hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.project
var.region
var.viewer_count
var.viewer_instance_type
var.zones
aws_internet_gateway.main
aws_vpc.main
provider.aws
var.project
var.region
aws_main_route_table_association.a
aws_route_table.public
aws_vpc.main
provider.aws
aws_route_table.private
aws_instance.nat
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.public
aws_internet_gateway.main
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_subnet.private
provider.aws
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_subnet.public
provider.aws
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
provider.aws
aws_security_group.bastion (orphan)
aws_vpc.main
provider.aws
aws_security_group.nat
aws_vpc.main
provider.aws
aws_security_group.wxmix
aws_vpc.main
provider.aws
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
provider.aws
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.nat_egress_all
aws_security_group.nat
provider.aws
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
provider.aws
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
provider.aws
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
provider.aws
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
provider.aws
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
provider.aws
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
provider.aws
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
provider.aws
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
provider.aws
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
provider.aws
var.vpc_cidr_block
aws_subnet.private
aws_vpc.main
provider.aws
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.public
aws_vpc.main
provider.aws
var.project
var.public_cidr_blocks
var.region
var.zones
aws_vpc.main
provider.aws
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
provider.aws
var.legacy_account_id
var.legacy_vpc_id
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_grid_stable
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-vpc.output.grid_gem_external_ips
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
module.common-vpc.plan-destroy
module.common-vpc.provisioner.chef
module.common-vpc.provisioner.file
module.common-vpc.provisioner.local-exec
module.common-vpc.provisioner.remote-exec
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.var.twc_cidr_blocks_offices
null_resource.provision_compute
aws_instance.compute
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_head
aws_instance.head
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_viewer
aws_instance.viewer
provider.null
provisioner.remote-exec
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
provider.null
provisioner.chef
provisioner.file
provisioner.local-exec
provisioner.remote-exec
root
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.output.amis_comvar.region
aws_iam_policy.wxmix_policy
provider.aws
var.environment
var.project
var.region
aws_iam_policy_attachment.wxmix_policy-attach
aws_iam_policy.wxmix_policy
aws_iam_role.wxmix_role
provider.aws
var.environment
var.project
var.region
aws_iam_role.wxmix_role
provider.aws
var.environment
var.project
var.region
aws_instance.bastion (orphan)
aws_security_group.admin_sg
aws_security_group.bastion (orphan)
aws_subnet.public
provider.aws
aws_instance.compute
aws_iam_instance_profile.wxmix_profile
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.compute_count
var.compute_instance_type
var.environment
var.keypair_name
var.project
var.region
var.zones
aws_instance.head
aws_iam_instance_profile.wxmix_profile
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.head_count
var.head_instance_type
var.keypair_name
var.project
var.region
var.zones
aws_instance.nat
aws_security_group.admin_sg
aws_security_group.nat
aws_subnet.public
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.nat_instance_type
var.project
var.region
var.zones
aws_instance.viewer
aws_iam_instance_profile.wxmix_profile
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.project
var.region
var.viewer_count
var.viewer_instance_type
var.zones
aws_internet_gateway.main
aws_vpc.main
provider.aws
var.project
var.region
aws_main_route_table_association.a
aws_route_table.public
aws_vpc.main
provider.aws
aws_route_table.private
aws_instance.nat
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.public
aws_internet_gateway.main
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_subnet.private
provider.aws
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_subnet.public
provider.aws
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
provider.aws
aws_security_group.bastion (orphan)
aws_vpc.main
provider.aws
aws_security_group.nat
aws_vpc.main
provider.aws
aws_security_group.wxmix
aws_vpc.main
provider.aws
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
provider.aws
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.nat_egress_all
aws_security_group.nat
provider.aws
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
provider.aws
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
provider.aws
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
provider.aws
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
provider.aws
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
provider.aws
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
provider.aws
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
provider.aws
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
provider.aws
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
provider.aws
var.vpc_cidr_block
aws_subnet.private
aws_vpc.main
provider.aws
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.public
aws_vpc.main
provider.aws
var.project
var.public_cidr_blocks
var.region
var.zones
aws_vpc.main
provider.aws
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
provider.aws
var.legacy_account_id
var.legacy_vpc_id
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_grid_stable
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-vpc.output.grid_gem_external_ips
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
module.common-vpc.plan-destroy
module.common-vpc.provisioner.chef
module.common-vpc.provisioner.file
module.common-vpc.provisioner.local-exec
module.common-vpc.provisioner.remote-exec
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.var.twc_cidr_blocks_offices
null_resource.provision_compute
aws_instance.compute
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_head
aws_instance.head
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_viewer
aws_instance.viewer
provider.null
provisioner.remote-exec
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
provider.null
provisioner.chef
provisioner.file
provisioner.local-exec
provisioner.remote-exec
root
aws_eip.nat
aws_iam_policy_attachment.wxmix_policy-attach
aws_instance.bastion (orphan)
aws_main_route_table_association.a
aws_route_table_association.private
aws_route_table_association.public
aws_security_group_rule.admin_egress_all
aws_security_group_rule.admin_ingress_22_offices
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group_rule.nat_egress_all
aws_security_group_rule.nat_ingress_all
aws_security_group_rule.wxmix_ftp
aws_security_group_rule.wxmix_http
aws_security_group_rule.wxmix_https
aws_security_group_rule.wxmix_ldm
aws_security_group_rule.wxmix_perforce
aws_security_group_rule.wxmix_postgres
aws_security_group_rule.wxmix_rmq
aws_security_group_rule.wxmix_subnet
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.output.amis_grid_stable
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
module.common-vpc.output.grid_gem_external_ips
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.plan-destroy
module.common-vpc.provisioner.chef
module.common-vpc.provisioner.file
module.common-vpc.provisioner.local-exec
module.common-vpc.provisioner.remote-exec
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.var.twc_cidr_blocks_offices
null_resource.provision_compute
null_resource.provision_head
null_resource.provision_viewer
output.VPC id
provisioner.chef
provisioner.file
provisioner.local-exec
var.bootstrap_chef_server
var.region
var.rmqadmin_cidr_blocks
var.rmqadmin_port
var.testnode_count
var.testnode_instance_type
var.validation_client_name
var.validation_key_path
var.zone_id
var.bootstrap_chef_server
var.compute_count
var.compute_instance_type
var.e_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.head_count
var.head_instance_type
var.keypair_name
var.project
var.region
var.zones
aws_instance.nat
aws_security_group.admin_sg
aws_security_group.nat
aws_subnet.public
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.nat_instance_type
var.project
var.region
var.zones
aws_instance.viewer
aws_iam_instance_profile.wxmix_profile
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.project
var.region
var.viewer_count
var.viewer_instance_type
var.zones
aws_internet_gateway.main
aws_vpc.main
provider.aws
var.project
var.region
aws_main_route_table_association.a
aws_route_table.public
aws_vpc.main
provider.aws
aws_route_table.private
aws_instance.nat
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.public
aws_internet_gateway.main
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_subnet.private
provider.aws
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_subnet.public
provider.aws
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
provider.aws
aws_security_group.bastion (orphan)
aws_vpc.main
provider.aws
aws_security_group.nat
aws_vpc.main
provider.aws
aws_security_group.wxmix
aws_vpc.main
provider.aws
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
provider.aws
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.nat_egress_all
aws_security_group.nat
provider.aws
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
provider.aws
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
provider.aws
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
provider.aws
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
provider.aws
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
provider.aws
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
provider.aws
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
provider.aws
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
provider.aws
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
provider.aws
var.vpc_cidr_block
aws_subnet.private
aws_vpc.main
provider.aws
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.public
aws_vpc.main
provider.aws
var.project
var.public_cidr_blocks
var.region
var.zones
aws_vpc.main
provider.aws
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
provider.aws
var.legacy_account_id
var.legacy_vpc_id
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_grid_stable
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-vpc.output.grid_gem_external_ips
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
module.common-vpc.plan-destroy
module.common-vpc.provisioner.chef
module.common-vpc.provisioner.file
module.common-vpc.provisioner.local-exec
module.common-vpc.provisioner.remote-exec
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.var.twc_cidr_blocks_offices
null_resource.provision_compute
aws_instance.compute
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_head
aws_instance.head
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_viewer
aws_instance.viewer
provider.null
provisioner.remote-exec
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
provider.null
provisioner.chef
provisioner.file
provisioner.local-exec
provisioner.remote-exec
root
aws_eip.nat
aws_iam_policy_attachment.wxmix_policy-attach
aws_instance.bastion (orphan)
aws_main_route_table_association.a
aws_route_table_association.private
aws_route_table_association.public
aws_security_group_rule.admin_egress_all
aws_security_group_rule.admin_ingress_22_offices
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group_rule.nat_egress_all
aws_security_group_rule.nat_ingress_all
aws_security_group_rule.wxmix_ftp
aws_security_group_rule.wxmix_http
aws_security_group_rule.wxmix_https
aws_security_group_rule.wxmix_ldm
aws_security_group_rule.wxmix_perforce
aws_security_group_rule.wxmix_postgres
aws_security_group_rule.wxmix_rmq
aws_security_group_rule.wxmix_subnet
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.output.amis_grid_stable
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_communityent
var.project
var.region
aws_iam_policy_attachment.wxmix_policy-attach
aws_iam_policy.wxmix_policy
aws_iam_role.wxmix_role
provider.aws
var.environment
var.project
var.region
aws_iam_role.wxmix_role
provider.aws
var.environment
var.project
var.region
aws_instance.bastion (orphan)
aws_security_group.admin_sg
aws_security_group.bastion (orphan)
aws_subnet.public
provider.aws
aws_instance.compute
aws_iam_instance_profile.wxmix_profile
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.compute_count
var.compute_instance_type
var.environment
var.keypair_name
var.project
var.region
var.zones
aws_instance.head
aws_iam_instance_profile.wxmix_profile
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.head_count
var.head_instance_type
var.keypair_name
var.project
var.region
var.zones
aws_instance.nat
aws_security_group.admin_sg
aws_security_group.nat
aws_subnet.public
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.nat_instance_type
var.project
var.region
var.zones
aws_instance.viewer
aws_iam_instance_profile.wxmix_profile
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.project
var.region
var.viewer_count
var.viewer_instance_type
var.zones
aws_internet_gateway.main
aws_vpc.main
provider.aws
var.project
var.region
aws_main_route_table_association.a
aws_route_table.public
aws_vpc.main
provider.aws
aws_route_table.private
aws_instance.nat
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.public
aws_internet_gateway.main
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_subnet.private
provider.aws
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_subnet.public
provider.aws
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
provider.aws
aws_security_group.bastion (orphan)
aws_vpc.main
provider.aws
aws_security_group.nat
aws_vpc.main
provider.aws
aws_security_group.wxmix
aws_vpc.main
provider.aws
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
provider.aws
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.nat_egress_all
aws_security_group.nat
provider.aws
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
provider.aws
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
provider.aws
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
provider.aws
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
provider.aws
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
provider.aws
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
provider.aws
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
provider.aws
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
provider.aws
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
provider.aws
var.vpc_cidr_block
aws_subnet.private
aws_vpc.main
provider.aws
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.public
aws_vpc.main
provider.aws
var.project
var.public_cidr_blocks
var.region
var.zones
aws_vpc.main
provider.aws
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
provider.aws
var.legacy_account_id
var.legacy_vpc_id
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_grid_stable
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-vpc.output.grid_gem_external_ips
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
module.common-vpc.plan-destroy
module.common-vpc.provisioner.chef
module.common-vpc.provisioner.file
module.common-vpc.provisioner.local-exec
module.common-vpc.provisioner.remote-exec
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.var.twc_cidr_blocks_offices
null_resource.provision_compute
aws_instance.compute
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_head
aws_instance.head
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_viewer
aws_instance.viewer
provider.null
provisioner.remote-exec
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
provider.null
provisioner.chef
provisioner.file
provisioner.local-exec
provisioner.remote-exec
root
aws_eip.nat
aws_iam_policy_attachment.wxmix_policy-attach
aws_instance.bastion (orphan)
aws_main_route_table_association.a
aws_route_table_association.private
aws_route_table_association.public
aws_security_group_rule.admin_egress_all
aws_security_group_rule.admin_ingress_22_offices
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group_rule.nat_egress_all
aws_security_group_rule.nat_ingress_all
aws_security_group_rule.wxmix_ftp
aws_security_group_rule.wxmix_http
aws_security_group_rule.wxmix_https
aws_security_group_rule.wxmix_ldm
aws_security_group_rule.wxmix_perforce
aws_security_group_rule.wxmix_postgres
aws_security_group_rule.wxmix_rmq
aws_security_group_rule.wxmix_subnet
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.output.amis_grid_stable
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
module.common-vpc.output.grid_gem_external_ips
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.plan-destroy
module.common-vpc.provisioner.chef
module.common-vpc.provisioner.file
module.common-vpc.provisioner.local-exec
module.common-vpc.provisioner.remote-exec
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.var.twc_cidr_blocks_offices
null_resource.provision_compute
null_resource.provision_head
null_resource.provision_viewer
output.VPC id
provisioner.chef
provisioner.file
provisioner.local-exec
var.bootstrap_chef_server
var.region
var.rmqadmin_cidr_blocks
var.rmqadmin_port
var.testnode_count
var.testnode_instance_type
var.validation_client_name
var.validation_key_path
var.zone_id
var.bootstrap_chef_server
var.compute_count
var.compute_instance_type
var.environment
var.ftp_cidr_blocks
var.head_count
var.head_instance_typeity_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.head_count
var.head_instance_type
var.keypair_name
var.project
var.region
var.zones
aws_instance.nat
aws_security_group.admin_sg
aws_security_group.nat
aws_subnet.public
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.nat_instance_type
var.project
var.region
var.zones
aws_instance.viewer
aws_iam_instance_profile.wxmix_profile
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.project
var.region
var.viewer_count
var.viewer_instance_type
var.zones
aws_internet_gateway.main
aws_vpc.main
provider.aws
var.project
var.region
aws_main_route_table_association.a
aws_route_table.public
aws_vpc.main
provider.aws
aws_route_table.private
aws_instance.nat
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.public
aws_internet_gateway.main
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_subnet.private
provider.aws
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_subnet.public
provider.aws
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
provider.aws
aws_security_group.bastion (orphan)
aws_vpc.main
provider.aws
aws_security_group.nat
aws_vpc.main
provider.aws
aws_security_group.wxmix
aws_vpc.main
provider.aws
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
provider.aws
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.nat_egress_all
aws_security_group.nat
provider.aws
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
provider.aws
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
provider.aws
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
provider.aws
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
provider.aws
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
provider.aws
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
provider.aws
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
provider.aws
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
provider.aws
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
provider.aws
var.vpc_cidr_block
aws_subnet.private
aws_vpc.main
provider.aws
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.public
aws_vpc.main
provider.aws
var.project
var.public_cidr_blocks
var.region
var.zones
aws_vpc.main
provider.aws
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
provider.aws
var.legacy_account_id
var.legacy_vpc_id
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_grid_stable
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-vpc.output.grid_gem_external_ips
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
module.common-vpc.plan-destroy
module.common-vpc.provisioner.chef
module.common-vpc.provisioner.file
module.common-vpc.provisioner.local-exec
module.common-vpc.provisioner.remote-exec
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.var.twc_cidr_blocks_offices
null_resource.provision_compute
aws_instance.compute
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_head
aws_instance.head
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_viewer
aws_instance.viewer
provider.null
provisioner.remote-exec
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
provider.null
provisioner.chef
provisioner.file
provisioner.local-exec
provisioner.remote-exec
root
aws_eip.nat
aws_iam_policy_attachment.wxmix_policy-attach
aws_instance.bastion (orphan)
aws_main_route_table_association.a
aws_route_table_association.private
aws_route_table_association.public
aws_security_group_rule.admin_egress_all
aws_security_group_rule.admin_ingress_22_offices
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group_rule.nat_egress_all
aws_security_group_rule.nat_ingress_all
aws_security_group_rule.wxmix_ftp
aws_security_group_rule.wxmix_http
aws_security_group_rule.wxmix_https
aws_security_group_rule.wxmix_ldm
aws_security_group_rule.wxmix_perforce
aws_security_group_rule.wxmix_postgres
aws_security_group_rule.wxmix_rmq
aws_security_group_rule.wxmix_subnet
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.output.amis_grid_stable
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_nstance_profile.wxmix_profile (destroy)
aws_iam_role.wxmix_role
provider.aws
var.environment
var.project
var.region
aws_iam_instance_profile.wxmix_profile (destroy tainted)
aws_instance.compute (destroy tainted)
aws_instance.head (destroy tainted)
aws_instance.viewer (destroy tainted)
provider.aws
aws_iam_instance_profile.wxmix_profile (destroy)
aws_instance.compute (destroy)
aws_instance.head (destroy)
aws_instance.viewer (destroy)
provider.aws
aws_iam_policy.wxmix_policy
aws_iam_policy.wxmix_policy (destroy tainted)
aws_iam_policy.wxmix_policy (destroy)
provider.aws
var.environment
var.project
var.region
aws_iam_policy.wxmix_policy (destroy tainted)
aws_iam_policy_attachment.wxmix_policy-attach (destroy tainted)
provider.aws
aws_iam_policy.wxmix_policy (destroy)
aws_iam_policy_attachment.wxmix_policy-attach (destroy)
provider.aws
aws_iam_policy_attachment.wxmix_policy-attach
aws_iam_policy.wxmix_policy
aws_iam_policy_attachment.wxmix_policy-attach (destroy tainted)
aws_iam_policy_attachment.wxmix_policy-attach (destroy)
aws_iam_role.wxmix_role
provider.aws
var.environment
var.project
var.region
aws_iam_policy_attachment.wxmix_policy-attach (destroy tainted)
provider.aws
aws_iam_policy_attachment.wxmix_policy-attach (destroy)
provider.aws
aws_iam_role.wxmix_role
aws_iam_role.wxmix_role (destroy tainted)
aws_iam_role.wxmix_role (destroy)
provider.aws
var.environment
var.project
var.region
aws_iam_role.wxmix_role (destroy tainted)
aws_iam_instance_profile.wxmix_profile (destroy tainted)
aws_iam_policy_attachment.wxmix_policy-attach (destroy tainted)
provider.aws
aws_iam_role.wxmix_role (destroy)
aws_iam_instance_profile.wxmix_profile (destroy)
aws_iam_policy_attachment.wxmix_policy-attach (destroy)
provider.aws
aws_instance.bastion (orphan)
provider.aws
aws_instance.compute
aws_iam_instance_profile.wxmix_profile
aws_instance.compute (destroy tainted)
aws_instance.compute (destroy)
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.compute_count
var.compute_instance_type
var.environment
var.keypair_name
var.project
var.region
var.zones
aws_instance.compute (destroy tainted)
null_resource.provision_compute (destroy tainted)
provider.aws
var.compute_count
aws_instance.compute (destroy)
null_resource.provision_compute (destroy)
provider.aws
var.compute_count
aws_instance.head
aws_iam_instance_profile.wxmix_profile
aws_instance.head (destroy tainted)
aws_instance.head (destroy)
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.head_count
var.head_instance_type
var.keypair_name
var.project
var.region
var.zones
aws_instance.head (destroy tainted)
null_resource.provision_head (destroy tainted)
provider.aws
var.head_count
aws_instance.head (destroy)
null_resource.provision_head (destroy)
provider.aws
var.head_count
aws_instance.nat
aws_instance.nat (destroy tainted)
aws_instance.nat (destroy)
aws_security_group.admin_sg
aws_security_group.nat
aws_subnet.public
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.nat_instance_type
var.project
var.region
var.zones
aws_instance.nat (destroy tainted)
aws_eip.nat (destroy tainted)
aws_route_table.private (destroy tainted)
provider.aws
aws_instance.nat (destroy)
aws_eip.nat (destroy)
aws_route_table.private (destroy)
provider.aws
aws_instance.viewer
aws_iam_instance_profile.wxmix_profile
aws_instance.viewer (destroy tainted)
aws_instance.viewer (destroy)
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.project
var.region
var.viewer_count
var.viewer_instance_type
var.zones
aws_instance.viewer (destroy tainted)
null_resource.provision_viewer (destroy tainted)
provider.aws
var.viewer_count
aws_instance.viewer (destroy)
null_resource.provision_viewer (destroy)
provider.aws
var.viewer_count
aws_internet_gateway.main
aws_internet_gateway.main (destroy tainted)
aws_internet_gateway.main (destroy)
aws_vpc.main
provider.aws
var.project
var.region
aws_internet_gateway.main (destroy tainted)
aws_route_table.public (destroy tainted)
provider.aws
aws_internet_gateway.main (destroy)
aws_route_table.public (destroy)
provider.aws
aws_main_route_table_association.a
aws_main_route_table_association.a (destroy tainted)
aws_main_route_table_association.a (destroy)
aws_route_table.public
aws_vpc.main
provider.aws
aws_main_route_table_association.a (destroy tainted)
provider.aws
aws_main_route_table_association.a (destroy)
provider.aws
aws_route_table.private
aws_instance.nat
aws_route_table.private (destroy tainted)
aws_route_table.private (destroy)
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.private (destroy tainted)
aws_route_table_association.private (destroy tainted)
provider.aws
aws_route_table.private (destroy)
aws_route_table_association.private (destroy)
provider.aws
aws_route_table.public
aws_internet_gateway.main
aws_route_table.public (destroy tainted)
aws_route_table.public (destroy)
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.public (destroy tainted)
aws_main_route_table_association.a (destroy tainted)
aws_route_table_association.public (destroy tainted)
provider.aws
aws_route_table.public (destroy)
aws_main_route_table_association.a (destroy)
aws_route_table_association.public (destroy)
provider.aws
aws_route_table_association.private
aws_route_table.private
aws_route_table_association.private (destroy tainted)
aws_route_table_association.private (destroy)
aws_subnet.private
provider.aws
var.private_cidr_blocks
aws_route_table_association.private (destroy tainted)
provider.aws
var.private_cidr_blocks
aws_route_table_association.private (destroy)
provider.aws
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_route_table_association.public (destroy tainted)
aws_route_table_association.public (destroy)
aws_subnet.public
provider.aws
var.public_cidr_blocks
aws_route_table_association.public (destroy tainted)
provider.aws
var.public_cidr_blocks
aws_route_table_association.public (destroy)
provider.aws
var.public_cidr_blocks
aws_security_group.admin_sg
aws_security_group.admin_sg (destroy tainted)
aws_security_group.admin_sg (destroy)
aws_vpc.main
provider.aws
aws_security_group.admin_sg (destroy tainted)
aws_instance.compute (destroy tainted)
aws_instance.head (destroy tainted)
aws_instance.nat (destroy tainted)
aws_instance.viewer (destroy tainted)
aws_security_group_rule.admin_egress_all (destroy tainted)
aws_security_group_rule.admin_ingress_22_offices (destroy tainted)
aws_security_group_rule.admin_ingress_22_wfh_ip (destroy tainted)
aws_security_group_rule.admin_ingress_ICMP (destroy tainted)
provider.aws
aws_security_group.admin_sg (destroy)
aws_instance.bastion (orphan)
aws_instance.compute (destroy)
aws_instance.head (destroy)
aws_instance.nat (destroy)
aws_instance.viewer (destroy)
aws_security_group_rule.admin_egress_all (destroy)
aws_security_group_rule.admin_ingress_22_offices (destroy)
aws_security_group_rule.admin_ingress_22_wfh_ip (destroy)
aws_security_group_rule.admin_ingress_ICMP (destroy)
provider.aws
aws_security_group.bastion (orphan)
aws_instance.bastion (orphan)
provider.aws
aws_security_group.nat
aws_security_group.nat (destroy tainted)
aws_security_group.nat (destroy)
aws_vpc.main
provider.aws
aws_security_group.nat (destroy tainted)
aws_instance.nat (destroy tainted)
aws_security_group_rule.nat_egress_all (destroy tainted)
aws_security_group_rule.nat_ingress_all (destroy tainted)
provider.aws
aws_security_group.nat (destroy)
aws_instance.nat (destroy)
aws_security_group_rule.nat_egress_all (destroy)
aws_security_group_rule.nat_ingress_all (destroy)
provider.aws
aws_security_group.wxmix
aws_security_group.wxmix (destroy tainted)
aws_security_group.wxmix (destroy)
aws_vpc.main
provider.aws
aws_security_group.wxmix (destroy tainted)
aws_instance.compute (destroy tainted)
aws_instance.head (destroy tainted)
aws_instance.viewer (destroy tainted)
aws_security_group_rule.wxmix_ftp (destroy tainted)
aws_security_group_rule.wxmix_http (destroy tainted)
aws_security_group_rule.wxmix_https (destroy tainted)
aws_security_group_rule.wxmix_ldm (destroy tainted)
aws_security_group_rule.wxmix_perforce (destroy tainted)
aws_security_group_rule.wxmix_postgres (destroy tainted)
aws_security_group_rule.wxmix_rmq (destroy tainted)
aws_security_group_rule.wxmix_subnet (destroy tainted)
provider.aws
aws_security_group.wxmix (destroy)
aws_instance.compute (destroy)
aws_instance.head (destroy)
aws_instance.viewer (destroy)
aws_security_group_rule.wxmix_ftp (destroy)
aws_security_group_rule.wxmix_http (destroy)
aws_security_group_rule.wxmix_https (destroy)
aws_security_group_rule.wxmix_ldm (destroy)
aws_security_group_rule.wxmix_perforce (destroy)
aws_security_group_rule.wxmix_postgres (destroy)
aws_security_group_rule.wxmix_rmq (destroy)
aws_security_group_rule.wxmix_subnet (destroy)
provider.aws
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
aws_security_group_rule.admin_egress_all (destroy tainted)
aws_security_group_rule.admin_egress_all (destroy)
provider.aws
aws_security_group_rule.admin_egress_all (destroy tainted)
provider.aws
aws_security_group_rule.admin_egress_all (destroy)
provider.aws
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
aws_security_group_rule.admin_ingress_22_offices (destroy tainted)
aws_security_group_rule.admin_ingress_22_offices (destroy)
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
provider.aws
aws_security_group_rule.admin_ingress_22_offices (destroy tainted)
provider.aws
aws_security_group_rule.admin_ingress_22_offices (destroy)
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
aws_security_group_rule.admin_ingress_22_wfh_ip (destroy tainted)
aws_security_group_rule.admin_ingress_22_wfh_ip (destroy)
provider.aws
var.wfh_ip
aws_security_group_rule.admin_ingress_22_wfh_ip (destroy tainted)
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip (destroy)
provider.aws
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
aws_security_group_rule.admin_ingress_ICMP (destroy tainted)
aws_security_group_rule.admin_ingress_ICMP (destroy)
provider.aws
aws_security_group_rule.admin_ingress_ICMP (destroy tainted)
provider.aws
aws_security_group_rule.admin_ingress_ICMP (destroy)
provider.aws
aws_security_group_rule.nat_egress_all
aws_security_group.nat
aws_security_group_rule.nat_egress_all (destroy tainted)
aws_security_group_rule.nat_egress_all (destroy)
provider.aws
aws_security_group_rule.nat_egress_all (destroy tainted)
provider.aws
aws_security_group_rule.nat_egress_all (destroy)
provider.aws
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
aws_security_group_rule.nat_ingress_all (destroy tainted)
aws_security_group_rule.nat_ingress_all (destroy)
provider.aws
var.vpc_cidr_block
aws_security_group_rule.nat_ingress_all (destroy tainted)
provider.aws
aws_security_group_rule.nat_ingress_all (destroy)
provider.aws
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
aws_security_group_rule.wxmix_ftp (destroy tainted)
aws_security_group_rule.wxmix_ftp (destroy)
provider.aws
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_ftp (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_ftp (destroy)
provider.aws
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
aws_security_group_rule.wxmix_http (destroy tainted)
aws_security_group_rule.wxmix_http (destroy)
provider.aws
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_http (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_http (destroy)
provider.aws
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
aws_security_group_rule.wxmix_https (destroy tainted)
aws_security_group_rule.wxmix_https (destroy)
provider.aws
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_https (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_https (destroy)
provider.aws
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
aws_security_group_rule.wxmix_ldm (destroy tainted)
aws_security_group_rule.wxmix_ldm (destroy)
provider.aws
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_ldm (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_ldm (destroy)
provider.aws
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
aws_security_group_rule.wxmix_perforce (destroy tainted)
aws_security_group_rule.wxmix_perforce (destroy)
provider.aws
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_perforce (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_perforce (destroy)
provider.aws
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
aws_security_group_rule.wxmix_postgres (destroy tainted)
aws_security_group_rule.wxmix_postgres (destroy)
provider.aws
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_postgres (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_postgres (destroy)
provider.aws
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
aws_security_group_rule.wxmix_rmq (destroy tainted)
aws_security_group_rule.wxmix_rmq (destroy)
provider.aws
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_rmq (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_rmq (destroy)
provider.aws
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
aws_security_group_rule.wxmix_subnet (destroy tainted)
aws_security_group_rule.wxmix_subnet (destroy)
provider.aws
var.vpc_cidr_block
aws_security_group_rule.wxmix_subnet (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_subnet (destroy)
provider.aws
aws_subnet.private
aws_subnet.private (destroy tainted)
aws_subnet.private (destroy)
aws_vpc.main
provider.aws
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.private (destroy tainted)
aws_route_table_association.private (destroy tainted)
provider.aws
var.private_cidr_blocks
aws_subnet.private (destroy)
aws_route_table_association.private (destroy)
provider.aws
var.private_cidr_blocks
aws_subnet.public
aws_subnet.public (destroy tainted)
aws_subnet.public (destroy)
aws_vpc.main
provider.aws
var.project
var.public_cidr_blocks
var.region
var.zones
aws_subnet.public (destroy tainted)
aws_instance.compute (destroy tainted)
aws_instance.head (destroy tainted)
aws_instance.nat (destroy tainted)
aws_instance.viewer (destroy tainted)
aws_route_table_association.public (destroy tainted)
provider.aws
var.public_cidr_blocks
aws_subnet.public (destroy)
aws_instance.bastion (orphan)
aws_instance.compute (destroy)
aws_instance.head (destroy)
aws_instance.nat (destroy)
aws_instance.viewer (destroy)
aws_route_table_association.public (destroy)
provider.aws
var.public_cidr_blocks
aws_vpc.main
aws_vpc.main (destroy tainted)
aws_vpc.main (destroy)
provider.aws
var.project
var.region
var.vpc_cidr_block
aws_vpc.main (destroy tainted)
aws_internet_gateway.main (destroy tainted)
aws_main_route_table_association.a (destroy tainted)
aws_route_table.private (destroy tainted)
aws_route_table.public (destroy tainted)
aws_security_group.admin_sg (destroy tainted)
aws_security_group.nat (destroy tainted)
aws_security_group.wxmix (destroy tainted)
aws_subnet.private (destroy tainted)
aws_subnet.public (destroy tainted)
aws_vpc_peering_connection.legacy_sun_vpc (destroy tainted)
provider.aws
aws_vpc.main (destroy)
aws_internet_gateway.main (destroy)
aws_main_route_table_association.a (destroy)
aws_route_table.private (destroy)
aws_route_table.public (destroy)
aws_security_group.admin_sg (destroy)
aws_security_group.bastion (orphan)
aws_security_group.nat (destroy)
aws_security_group.wxmix (destroy)
aws_subnet.private (destroy)
aws_subnet.public (destroy)
aws_vpc_peering_connection.legacy_sun_vpc (destroy)
provider.aws
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc (destroy tainted)
aws_vpc_peering_connection.legacy_sun_vpc (destroy)
provider.aws
var.legacy_account_id
var.legacy_vpc_id
aws_vpc_peering_connection.legacy_sun_vpc (destroy tainted)
aws_route_table.private (destroy tainted)
aws_route_table.public (destroy tainted)
provider.aws
aws_vpc_peering_connection.legacy_sun_vpc (destroy)
aws_route_table.private (destroy)
aws_route_table.public (destroy)
provider.aws
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_grid_stable
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-vpc.output.grid_gem_external_ips
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
module.common-vpc.plan-destroy
module.common-vpc.provisioner.chef
module.common-vpc.provisioner.file
module.common-vpc.provisioner.local-exec
module.common-vpc.provisioner.remote-exec
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.var.twc_cidr_blocks_offices
null_resource.provision_compute
aws_instance.compute
null_resource.provision_compute (destroy tainted)
null_resource.provision_compute (destroy)
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_compute (destroy tainted)
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_compute (destroy)
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_head
aws_instance.head
null_resource.provision_head (destroy tainted)
null_resource.provision_head (destroy)
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_head (destroy tainted)
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_head (destroy)
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_viewer
aws_instance.viewer
null_resource.provision_viewer (destroy tainted)
null_resource.provision_viewer (destroy)
provider.null
provisioner.remote-exec
var.viewer_count
null_resource.provision_viewer (destroy tainted)
provider.null
provisioner.remote-exec
var.viewer_count
null_resource.provision_viewer (destroy)
provider.null
provisioner.remote-exec
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
provider.null
provisioner.chef
provisioner.file
provisioner.local-exec
provisioner.remote-exec
root
aws_eip.nat
aws_iam_policy_attachment.wxmix_policy-attach
aws_instance.bastion (orphan)
aws_main_route_table_association.a
aws_route_table_association.private
aws_route_table_association.public
aws_security_group_rule.admin_egress_all
aws_security_group_rule.admin_ingress_22_offices
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group_rule.nat_egress_all
aws_security_group_rule.nat_ingress_all
aws_security_group_rule.wxmix_ftp
aws_security_group_rule.wxmix_http
aws_security_group_rule.wxmix_https
aws_security_group_rule.wxmix_ldm
aws_security_group_rule.wxmix_perforce
aws_security_group_rule.wxmix_postgres
aws_security_group_rule.wxmix_rmq
aws_security_group_rule.wxmix_subnet
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.output.amis_grid_stable
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
module.common-vpc.output.grid_gem_external_ips
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.plan-destroy
module.common-vpc.provisioner.chef
module.common-vpc.provisioner.file
module.common-vpc.provisioner.local-exec
module.common-vpc.provisioner.remote-exec
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.var.twc_cidr_blocks_offices
null_resource.provision_compute
null_resource.provision_head
null_resource.provision_viewer
output.VPC id
provisioner.chef
provisioner.file
provisioner.local-exec
var.bootstrap_chef_server
var.region
var.rmqadmin_cidr_blocks
var.rmqadmin_port
var.testnode_count
var.testnode_instance_type
var.validation_client_name
var.validation_key_path
var.zone_id
var.bootstrap_chef_server
var.compute_count
var.compute_instance_type
var.environment
var.ftp_cidr_blocks
var.head_count
var.head_instance_type
var.http_cidr_blocks
var.http_port
var.https_cidr_blocks
var.https_port
var.keypair_name
var.ldm_cidr_blocks
var.ldm_port
var.legacy_account_id
var.legacy_vpc_cidr
var.legacy_vpc_id
var.nat_instance_type
var.perforce_cidr_blocks
var.perforce_port
var.postgres_cidr_blocks
var.postgres_port
var.private_cidr_blocks
var.project
var.project_aws_access_key
var.project_aws_secret_key
var.public_cidr_blocks
var.region
var.rmq_cidr_blocks
var.rmq_port
var.rmer.aws
var.environment
var.project
var.region
aws_iam_role.wxmix_role (destroy tainted)
aws_iam_instance_profile.wxmix_profile (destroy tainted)
aws_iam_policy_attachment.wxmix_policy-attach (destroy tainted)
provider.aws
aws_iam_role.wxmix_role (destroy)
aws_iam_instance_profile.wxmix_profile (destroy)
aws_iam_policy_attachment.wxmix_policy-attach (destroy)
provider.aws
aws_instance.bastion (orphan)
provider.aws
aws_instance.compute
aws_iam_instance_profile.wxmix_profile
aws_instance.compute (destroy tainted)
aws_instance.compute (destroy)
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.compute_count
var.compute_instance_type
var.environment
var.keypair_name
var.project
var.region
var.zones
aws_instance.compute (destroy tainted)
null_resource.provision_compute (destroy tainted)
provider.aws
var.compute_count
aws_instance.compute (destroy)
null_resource.provision_compute (destroy)
provider.aws
var.compute_count
aws_instance.head
aws_iam_instance_profile.wxmix_profile
aws_instance.head (destroy tainted)
aws_instance.head (destroy)
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.head_count
var.head_instance_type
var.keypair_name
var.project
var.region
var.zones
aws_instance.head (destroy tainted)
null_resource.provision_head (destroy tainted)
provider.aws
var.head_count
aws_instance.head (destroy)
null_resource.provision_head (destroy)
provider.aws
var.head_count
aws_instance.nat
aws_instance.nat (destroy tainted)
aws_instance.nat (destroy)
aws_security_group.admin_sg
aws_security_group.nat
aws_subnet.public
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.nat_instance_type
var.project
var.region
var.zones
aws_instance.nat (destroy tainted)
aws_eip.nat (destroy tainted)
aws_route_table.private (destroy tainted)
provider.aws
aws_instance.nat (destroy)
aws_eip.nat (destroy)
aws_route_table.private (destroy)
provider.aws
aws_instance.viewer
aws_iam_instance_profile.wxmix_profile
aws_instance.viewer (destroy tainted)
aws_instance.viewer (destroy)
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.project
var.region
var.viewer_count
var.viewer_instance_type
var.zones
aws_instance.viewer (destroy tainted)
null_resource.provision_viewer (destroy tainted)
provider.aws
var.viewer_count
aws_instance.viewer (destroy)
null_resource.provision_viewer (destroy)
provider.aws
var.viewer_count
aws_internet_gateway.main
aws_internet_gateway.main (destroy tainted)
aws_internet_gateway.main (destroy)
aws_vpc.main
provider.aws
var.project
var.region
aws_internet_gateway.main (destroy tainted)
aws_route_table.public (destroy tainted)
provider.aws
aws_internet_gateway.main (destroy)
aws_route_table.public (destroy)
provider.aws
aws_main_route_table_association.a
aws_main_route_table_association.a (destroy tainted)
aws_main_route_table_association.a (destroy)
aws_route_table.public
aws_vpc.main
provider.aws
aws_main_route_table_association.a (destroy tainted)
provider.aws
aws_main_route_table_association.a (destroy)
provider.aws
aws_route_table.private
aws_instance.nat
aws_route_table.private (destroy tainted)
aws_route_table.private (destroy)
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.private (destroy tainted)
aws_route_table_association.private (destroy tainted)
provider.aws
aws_route_table.private (destroy)
aws_route_table_association.private (destroy)
provider.aws
aws_route_table.public
aws_internet_gateway.main
aws_route_table.public (destroy tainted)
aws_route_table.public (destroy)
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.public (destroy tainted)
aws_main_route_table_association.a (destroy tainted)
aws_route_table_association.public (destroy tainted)
provider.aws
aws_route_table.public (destroy)
aws_main_route_table_association.a (destroy)
aws_route_table_association.public (destroy)
provider.aws
aws_route_table_association.private
aws_route_table.private
aws_route_table_association.private (destroy tainted)
aws_route_table_association.private (destroy)
aws_subnet.private
provider.aws
var.private_cidr_blocks
aws_route_table_association.private (destroy tainted)
provider.aws
var.private_cidr_blocks
aws_route_table_association.private (destroy)
provider.aws
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_route_table_association.public (destroy tainted)
aws_route_table_association.public (destroy)
aws_subnet.public
provider.aws
var.public_cidr_blocks
aws_route_table_association.public (destroy tainted)
provider.aws
var.public_cidr_blocks
aws_route_table_association.public (destroy)
provider.aws
var.public_cidr_blocks
aws_security_group.admin_sg
aws_security_group.admin_sg (destroy tainted)
aws_security_group.admin_sg (destroy)
aws_vpc.main
provider.aws
aws_security_group.admin_sg (destroy tainted)
aws_instance.compute (destroy tainted)
aws_instance.head (destroy tainted)
aws_instance.nat (destroy tainted)
aws_instance.viewer (destroy tainted)
aws_security_group_rule.admin_egress_all (destroy tainted)
aws_security_group_rule.admin_ingress_22_offices (destroy tainted)
aws_security_group_rule.admin_ingress_22_wfh_ip (destroy tainted)
aws_security_group_rule.admin_ingress_ICMP (destroy tainted)
provider.aws
aws_security_group.admin_sg (destroy)
aws_instance.bastion (orphan)
aws_instance.compute (destroy)
aws_instance.head (destroy)
aws_instance.nat (destroy)
aws_instance.viewer (destroy)
aws_security_group_rule.admin_egress_all (destroy)
aws_security_group_rule.admin_ingress_22_offices (destroy)
aws_security_group_rule.admin_ingress_22_wfh_ip (destroy)
aws_security_group_rule.admin_ingress_ICMP (destroy)
provider.aws
aws_security_group.bastion (orphan)
aws_instance.bastion (orphan)
provider.aws
aws_security_group.nat
aws_security_group.nat (destroy tainted)
aws_security_group.nat (destroy)
aws_vpc.main
provider.aws
aws_security_group.nat (destroy tainted)
aws_instance.nat (destroy tainted)
aws_security_group_rule.nat_egress_all (destroy tainted)
aws_security_group_rule.nat_ingress_all (destroy tainted)
provider.aws
aws_security_group.nat (destroy)
aws_instance.nat (destroy)
aws_security_group_rule.nat_egress_all (destroy)
aws_security_group_rule.nat_ingress_all (destroy)
provider.aws
aws_security_group.wxmix
aws_security_group.wxmix (destroy tainted)
aws_security_group.wxmix (destroy)
aws_vpc.main
provider.aws
aws_security_group.wxmix (destroy tainted)
aws_instance.compute (destroy tainted)
aws_instance.head (destroy tainted)
aws_instance.viewer (destroy tainted)
aws_security_group_rule.wxmix_ftp (destroy tainted)
aws_security_group_rule.wxmix_http (destroy tainted)
aws_security_group_rule.wxmix_https (destroy tainted)
aws_security_group_rule.wxmix_ldm (destroy tainted)
aws_security_group_rule.wxmix_perforce (destroy tainted)
aws_security_group_rule.wxmix_postgres (destroy tainted)
aws_security_group_rule.wxmix_rmq (destroy tainted)
aws_security_group_rule.wxmix_subnet (destroy tainted)
provider.aws
aws_security_group.wxmix (destroy)
aws_instance.compute (destroy)
aws_instance.head (destroy)
aws_instance.viewer (destroy)
aws_security_group_rule.wxmix_ftp (destroy)
aws_security_group_rule.wxmix_http (destroy)
aws_security_group_rule.wxmix_https (destroy)
aws_security_group_rule.wxmix_ldm (destroy)
aws_security_group_rule.wxmix_perforce (destroy)
aws_security_group_rule.wxmix_postgres (destroy)
aws_security_group_rule.wxmix_rmq (destroy)
aws_security_group_rule.wxmix_subnet (destroy)
provider.aws
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
aws_security_group_rule.admin_egress_all (destroy tainted)
aws_security_group_rule.admin_egress_all (destroy)
provider.aws
aws_security_group_rule.admin_egress_all (destroy tainted)
provider.aws
aws_security_group_rule.admin_egress_all (destroy)
provider.aws
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
aws_security_group_rule.admin_ingress_22_offices (destroy tainted)
aws_security_group_rule.admin_ingress_22_offices (destroy)
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
provider.aws
aws_security_group_rule.admin_ingress_22_offices (destroy tainted)
provider.aws
aws_security_group_rule.admin_ingress_22_offices (destroy)
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
aws_security_group_rule.admin_ingress_22_wfh_ip (destroy tainted)
aws_security_group_rule.admin_ingress_22_wfh_ip (destroy)
provider.aws
var.wfh_ip
aws_security_group_rule.admin_ingress_22_wfh_ip (destroy tainted)
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip (destroy)
provider.aws
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
aws_security_group_rule.admin_ingress_ICMP (destroy tainted)
aws_security_group_rule.admin_ingress_ICMP (destroy)
provider.aws
aws_security_group_rule.admin_ingress_ICMP (destroy tainted)
provider.aws
aws_security_group_rule.admin_ingress_ICMP (destroy)
provider.aws
aws_security_group_rule.nat_egress_all
aws_security_group.nat
aws_security_group_rule.nat_egress_all (destroy tainted)
aws_security_group_rule.nat_egress_all (destroy)
provider.aws
aws_security_group_rule.nat_egress_all (destroy tainted)
provider.aws
aws_security_group_rule.nat_egress_all (destroy)
provider.aws
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
aws_security_group_rule.nat_ingress_all (destroy tainted)
aws_security_group_rule.nat_ingress_all (destroy)
provider.aws
var.vpc_cidr_block
aws_security_group_rule.nat_ingress_all (destroy tainted)
provider.aws
aws_security_group_rule.nat_ingress_all (destroy)
provider.aws
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
aws_security_group_rule.wxmix_ftp (destroy tainted)
aws_security_group_rule.wxmix_ftp (destroy)
provider.aws
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_ftp (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_ftp (destroy)
provider.aws
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
aws_security_group_rule.wxmix_http (destroy tainted)
aws_security_group_rule.wxmix_http (destroy)
provider.aws
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_http (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_http (destroy)
provider.aws
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
aws_security_group_rule.wxmix_https (destroy tainted)
aws_security_group_rule.wxmix_https (destroy)
provider.aws
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_https (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_https (destroy)
provider.aws
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
aws_security_group_rule.wxmix_ldm (destroy tainted)
aws_security_group_rule.wxmix_ldm (destroy)
provider.aws
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_ldm (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_ldm (destroy)
provider.aws
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
aws_security_group_rule.wxmix_perforce (destroy tainted)
aws_security_group_rule.wxmix_perforce (destroy)
provider.aws
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_perforce (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_perforce (destroy)
provider.aws
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
aws_security_group_rule.wxmix_postgres (destroy tainted)
aws_security_group_rule.wxmix_postgres (destroy)
provider.aws
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_postgres (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_postgres (destroy)
provider.aws
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
aws_security_group_rule.wxmix_rmq (destroy tainted)
aws_security_group_rule.wxmix_rmq (destroy)
provider.aws
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_rmq (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_rmq (destroy)
provider.aws
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
aws_security_group_rule.wxmix_subnet (destroy tainted)
aws_security_group_rule.wxmix_subnet (destroy)
provider.aws
var.vpc_cidr_block
aws_security_group_rule.wxmix_subnet (destroy tainted)
provider.aws
aws_security_group_rule.wxmix_subnet (destroy)
provider.aws
aws_subnet.private
aws_subnet.private (destroy tainted)
aws_subnet.private (destroy)
aws_vpc.main
provider.aws
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.private (destroy tainted)
aws_route_table_association.private (destroy tainted)
provider.aws
var.private_cidr_blocks
aws_subnet.private (destroy)
aws_route_table_association.private (destroy)
provider.aws
var.private_cidr_blocks
aws_subnet.public
aws_subnet.public (destroy tainted)
aws_subnet.public (destroy)
aws_vpc.main
provider.aws
var.project
var.public_cidr_blocks
var.region
var.zones
aws_subnet.public (destroy tainted)
aws_instance.compute (destroy tainted)
aws_instance.head (destroy tainted)
aws_instance.nat (destroy tainted)
aws_instance.viewer (destroy tainted)
aws_route_table_association.public (destroy tainted)
provider.aws
var.public_cidr_blocks
aws_subnet.public (destroy)
aws_instance.bastion (orphan)
aws_instance.compute (destroy)
aws_instance.head (destroy)
aws_instance.nat (destroy)
aws_instance.viewer (destroy)
aws_route_table_association.public (destroy)
provider.aws
var.public_cidr_blocks
aws_vpc.main
aws_vpc.main (destroy tainted)
aws_vpc.main (destroy)
provider.aws
var.project
var.region
var.vpc_cidr_block
aws_vpc.main (destroy tainted)
aws_internet_gateway.main (destroy tainted)
aws_main_route_table_association.a (destroy tainted)
aws_route_table.private (destroy tainted)
aws_route_table.public (destroy tainted)
aws_security_group.admin_sg (destroy tainted)
aws_security_group.nat (destroy tainted)
aws_security_group.wxmix (destroy tainted)
aws_subnet.private (destroy tainted)
aws_subnet.public (destroy tainted)
aws_vpc_peering_connection.legacy_sun_vpc (destroy tainted)
provider.aws
aws_vpc.main (destroy)
aws_internet_gateway.main (destroy)
aws_main_route_table_association.a (destroy)
aws_route_table.private (destroy)
aws_route_table.public (destroy)
aws_security_group.admin_sg (destroy)
aws_security_group.bastion (orphan)
aws_security_group.nat (destroy)
aws_security_group.wxmix (destroy)
aws_subnet.private (destroy)
aws_subnet.public (destroy)
aws_vpc_peering_connection.legacy_sun_vpc (destroy)
provider.aws
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc (destroy tainted)
aws_vpc_peering_connection.legacy_sun_vpc (destroy)
provider.aws
var.legacy_account_id
var.legacy_vpc_id
aws_vpc_peering_connection.legacy_sun_vpc (destroy tainted)
aws_route_table.private (destroy tainted)
aws_route_table.public (destroy tainted)
provider.aws
aws_vpc_peering_connection.legacy_sun_vpc (destroy)
aws_route_table.private (destroy)
aws_route_table.public (destroy)
provider.aws
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_grid_stable
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-vpc.output.grid_gem_external_ips
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
module.common-vpc.plan-destroy
module.common-vpc.provisioner.chef
module.common-vpc.provisioner.file
module.common-vpc.provisioner.local-exec
module.common-vpc.provisioner.remote-exec
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.var.twc_cidr_blocks_offices
null_resource.provision_compute
aws_instance.compute
null_resource.provision_compute (destroy tainted)
null_resource.provision_compute (destroy)
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_compute (destroy tainted)
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_compute (destroy)
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_head
aws_instance.head
null_resource.provision_head (destroy tainted)
null_resource.provision_head (destroy)
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_head (destroy tainted)
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_head (destroy)
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_viewer
aws_instance.viewer
null_resource.provision_viewer (destroy tainted)
null_resource.provision_viewer (destroy)
provider.null
provisioner.remote-exec
var.viewer_count
null_resource.provision_viewer (destroy tainted)
provider.null
provisioner.remote-exec
var.viewer_count
null_resource.provision_viewer (destroy)
provider.null
provisioner.remote-exec
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
provider.null
provisioner.chef
provisioner.file
provisioner.local-exec
provisioner.remote-exec
root
aws_eip.nat
aws_iam_policy_attachment.wxmix_policy-attach
aws_instance.bastion (orphan)
aws_main_route_table_association.a
aws_route_table_association.private
aws_route_table_association.public
aws_security_group_rule.admin_egress_all
aws_security_group_rule.admin_ingress_22_offices
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group_rule.nat_egress_all
aws_security_group_rule.nat_ingress_all
aws_security_group_rule.wxmix_ftp
aws_security_group_rule.wxmix_http
aws_security_group_rule.wxmix_https
aws_security_group_rule.wxmix_ldm
aws_security_group_rule.wxmix_perforce
aws_security_group_rule.wxmix_postgres
aws_security_group_rule.wxmix_rmq
aws_security_group_rule.wxmix_subnet
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.output.amis_grid_stable
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
module.common-vpc.output.grid_gem_external_ips
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.plan-destroy
module.common-vpc.provisioner.chef
module.common-vpc.provisioner.file
module.common-vpc.provisioner.local-exec
module.common-vpc.provisioner.remote-exec
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.var.twc_cidr_blocks_offices
null_resource.provision_compute
null_resource.provision_head
null_resource.provision_viewer
output.VPC id
provisioner.chef
provisioner.file
provisioner.local-exec
var.bootstrap_chef_server
var.region
var.rmqadmin_cidr_blocks
var.rmqadmin_port
var.testnode_count
var.testnode_instance_type
var.validation_client_name
var.validation_key_path
aws_iam_instance_profile.wxmix_profile
aws_instance.head (destroy)
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.head_count
var.head_instance_type
var.keypair_name
var.project
var.region
var.zones
aws_instance.head (destroy)
null_resource.provision_head (destroy)
provider.aws
var.head_count
aws_instance.nat
aws_security_group.admin_sg
aws_security_group.nat
aws_subnet.public
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.nat_instance_type
var.project
var.region
var.zones
aws_instance.viewer
aws_iam_instance_profile.wxmix_profile
aws_instance.viewer (destroy)
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.project
var.region
var.viewer_count
var.viewer_instance_type
var.zones
aws_instance.viewer (destroy)
null_resource.provision_viewer (destroy)
provider.aws
var.viewer_count
aws_internet_gateway.main
aws_vpc.main
provider.aws
var.project
var.region
aws_main_route_table_association.a
aws_route_table.public
aws_vpc.main
provider.aws
aws_route_table.private
aws_instance.nat
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.public
aws_internet_gateway.main
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_route_table_association.private (destroy)
aws_subnet.private
provider.aws
var.private_cidr_blocks
aws_route_table_association.private (destroy)
provider.aws
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_route_table_association.public (destroy)
aws_subnet.public
provider.aws
var.public_cidr_blocks
aws_route_table_association.public (destroy)
provider.aws
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
provider.aws
aws_security_group.bastion (orphan)
aws_instance.bastion (orphan)
provider.aws
aws_security_group.nat
aws_vpc.main
provider.aws
aws_security_group.wxmix
aws_vpc.main
provider.aws
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
provider.aws
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.nat_egress_all
aws_security_group.nat
provider.aws
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
provider.aws
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
provider.aws
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
provider.aws
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
provider.aws
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
provider.aws
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
provider.aws
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
provider.aws
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
provider.aws
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
provider.aws
var.vpc_cidr_block
aws_subnet.private
aws_subnet.private (destroy)
aws_vpc.main
provider.aws
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.private (destroy)
aws_route_table_association.private (destroy)
provider.aws
var.private_cidr_blocks
aws_subnet.public
aws_subnet.public (destroy)
aws_vpc.main
provider.aws
var.project
var.public_cidr_blocks
var.region
var.zones
aws_subnet.public (destroy)
aws_instance.bastion (orphan)
aws_instance.compute (destroy)
aws_instance.head (destroy)
aws_instance.viewer (destroy)
aws_route_table_association.public (destroy)
provider.aws
var.public_cidr_blocks
aws_vpc.main
provider.aws
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
provider.aws
var.legacy_account_id
var.legacy_vpc_id
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_grid_stable
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-vpc.output.grid_gem_external_ips
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
module.common-vpc.plan-destroy
module.common-vpc.provisioner.chef
module.common-vpc.provisioner.file
module.common-vpc.provisioner.local-exec
module.common-vpc.provisioner.remote-exec
module.common-vpc.var.grid_gem_external_ips
module.common-vpc.var.twc_cidr_blocks_offices
null_resource.provision_compute
aws_instance.compute
null_resource.provision_compute (destroy tainted)
null_resource.provision_compute (destroy)
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_compute (destroy tainted)
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_compute (destroy)
provider.null
provisioner.remote-exec
var.compute_count
null_resource.provision_head
aws_instance.head
null_resource.provision_head (destroy tainted)
null_resource.provision_head (destroy)
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_head (destroy tainted)
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_head (destroy)
provider.null
provisioner.remote-exec
var.head_count
null_resource.provision_viewer
aws_instance.viewer
null_resource.provision_viewer (destroy tainted)
null_resource.provision_viewer (destroy)
provider.null
provisioner.remote-exec
var.viewer_count
null_resource.provision_viewer (destroy tainted)
provider.null
provisioner.remote-exec
var.viewer_count
null_resource.provision_viewer (destroy)
provider.null
provisioner.remote-exec
var.viewer_count
output.VPC id
aws_vpc.main
provider.aws
var.project_aws_access_key
var.project_aws_secret_key
var.region
provider.null
provisioner.chef
provisioner.file
provisioner.local-exec
provisioner.remote-exec
root
aws_eip.nat
aws_iam_policy_attachment.wxmix_policy-attach
aws_instance.bastion (orphan)
aws_main_route_table_association.a
aws_route_table_association.private
aws_route_table_association.public
aws_security_group_rule.admin_egress_all
aws_security_group_rule.admin_ingress_22_offices
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group_rule.nat_egress_all
aws_security_group_rule.nat_ingress_all
aws_security_group_rule.wxmix_ftp
aws_security_group_rule.wxmix_http
aws_security_group_rule.wxmix_https
aws_security_group_rule.wxmix_ldm
aws_security_group_rule.wxmix_perforce
aws_security_group_rule.wxmix_postgres
aws_security_group_rule.wxmix_rmq
aws_security_group_rule.wxmix_subnet
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.output.amis_grid_stable
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
var.region
aws_iam_policy_attachment.wxmix_policy-attach
aws_iam_policy.wxmix_policy
aws_iam_role.wxmix_role
provider.aws
var.environment
var.project
var.region
aws_iam_role.wxmix_role
provider.aws
var.environment
var.project
var.region
aws_instance.bastion (orphan)
provider.aws
aws_instance.compute
aws_iam_instance_profile.wxmix_profile
aws_instance.compute (destroy)
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.compute_count
var.compute_instance_type
var.environment
var.keypair_name
var.project
var.region
var.zones
aws_instance.compute (destroy)
null_resource.provision_compute (destroy)
provider.aws
var.compute_count
aws_instance.head
aws_iam_instance_profile.wxmix_profile
aws_instance.head (destroy)
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.head_count
var.head_instance_type
var.keypair_name
var.project
var.region
var.zones
aws_instance.head (destroy)
null_resource.provision_head (destroy)
provider.aws
var.head_count
aws_instance.nat
aws_security_group.admin_sg
aws_security_group.nat
aws_subnet.public
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.nat_instance_type
var.project
var.region
var.zones
aws_instance.viewer
aws_iam_instance_profile.wxmix_profile
aws_instance.viewer (destroy)
aws_security_group.admin_sg
aws_security_group.wxmix
aws_subnet.public
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
provider.aws
var.environment
var.keypair_name
var.project
var.region
var.viewer_count
var.viewer_instance_type
var.zones
aws_instance.viewer (destroy)
null_resource.provision_viewer (destroy)
provider.aws
var.viewer_count
aws_internet_gateway.main
aws_vpc.main
provider.aws
var.project
var.region
aws_main_route_table_association.a
aws_route_table.public
aws_vpc.main
provider.aws
aws_route_table.private
aws_instance.nat
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table.public
aws_internet_gateway.main
aws_vpc.main
aws_vpc_peering_connection.legacy_sun_vpc
provider.aws
var.legacy_vpc_cidr
var.project
var.region
aws_route_table_association.private
aws_route_table.private
aws_route_table_association.private (destroy)
aws_subnet.private
provider.aws
var.private_cidr_blocks
aws_route_table_association.private (destroy)
provider.aws
var.private_cidr_blocks
aws_route_table_association.public
aws_route_table.public
aws_route_table_association.public (destroy)
aws_subnet.public
provider.aws
var.public_cidr_blocks
aws_route_table_association.public (destroy)
provider.aws
var.public_cidr_blocks
aws_security_group.admin_sg
aws_vpc.main
provider.aws
aws_security_group.bastion (orphan)
aws_instance.bastion (orphan)
provider.aws
aws_security_group.nat
aws_vpc.main
provider.aws
aws_security_group.wxmix
aws_vpc.main
provider.aws
aws_security_group_rule.admin_egress_all
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.admin_ingress_22_offices
aws_security_group.admin_sg
module.common-vpc.output.twc_cidr_blocks_offices
module.common-vpc.var.twc_cidr_blocks_offices
provider.aws
aws_security_group_rule.admin_ingress_22_wfh_ip
aws_security_group.admin_sg
provider.aws
var.wfh_ip
aws_security_group_rule.admin_ingress_ICMP
aws_security_group.admin_sg
provider.aws
aws_security_group_rule.nat_egress_all
aws_security_group.nat
provider.aws
aws_security_group_rule.nat_ingress_all
aws_security_group.nat
provider.aws
var.vpc_cidr_block
aws_security_group_rule.wxmix_ftp
aws_security_group.wxmix
provider.aws
var.ftp_cidr_blocks
aws_security_group_rule.wxmix_http
aws_security_group.wxmix
provider.aws
var.http_cidr_blocks
var.http_port
aws_security_group_rule.wxmix_https
aws_security_group.wxmix
provider.aws
var.https_cidr_blocks
var.https_port
aws_security_group_rule.wxmix_ldm
aws_security_group.wxmix
provider.aws
var.ldm_cidr_blocks
var.ldm_port
aws_security_group_rule.wxmix_perforce
aws_security_group.wxmix
provider.aws
var.perforce_cidr_blocks
var.perforce_port
aws_security_group_rule.wxmix_postgres
aws_security_group.wxmix
provider.aws
var.postgres_cidr_blocks
var.postgres_port
aws_security_group_rule.wxmix_rmq
aws_security_group.wxmix
provider.aws
var.rmq_cidr_blocks
var.rmq_port
aws_security_group_rule.wxmix_subnet
aws_security_group.wxmix
provider.aws
var.vpc_cidr_block
aws_subnet.private
aws_subnet.private (destroy)
aws_vpc.main
provider.aws
var.private_cidr_blocks
var.project
var.region
var.zones
aws_subnet.private (destroy)
aws_route_table_association.private (destroy)
provider.aws
var.private_cidr_blocks
aws_subnet.public
aws_subnet.public (destroy)
aws_vpc.main
provider.aws
var.project
var.public_cidr_blocks
var.region
var.zones
aws_subnet.public (destroy)
aws_instance.bastion (orphan)
aws_instance.compute (destroy)
aws_instance.head (destroy)
aws_instance.viewer (destroy)
aws_route_table_association.public (destroy)
provider.aws
var.public_cidr_blocks
aws_vpc.main
provider.aws
var.project
var.region
var.vpc_cidr_block
aws_vpc_peering_connection.legacy_sun_vpc
aws_vpc.main
provider.aws
var.legacy_account_id
var.legacy_vpc_id
module.common-ami.output.amis_aws_nat_hvm
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_centos_7_hvm
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.region
var.region
module.common-ami.output.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.region
var.region
module.common-ami.output.amis_grid_stable
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-ami.plan-destroy
module.common-ami.provisioner.chef
module.common-ami.provisioner.file
module.common-ami.provisioner.local-exec
module.common-ami.provisioner.remote-exec
module.common-ami.var.amis_aws_nat_hvm
module.common-ami.var.amis_community_centos_6_hvm_20140929
module.common-ami.var.amis_community_centos_6_hvm_20150928
module.common-ami.var.amis_community_centos_7_hvm
module.common-ami.var.amis_community_ubuntu_1404
module.common-ami.var.amis_community_ubuntu_1404_hvm
module.common-ami.var.amis_grid_stable
module.common-ami.var.region
var.region
module.common-vpc.output.grid_gem_external_ips
module.comm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment