hashicorp / terraform

Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.
https://www.terraform.io/
Other
42.42k stars 9.5k forks source link

terraform not fetching correct availability zones in a region us-west-1 #11237

Closed kaji-bikash closed 7 years ago

kaji-bikash commented 7 years ago

Terraform version

v0.8.4 ( installed via brew in OSX 10.12.2 )

Steps to reproduce


data "aws_availability_zones" "all" {}

provider "aws" {
    region = "us-west-1"
}

resource "aws_vpc" "us-west-1-vpc" {
  cidr_block = "172.18.0.0/16"
  enable_dns_support = true
  enable_dns_hostnames = true
  instance_tenancy = "default"
  tags = {
    Name = "us-west-1-staging-vpc"
    env = "staging"
  }
}
output "az" {
  value = "${data.aws_availability_zones.all.names}"
}

Output

~/G/h/t/e/s/V/s/vpc ❯❯❯ terraform apply
aws_vpc.us-west-1-vpc: Refreshing state... (ID: vpc-0309ce67)
data.aws_availability_zones.all: Refreshing state...

Apply complete! Resources: 0 added, 0 changed, 0 destroyed.

Outputs:

az = [
    us-west-1a,
    us-west-1b,
    us-west-1c
]

Observation

There is no us-west-1c in us-west-1 region. It only contains two availability zones namely us-west-1a and us-west-1b

jen20 commented 7 years ago

Hi @kajisaap! If this is reproducible, could you post the output with TF_LOG=1 set in the environment when you run Terraform? Thanks!

kaji-bikash commented 7 years ago

Sure thing @jen20 !

2017/01/17 11:01:51 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:51 [WARN] Ignoring AWS metadata API endpoint at default location as it doesn't return any instance-id
2017/01/17 11:01:51 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:51 [INFO] AWS Auth provider used: "EnvProvider"
2017/01/17 11:01:51 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:51 [WARN] Invalid log level: "1". Defaulting to level: TRACE. Valid levels are: [TRACE DEBUG INFO WARN ERROR]
2017/01/17 11:01:51 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:51 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2017/01/17 11:01:51 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:51 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:51 [DEBUG] plugin: terraform: Host: sts.amazonaws.com
2017/01/17 11:01:51 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:51 [DEBUG] plugin: terraform: Content-Length: 43
2017/01/17 11:01:51 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=20f99e6ed2adfc5525fd03272395388f2061f971af8f00de72870440854fd8f9
2017/01/17 11:01:51 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:51 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160151Z
2017/01/17 11:01:51 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:51 [DEBUG] plugin: terraform:
2017/01/17 11:01:51 [DEBUG] plugin: terraform: Action=GetCallerIdentity&Version=2011-06-15
2017/01/17 11:01:51 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:52 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:52 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2017/01/17 11:01:52 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:52 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Content-Length: 408
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Content-Type: text/xml
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:51 GMT
2017/01/17 11:01:52 [DEBUG] plugin: terraform: X-Amzn-Requestid: 42b5c05c-dcce-11e6-bd52-375783e0a4ff
2017/01/17 11:01:52 [DEBUG] plugin: terraform:
2017/01/17 11:01:52 [DEBUG] plugin: terraform: <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2017/01/17 11:01:52 [DEBUG] plugin: terraform:   <GetCallerIdentityResult>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:     <Arn>arn:aws:iam::123456789101:user/kaji.bikash</Arn>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:     <UserId>ZZZZZZZZZZZZZZZZZZZZZ</UserId>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:     <Account>123456789101</Account>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:   </GetCallerIdentityResult>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:   <ResponseMetadata>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:     <RequestId>42b5c05c-dcce-11e6-bd52-375783e0a4ff</RequestId>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:   </ResponseMetadata>
2017/01/17 11:01:52 [DEBUG] plugin: terraform: </GetCallerIdentityResponse>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:
2017/01/17 11:01:52 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:52 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:52 [DEBUG] Trying to get account ID via iam:GetUser
2017/01/17 11:01:52 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:52 [DEBUG] [aws-sdk-go] DEBUG: Request iam/GetUser Details:
2017/01/17 11:01:52 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:52 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Host: iam.amazonaws.com
2017/01/17 11:01:52 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Content-Length: 33
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-east-1/iam/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=87adb3fbebd0bc5ceb75dfe13f4c69068791118d874182e60bee204f17f9b12b
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:52 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160152Z
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:52 [DEBUG] plugin: terraform:
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Action=GetUser&Version=2010-05-08
2017/01/17 11:01:52 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:52 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:52 [DEBUG] [aws-sdk-go] DEBUG: Response iam/GetUser Details:
2017/01/17 11:01:52 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:52 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Content-Length: 471
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Content-Type: text/xml
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:51 GMT
2017/01/17 11:01:52 [DEBUG] plugin: terraform: X-Amzn-Requestid: 42c48d63-dcce-11e6-9cb5-6fc5af467f59
2017/01/17 11:01:52 [DEBUG] plugin: terraform:
2017/01/17 11:01:52 [DEBUG] plugin: terraform: <GetUserResponse xmlns="https://iam.amazonaws.com/doc/2010-05-08/">
2017/01/17 11:01:52 [DEBUG] plugin: terraform:   <GetUserResult>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:     <User>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:       <Path>/</Path>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:       <UserName>kaji.bikash</UserName>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:       <Arn>arn:aws:iam::123456789101:user/kaji.bikash</Arn>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:       <UserId>ZZZZZZZZZZZZZZZZZZZZZ</UserId>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:       <CreateDate>2017-01-13T19:20:26Z</CreateDate>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:     </User>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:   </GetUserResult>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:   <ResponseMetadata>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:     <RequestId>42c48d63-dcce-11e6-9cb5-6fc5af467f59</RequestId>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:   </ResponseMetadata>
2017/01/17 11:01:52 [DEBUG] plugin: terraform: </GetUserResponse>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:
2017/01/17 11:01:52 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:52 [TRACE] [walkRefresh] Exiting eval tree: provider.aws
2017/01/17 11:01:52 [DEBUG] vertex "aws_vpc.us-west-1-vpc", got dep: "provider.aws"
2017/01/17 11:01:52 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': walking
2017/01/17 11:01:52 [DEBUG] vertex "provider.aws (close)", got dep: "provider.aws"
2017/01/17 11:01:52 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': evaluating
2017/01/17 11:01:52 [DEBUG] vertex "data.aws_availability_zones.all", got dep: "provider.aws"
2017/01/17 11:01:52 [TRACE] [walkRefresh] Entering eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:52 [DEBUG] vertex 'root.data.aws_availability_zones.all': walking
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:52 [DEBUG] vertex 'root.data.aws_availability_zones.all': evaluating
2017/01/17 11:01:52 [TRACE] [walkRefresh] Entering eval tree: data.aws_availability_zones.all
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalCountCheckComputed
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary
2017/01/17 11:01:52 [TRACE] [walkRefresh] Exiting eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:52 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': expanding/walking dynamic subgraph
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.ResourceCountTransformerOld:

aws_vpc.us-west-1-vpc - *terraform.graphNodeExpandedResource
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.TargetsTransformer:

aws_vpc.us-west-1-vpc - *terraform.graphNodeExpandedResource
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.RootTransformer:

aws_vpc.us-west-1-vpc - *terraform.graphNodeExpandedResource
2017/01/17 11:01:52 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': walking
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalCountCheckComputed
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary
2017/01/17 11:01:52 [TRACE] [walkRefresh] Exiting eval tree: data.aws_availability_zones.all
2017/01/17 11:01:52 [DEBUG] vertex 'root.data.aws_availability_zones.all': expanding/walking dynamic subgraph
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.ResourceCountTransformerOld:

data.aws_availability_zones.all - *terraform.graphNodeExpandedResource
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.TargetsTransformer:

data.aws_availability_zones.all - *terraform.graphNodeExpandedResource
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.RootTransformer:

data.aws_availability_zones.all - *terraform.graphNodeExpandedResource
2017/01/17 11:01:52 [DEBUG] vertex 'root.data.aws_availability_zones.all': walking
2017/01/17 11:01:52 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': evaluating
2017/01/17 11:01:52 [TRACE] [walkRefresh] Entering eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:52 [DEBUG] vertex 'root.data.aws_availability_zones.all': evaluating
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalInstanceInfo
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalGetProvider
2017/01/17 11:01:52 [TRACE] [walkRefresh] Entering eval tree: data.aws_availability_zones.all
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalReadState
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalInstanceInfo
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalWriteState
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalRefresh
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:52 [DEBUG] refresh: aws_vpc.us-west-1-vpc: no state, not refreshing
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalWriteState
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [TRACE] [walkRefresh] Exiting eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalIf
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalGetProvider
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalReadDataDiff
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalReadDataApply
data.aws_availability_zones.all: Refreshing state...
2017/01/17 11:01:52 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:52 [DEBUG] Reading Availability Zones.
2017/01/17 11:01:52 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:52 [DEBUG] Availability Zones request options: {
2017/01/17 11:01:52 [DEBUG] plugin: terraform:
2017/01/17 11:01:52 [DEBUG] plugin: terraform: }
2017/01/17 11:01:52 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:52 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAvailabilityZones Details:
2017/01/17 11:01:52 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:52 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Host: ec2.us-west-1.amazonaws.com
2017/01/17 11:01:52 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Content-Length: 51
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-west-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=9d2d560654d91ae17a956e8be810b9ec889748908bdd045bd32c41fc4bff742f
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:52 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160152Z
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:52 [DEBUG] plugin: terraform:
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Action=DescribeAvailabilityZones&Version=2016-11-15
2017/01/17 11:01:52 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:52 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:52 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAvailabilityZones Details:
2017/01/17 11:01:52 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:52 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Transfer-Encoding: chunked
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Content-Type: text/xml;charset=UTF-8
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:52 GMT
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Server: AmazonEC2
2017/01/17 11:01:52 [DEBUG] plugin: terraform: Vary: Accept-Encoding
2017/01/17 11:01:52 [DEBUG] plugin: terraform:
2017/01/17 11:01:52 [DEBUG] plugin: terraform: 35a
2017/01/17 11:01:52 [DEBUG] plugin: terraform: <?xml version="1.0" encoding="UTF-8"?>
2017/01/17 11:01:52 [DEBUG] plugin: terraform: <DescribeAvailabilityZonesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2017/01/17 11:01:52 [DEBUG] plugin: terraform:     <requestId>01350615-4b11-46c7-804c-c84e2b478aaf</requestId>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:     <availabilityZoneInfo>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:         <item>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:             <zoneName>us-west-1a</zoneName>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:             <zoneState>available</zoneState>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:             <regionName>us-west-1</regionName>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:             <messageSet/>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:         </item>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:         <item>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:             <zoneName>us-west-1b</zoneName>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:             <zoneState>available</zoneState>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:             <regionName>us-west-1</regionName>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:             <messageSet/>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:         </item>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:         <item>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:             <zoneName>us-west-1c</zoneName>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:             <zoneState>available</zoneState>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:             <regionName>us-west-1</regionName>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:             <messageSet/>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:         </item>
2017/01/17 11:01:52 [DEBUG] plugin: terraform:     </availabilityZoneInfo>
2017/01/17 11:01:52 [DEBUG] plugin: terraform: </DescribeAvailabilityZonesResponse>
2017/01/17 11:01:52 [DEBUG] plugin: terraform: 0
2017/01/17 11:01:52 [DEBUG] plugin: terraform:
2017/01/17 11:01:52 [DEBUG] plugin: terraform:
2017/01/17 11:01:52 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalWriteState
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalUpdateStateHook
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [TRACE] [walkRefresh] Exiting eval tree: data.aws_availability_zones.all
2017/01/17 11:01:52 [DEBUG] vertex "provider.aws (close)", got dep: "data.aws_availability_zones.all"
2017/01/17 11:01:52 [DEBUG] vertex "provider.aws (close)", got dep: "aws_vpc.us-west-1-vpc"
2017/01/17 11:01:52 [DEBUG] vertex "output.az", got dep: "data.aws_availability_zones.all"
2017/01/17 11:01:52 [DEBUG] vertex 'root.provider.aws (close)': walking
2017/01/17 11:01:52 [DEBUG] vertex 'root.output.az': walking
2017/01/17 11:01:52 [DEBUG] vertex 'root.output.az': evaluating
2017/01/17 11:01:52 [DEBUG] vertex 'root.provider.aws (close)': evaluating
2017/01/17 11:01:52 [TRACE] [walkRefresh] Entering eval tree: output.az
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:52 [TRACE] [walkRefresh] Entering eval tree: provider.aws (close)
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalCloseProvider
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalWriteOutput
2017/01/17 11:01:52 [DEBUG] Interpolating computed list element attribute names (3)
2017/01/17 11:01:52 [TRACE] [walkRefresh] Exiting eval tree: provider.aws (close)
2017/01/17 11:01:52 [DEBUG] vertex "root", got dep: "provider.aws (close)"
2017/01/17 11:01:52 [TRACE] [walkRefresh] Exiting eval tree: output.az
2017/01/17 11:01:52 [DEBUG] vertex "root", got dep: "output.az"
2017/01/17 11:01:52 [DEBUG] vertex 'root.root': walking
2017/01/17 11:01:52 [INFO] Starting shadow graph walk: walkRefresh
2017/01/17 11:01:52 [DEBUG] Waiting for shadow graph to complete...
2017/01/17 11:01:52 [DEBUG] vertex 'root.provider.aws': walking
2017/01/17 11:01:52 [DEBUG] vertex 'root.provider.aws': evaluating
2017/01/17 11:01:52 [TRACE] [walkRefresh] Entering eval tree: provider.aws
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalInitProvider
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalGetProvider
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalBuildProviderConfig
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSetProviderConfig
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalConfigProvider
2017/01/17 11:01:52 [TRACE] [walkRefresh] Exiting eval tree: provider.aws
2017/01/17 11:01:52 [DEBUG] vertex "aws_vpc.us-west-1-vpc", got dep: "provider.aws"
2017/01/17 11:01:52 [DEBUG] vertex "data.aws_availability_zones.all", got dep: "provider.aws"
2017/01/17 11:01:52 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': walking
2017/01/17 11:01:52 [DEBUG] vertex 'root.data.aws_availability_zones.all': walking
2017/01/17 11:01:52 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': evaluating
2017/01/17 11:01:52 [DEBUG] vertex 'root.data.aws_availability_zones.all': evaluating
2017/01/17 11:01:52 [TRACE] [walkRefresh] Entering eval tree: data.aws_availability_zones.all
2017/01/17 11:01:52 [TRACE] [walkRefresh] Entering eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalCountCheckComputed
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary
2017/01/17 11:01:52 [TRACE] [walkRefresh] Exiting eval tree: data.aws_availability_zones.all
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalCountCheckComputed
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary
2017/01/17 11:01:52 [TRACE] [walkRefresh] Exiting eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:52 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': expanding/walking dynamic subgraph
2017/01/17 11:01:52 [DEBUG] vertex 'root.data.aws_availability_zones.all': expanding/walking dynamic subgraph
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.ResourceCountTransformerOld:

aws_vpc.us-west-1-vpc - *terraform.graphNodeExpandedResource
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.TargetsTransformer:

aws_vpc.us-west-1-vpc - *terraform.graphNodeExpandedResource
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.ResourceCountTransformerOld:

data.aws_availability_zones.all - *terraform.graphNodeExpandedResource
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.RootTransformer:

aws_vpc.us-west-1-vpc - *terraform.graphNodeExpandedResource
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.TargetsTransformer:

data.aws_availability_zones.all - *terraform.graphNodeExpandedResource
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.RootTransformer:

data.aws_availability_zones.all - *terraform.graphNodeExpandedResource
2017/01/17 11:01:52 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': walking
2017/01/17 11:01:52 [DEBUG] vertex 'root.data.aws_availability_zones.all': walking
2017/01/17 11:01:52 [DEBUG] vertex 'root.data.aws_availability_zones.all': evaluating
2017/01/17 11:01:52 [TRACE] [walkRefresh] Entering eval tree: data.aws_availability_zones.all
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalInstanceInfo
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalWriteState
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalIf
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalGetProvider
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalReadDataDiff
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalReadDataApply
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalWriteState
2017/01/17 11:01:52 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': evaluating
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalUpdateStateHook
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [TRACE] [walkRefresh] Entering eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:52 [TRACE] [walkRefresh] Exiting eval tree: data.aws_availability_zones.all
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalInstanceInfo
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalGetProvider
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalReadState
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalRefresh
2017/01/17 11:01:52 [DEBUG] refresh: aws_vpc.us-west-1-vpc: no state, not refreshing
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalWriteState
2017/01/17 11:01:52 [DEBUG] vertex "output.az", got dep: "data.aws_availability_zones.all"
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] vertex 'root.output.az': walking
2017/01/17 11:01:52 [DEBUG] vertex 'root.output.az': evaluating
2017/01/17 11:01:52 [TRACE] [walkRefresh] Entering eval tree: output.az
2017/01/17 11:01:52 [TRACE] [walkRefresh] Exiting eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalWriteOutput
2017/01/17 11:01:52 [DEBUG] Interpolating computed list element attribute names (3)
2017/01/17 11:01:52 [DEBUG] vertex "provider.aws (close)", got dep: "aws_vpc.us-west-1-vpc"
2017/01/17 11:01:52 [DEBUG] vertex "provider.aws (close)", got dep: "provider.aws"
2017/01/17 11:01:52 [DEBUG] vertex "provider.aws (close)", got dep: "data.aws_availability_zones.all"
2017/01/17 11:01:52 [DEBUG] vertex 'root.provider.aws (close)': walking
2017/01/17 11:01:52 [DEBUG] vertex 'root.provider.aws (close)': evaluating
2017/01/17 11:01:52 [TRACE] [walkRefresh] Entering eval tree: provider.aws (close)
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalCloseProvider
2017/01/17 11:01:52 [TRACE] [walkRefresh] Exiting eval tree: provider.aws (close)
2017/01/17 11:01:52 [TRACE] [walkRefresh] Exiting eval tree: output.az
2017/01/17 11:01:52 [DEBUG] vertex "root", got dep: "output.az"
2017/01/17 11:01:52 [DEBUG] vertex "root", got dep: "provider.aws (close)"
2017/01/17 11:01:52 [DEBUG] vertex 'root.root': walking
2017/01/17 11:01:52 [INFO] Shadow graph success!
2017/01/17 11:01:52 [TRACE] ConfigTransformer: Starting for path: []
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.ConfigTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
data.aws_availability_zones.all - *terraform.NodePlannableResource
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.OutputTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
data.aws_availability_zones.all - *terraform.NodePlannableResource
output.az - *terraform.NodeApplyableOutput
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.OrphanResourceTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
data.aws_availability_zones.all - *terraform.NodePlannableResource
output.az - *terraform.NodeApplyableOutput
2017/01/17 11:01:52 [TRACE] AttachResourceConfigTransformer: Beginning...
2017/01/17 11:01:52 [TRACE] AttachResourceConfigTransformer: Attach resource config request: data.aws_availability_zones.all
2017/01/17 11:01:52 [TRACE] Attaching resource config: &config.Resource{Mode:1, Name:"all", Type:"aws_availability_zones", RawCount:(*config.RawConfig)(0xc4203bb7a0), RawConfig:(*config.RawConfig)(0xc4203bb6e0), Provisioners:[]*config.Provisioner{}, Provider:"", DependsOn:[]string(nil), Lifecycle:config.ResourceLifecycle{CreateBeforeDestroy:false, PreventDestroy:false, IgnoreChanges:[]string(nil)}}
2017/01/17 11:01:52 [TRACE] AttachResourceConfigTransformer: Attach resource config request: aws_vpc.us-west-1-vpc
2017/01/17 11:01:52 [TRACE] Attaching resource config: &config.Resource{Mode:0, Name:"us-west-1-vpc", Type:"aws_vpc", RawCount:(*config.RawConfig)(0xc4203bb560), RawConfig:(*config.RawConfig)(0xc4203baf60), Provisioners:[]*config.Provisioner(nil), Provider:"", DependsOn:[]string(nil), Lifecycle:config.ResourceLifecycle{CreateBeforeDestroy:false, PreventDestroy:false, IgnoreChanges:[]string(nil)}}
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.AttachResourceConfigTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
data.aws_availability_zones.all - *terraform.NodePlannableResource
output.az - *terraform.NodeApplyableOutput
2017/01/17 11:01:52 [DEBUG] Attaching resource state to "data.aws_availability_zones.all": Type = aws_availability_zones
2017/01/17 11:01:52 [DEBUG] Resource state not found for "aws_vpc.us-west-1-vpc": aws_vpc.us-west-1-vpc
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.AttachStateTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
data.aws_availability_zones.all - *terraform.NodePlannableResource
output.az - *terraform.NodeApplyableOutput
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.RootVariableTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
data.aws_availability_zones.all - *terraform.NodePlannableResource
output.az - *terraform.NodeApplyableOutput
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.MissingProviderTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
data.aws_availability_zones.all - *terraform.NodePlannableResource
output.az - *terraform.NodeApplyableOutput
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.ProviderTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
data.aws_availability_zones.all - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
output.az - *terraform.NodeApplyableOutput
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.DisableProviderTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
data.aws_availability_zones.all - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
output.az - *terraform.NodeApplyableOutput
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.ParentProviderTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
data.aws_availability_zones.all - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
output.az - *terraform.NodeApplyableOutput
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:52 [TRACE] Attach provider request: []string{} aws
2017/01/17 11:01:52 [TRACE] Attaching provider config: *config.ProviderConfig{Name:"aws", Alias:"", RawConfig:(*config.RawConfig)(0xc4203bad20)}
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.AttachProviderConfigTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
data.aws_availability_zones.all - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
output.az - *terraform.NodeApplyableOutput
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.ModuleVariableTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
data.aws_availability_zones.all - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
output.az - *terraform.NodeApplyableOutput
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:52 [DEBUG] ReferenceTransformer: "data.aws_availability_zones.all" references: []
2017/01/17 11:01:52 [DEBUG] ReferenceTransformer: "aws_vpc.us-west-1-vpc" references: []
2017/01/17 11:01:52 [DEBUG] ReferenceTransformer: "output.az" references: [data.aws_availability_zones.all]
2017/01/17 11:01:52 [DEBUG] ReferenceTransformer: "provider.aws" references: []
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.ReferenceTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
data.aws_availability_zones.all - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
output.az - *terraform.NodeApplyableOutput
  data.aws_availability_zones.all - *terraform.NodePlannableResource
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.TargetsTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
data.aws_availability_zones.all - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
output.az - *terraform.NodeApplyableOutput
  data.aws_availability_zones.all - *terraform.NodePlannableResource
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.RootTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
data.aws_availability_zones.all - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
output.az - *terraform.NodeApplyableOutput
  data.aws_availability_zones.all - *terraform.NodePlannableResource
provider.aws - *terraform.NodeApplyableProvider
root - terraform.graphNodeRoot
  aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
  output.az - *terraform.NodeApplyableOutput
2017/01/17 11:01:52 [TRACE] Graph after step *terraform.TransitiveReductionTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
data.aws_availability_zones.all - *terraform.NodePlannableResource
  provider.aws - *terraform.NodeApplyableProvider
output.az - *terraform.NodeApplyableOutput
  data.aws_availability_zones.all - *terraform.NodePlannableResource
provider.aws - *terraform.NodeApplyableProvider
root - terraform.graphNodeRoot
  aws_vpc.us-west-1-vpc - *terraform.NodePlannableResource
  output.az - *terraform.NodeApplyableOutput
2017/01/17 11:01:52 [DEBUG] Starting graph walk: walkPlan
2017/01/17 11:01:52 [DEBUG] vertex 'root.provider.aws': walking
2017/01/17 11:01:52 [DEBUG] vertex 'root.provider.aws': evaluating
2017/01/17 11:01:52 [TRACE] [walkPlan] Entering eval tree: provider.aws
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalInitProvider
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalGetProvider
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalBuildProviderConfig
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSetProviderConfig
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:52 [DEBUG] root: eval: *terraform.EvalConfigProvider
2017/01/17 11:01:52 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:52 [INFO] No assume_role block read from configuration
2017/01/17 11:01:52 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:52 [INFO] Building AWS region structure
2017/01/17 11:01:52 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:52 [INFO] Building AWS auth structure
2017/01/17 11:01:53 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:53 [WARN] Ignoring AWS metadata API endpoint at default location as it doesn't return any instance-id
2017/01/17 11:01:53 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:53 [INFO] AWS Auth provider used: "EnvProvider"
2017/01/17 11:01:53 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:53 [WARN] Invalid log level: "1". Defaulting to level: TRACE. Valid levels are: [TRACE DEBUG INFO WARN ERROR]
2017/01/17 11:01:53 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:53 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2017/01/17 11:01:53 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:53 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Host: sts.amazonaws.com
2017/01/17 11:01:53 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Content-Length: 43
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=959ce8701f3c87b7bb7a7e60c91c59f5912eb4284df0e4518d57f8c43a0f0f77
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:53 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160153Z
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:53 [DEBUG] plugin: terraform:
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Action=GetCallerIdentity&Version=2011-06-15
2017/01/17 11:01:53 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:53 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:53 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2017/01/17 11:01:53 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:53 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Content-Length: 408
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Content-Type: text/xml
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:53 GMT
2017/01/17 11:01:53 [DEBUG] plugin: terraform: X-Amzn-Requestid: 43705e41-dcce-11e6-8d10-bd4064e1a1e2
2017/01/17 11:01:53 [DEBUG] plugin: terraform:
2017/01/17 11:01:53 [DEBUG] plugin: terraform: <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2017/01/17 11:01:53 [DEBUG] plugin: terraform:   <GetCallerIdentityResult>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:     <Arn>arn:aws:iam::123456789101:user/kaji.bikash</Arn>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:     <UserId>ZZZZZZZZZZZZZZZZZZZZZ</UserId>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:     <Account>123456789101</Account>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:   </GetCallerIdentityResult>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:   <ResponseMetadata>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:     <RequestId>43705e41-dcce-11e6-8d10-bd4064e1a1e2</RequestId>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:   </ResponseMetadata>
2017/01/17 11:01:53 [DEBUG] plugin: terraform: </GetCallerIdentityResponse>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:
2017/01/17 11:01:53 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:53 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:53 [DEBUG] Trying to get account ID via iam:GetUser
2017/01/17 11:01:53 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:53 [DEBUG] [aws-sdk-go] DEBUG: Request iam/GetUser Details:
2017/01/17 11:01:53 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:53 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Host: iam.amazonaws.com
2017/01/17 11:01:53 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Content-Length: 33
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-east-1/iam/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=2ed02897f55a6ff9542be97882c5f41c74d6b9a667cc385c05993d418b5208d0
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:53 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160153Z
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:53 [DEBUG] plugin: terraform:
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Action=GetUser&Version=2010-05-08
2017/01/17 11:01:53 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:53 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:53 [DEBUG] [aws-sdk-go] DEBUG: Response iam/GetUser Details:
2017/01/17 11:01:53 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:53 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Content-Length: 471
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Content-Type: text/xml
2017/01/17 11:01:53 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:53 GMT
2017/01/17 11:01:53 [DEBUG] plugin: terraform: X-Amzn-Requestid: 437f7958-dcce-11e6-9cb5-6fc5af467f59
2017/01/17 11:01:53 [DEBUG] plugin: terraform:
2017/01/17 11:01:53 [DEBUG] plugin: terraform: <GetUserResponse xmlns="https://iam.amazonaws.com/doc/2010-05-08/">
2017/01/17 11:01:53 [DEBUG] plugin: terraform:   <GetUserResult>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:     <User>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:       <Path>/</Path>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:       <UserName>kaji.bikash</UserName>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:       <Arn>arn:aws:iam::123456789101:user/kaji.bikash</Arn>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:       <UserId>ZZZZZZZZZZZZZZZZZZZZZ</UserId>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:       <CreateDate>2017-01-13T19:20:26Z</CreateDate>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:     </User>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:   </GetUserResult>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:   <ResponseMetadata>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:     <RequestId>437f7958-dcce-11e6-9cb5-6fc5af467f59</RequestId>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:   </ResponseMetadata>
2017/01/17 11:01:53 [DEBUG] plugin: terraform: </GetUserResponse>
2017/01/17 11:01:53 [DEBUG] plugin: terraform:
2017/01/17 11:01:53 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:53 [TRACE] [walkPlan] Exiting eval tree: provider.aws
2017/01/17 11:01:53 [DEBUG] vertex "data.aws_availability_zones.all", got dep: "provider.aws"
2017/01/17 11:01:53 [DEBUG] vertex "aws_vpc.us-west-1-vpc", got dep: "provider.aws"
2017/01/17 11:01:53 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': walking
2017/01/17 11:01:53 [DEBUG] vertex 'root.data.aws_availability_zones.all': walking
2017/01/17 11:01:53 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': evaluating
2017/01/17 11:01:53 [DEBUG] vertex 'root.data.aws_availability_zones.all': evaluating
2017/01/17 11:01:53 [TRACE] [walkPlan] Entering eval tree: data.aws_availability_zones.all
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:53 [TRACE] [walkPlan] Entering eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalCountCheckComputed
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalCountCheckComputed
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary
2017/01/17 11:01:53 [TRACE] [walkPlan] Exiting eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:53 [TRACE] [walkPlan] Exiting eval tree: data.aws_availability_zones.all
2017/01/17 11:01:53 [DEBUG] vertex 'root.data.aws_availability_zones.all': expanding/walking dynamic subgraph
2017/01/17 11:01:53 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': expanding/walking dynamic subgraph
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.ResourceCountTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [TRACE] OrphanResourceCount: Starting...
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.ResourceCountTransformer:

data.aws_availability_zones.all - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.OrphanResourceCountTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [TRACE] OrphanResourceCount: Starting...
2017/01/17 11:01:53 [TRACE] OrphanResourceCount: Checking: data.aws_availability_zones.all
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.OrphanResourceCountTransformer:

data.aws_availability_zones.all - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [DEBUG] Resource state not found for "aws_vpc.us-west-1-vpc": aws_vpc.us-west-1-vpc
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.AttachStateTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [DEBUG] Attaching resource state to "data.aws_availability_zones.all": Type = aws_availability_zones
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.TargetsTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.AttachStateTransformer:

data.aws_availability_zones.all - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [DEBUG] ReferenceTransformer: "aws_vpc.us-west-1-vpc" references: []
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.TargetsTransformer:

data.aws_availability_zones.all - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.ReferenceTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [DEBUG] ReferenceTransformer: "data.aws_availability_zones.all" references: []
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.RootTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.ReferenceTransformer:

data.aws_availability_zones.all - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.RootTransformer:

data.aws_availability_zones.all - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': walking
2017/01/17 11:01:53 [DEBUG] vertex 'root.data.aws_availability_zones.all': walking
2017/01/17 11:01:53 [DEBUG] vertex 'root.data.aws_availability_zones.all': evaluating
2017/01/17 11:01:53 [TRACE] [walkPlan] Entering eval tree: data.aws_availability_zones.all
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalReadState
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:53 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': evaluating
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalIf
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalIf, err: early exit
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence, err: early exit
2017/01/17 11:01:53 [TRACE] [walkPlan] Exiting eval tree: data.aws_availability_zones.all
2017/01/17 11:01:53 [TRACE] [walkPlan] Entering eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:53 [DEBUG] vertex "output.az", got dep: "data.aws_availability_zones.all"
2017/01/17 11:01:53 [DEBUG] vertex 'root.output.az': walking
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:53 [DEBUG] vertex 'root.output.az': evaluating
2017/01/17 11:01:53 [TRACE] [walkPlan] Entering eval tree: output.az
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalWriteOutput
2017/01/17 11:01:53 [DEBUG] Interpolating computed list element attribute names (3)
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalGetProvider
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalValidateResource
2017/01/17 11:01:53 [TRACE] [walkPlan] Exiting eval tree: output.az
2017/01/17 11:01:53 [DEBUG] vertex "root", got dep: "output.az"
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalReadState
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalDiff
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalCheckPreventDestroy
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalWriteState
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalWriteDiff
2017/01/17 11:01:53 [TRACE] [walkPlan] Exiting eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:53 [DEBUG] vertex "root", got dep: "aws_vpc.us-west-1-vpc"
2017/01/17 11:01:53 [DEBUG] vertex 'root.root': walking
2017/01/17 11:01:53 [INFO] Starting shadow graph walk: walkPlan
2017/01/17 11:01:53 [DEBUG] Waiting for shadow graph to complete...
2017/01/17 11:01:53 [DEBUG] vertex 'root.provider.aws': walking
2017/01/17 11:01:53 [DEBUG] vertex 'root.provider.aws': evaluating
2017/01/17 11:01:53 [TRACE] [walkPlan] Entering eval tree: provider.aws
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalInitProvider
2017/01/17 11:01:53 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:53 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalGetProvider
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalBuildProviderConfig
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSetProviderConfig
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalConfigProvider
2017/01/17 11:01:53 [TRACE] [walkPlan] Exiting eval tree: provider.aws
2017/01/17 11:01:53 [DEBUG] vertex "data.aws_availability_zones.all", got dep: "provider.aws"
2017/01/17 11:01:53 [DEBUG] vertex 'root.data.aws_availability_zones.all': walking
2017/01/17 11:01:53 [DEBUG] vertex 'root.data.aws_availability_zones.all': evaluating
2017/01/17 11:01:53 [DEBUG] vertex "aws_vpc.us-west-1-vpc", got dep: "provider.aws"
2017/01/17 11:01:53 [TRACE] [walkPlan] Entering eval tree: data.aws_availability_zones.all
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:53 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': walking
2017/01/17 11:01:53 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': evaluating
2017/01/17 11:01:53 [TRACE] [walkPlan] Entering eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalCountCheckComputed
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary
2017/01/17 11:01:53 [TRACE] [walkPlan] Exiting eval tree: data.aws_availability_zones.all
2017/01/17 11:01:53 [DEBUG] vertex 'root.data.aws_availability_zones.all': expanding/walking dynamic subgraph
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalCountCheckComputed
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.ResourceCountTransformer:

data.aws_availability_zones.all - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary
2017/01/17 11:01:53 [TRACE] OrphanResourceCount: Starting...
2017/01/17 11:01:53 [TRACE] OrphanResourceCount: Checking: data.aws_availability_zones.all
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.OrphanResourceCountTransformer:

data.aws_availability_zones.all - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [DEBUG] Attaching resource state to "data.aws_availability_zones.all": Type = aws_availability_zones
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.AttachStateTransformer:

data.aws_availability_zones.all - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.TargetsTransformer:

data.aws_availability_zones.all - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [DEBUG] ReferenceTransformer: "data.aws_availability_zones.all" references: []
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.ReferenceTransformer:

data.aws_availability_zones.all - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.RootTransformer:

data.aws_availability_zones.all - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [TRACE] [walkPlan] Exiting eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:53 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': expanding/walking dynamic subgraph
2017/01/17 11:01:53 [DEBUG] vertex 'root.data.aws_availability_zones.all': walking
2017/01/17 11:01:53 [DEBUG] vertex 'root.data.aws_availability_zones.all': evaluating
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.ResourceCountTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [TRACE] OrphanResourceCount: Starting...
2017/01/17 11:01:53 [TRACE] [walkPlan] Entering eval tree: data.aws_availability_zones.all
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalReadState
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.OrphanResourceCountTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalIf
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalIf, err: early exit
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence, err: early exit
2017/01/17 11:01:53 [TRACE] [walkPlan] Exiting eval tree: data.aws_availability_zones.all
2017/01/17 11:01:53 [DEBUG] vertex "output.az", got dep: "data.aws_availability_zones.all"
2017/01/17 11:01:53 [DEBUG] vertex 'root.output.az': walking
2017/01/17 11:01:53 [DEBUG] vertex 'root.output.az': evaluating
2017/01/17 11:01:53 [DEBUG] Resource state not found for "aws_vpc.us-west-1-vpc": aws_vpc.us-west-1-vpc
2017/01/17 11:01:53 [TRACE] [walkPlan] Entering eval tree: output.az
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.AttachStateTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalWriteOutput
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.TargetsTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [DEBUG] Interpolating computed list element attribute names (3)
2017/01/17 11:01:53 [DEBUG] ReferenceTransformer: "aws_vpc.us-west-1-vpc" references: []
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.ReferenceTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.RootTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodePlannableResourceInstance
2017/01/17 11:01:53 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': walking
2017/01/17 11:01:53 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': evaluating
2017/01/17 11:01:53 [TRACE] [walkPlan] Exiting eval tree: output.az
2017/01/17 11:01:53 [TRACE] [walkPlan] Entering eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalGetProvider
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalValidateResource
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalReadState
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalDiff
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalCheckPreventDestroy
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalWriteState
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalWriteDiff
2017/01/17 11:01:53 [TRACE] [walkPlan] Exiting eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:53 [DEBUG] vertex "root", got dep: "aws_vpc.us-west-1-vpc"
2017/01/17 11:01:53 [DEBUG] vertex "root", got dep: "output.az"
2017/01/17 11:01:53 [DEBUG] vertex 'root.root': walking
2017/01/17 11:01:53 [INFO] Shadow graph success!
2017/01/17 11:01:53 [TRACE] DiffTransformer: starting
2017/01/17 11:01:53 [TRACE] DiffTransformer: Module: CREATE: aws_vpc.us-west-1-vpc
  cidr_block:                "" => "172.18.0.0/16" (forces new resource)
  default_network_acl_id:    "" => "<computed>"
  default_route_table_id:    "" => "<computed>"
  default_security_group_id: "" => "<computed>"
  dhcp_options_id:           "" => "<computed>"
  enable_classiclink:        "" => "<computed>"
  enable_dns_hostnames:      "" => "true"
  enable_dns_support:        "" => "true"
  instance_tenancy:          "" => "default" (forces new resource)
  main_route_table_id:       "" => "<computed>"
  tags.%:                    "" => "2"
  tags.Name:                 "" => "us-west-1-staging-vpc"
  tags.env:                  "" => "staging"
2017/01/17 11:01:53 [TRACE] DiffTransformer: Resource "aws_vpc.us-west-1-vpc": *terraform.InstanceDiff{mu:sync.Mutex{state:0, sema:0x0}, Attributes:map[string]*terraform.ResourceAttrDiff{"main_route_table_id":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "tags.%":*terraform.ResourceAttrDiff{Old:"", New:"2", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "tags.Name":*terraform.ResourceAttrDiff{Old:"", New:"us-west-1-staging-vpc", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "cidr_block":*terraform.ResourceAttrDiff{Old:"", New:"172.18.0.0/16", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:true, Sensitive:false, Type:0x0}, "default_route_table_id":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "dhcp_options_id":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "tags.env":*terraform.ResourceAttrDiff{Old:"", New:"staging", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "instance_tenancy":*terraform.ResourceAttrDiff{Old:"", New:"default", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:true, Sensitive:false, Type:0x0}, "enable_dns_support":*terraform.ResourceAttrDiff{Old:"", New:"true", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "enable_dns_hostnames":*terraform.ResourceAttrDiff{Old:"", New:"true", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "enable_classiclink":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "default_security_group_id":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "default_network_acl_id":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "id":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:true, Sensitive:false, Type:0x2}}, Destroy:false, DestroyDeposed:false, DestroyTainted:false}
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.DiffTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.OrphanOutputTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
2017/01/17 11:01:53 [TRACE] AttachResourceConfigTransformer: Beginning...
2017/01/17 11:01:53 [TRACE] AttachResourceConfigTransformer: Attach resource config request: aws_vpc.us-west-1-vpc
2017/01/17 11:01:53 [TRACE] Attaching resource config: &config.Resource{Mode:0, Name:"us-west-1-vpc", Type:"aws_vpc", RawCount:(*config.RawConfig)(0xc4203bb560), RawConfig:(*config.RawConfig)(0xc4203baf60), Provisioners:[]*config.Provisioner(nil), Provider:"", DependsOn:[]string(nil), Lifecycle:config.ResourceLifecycle{CreateBeforeDestroy:false, PreventDestroy:false, IgnoreChanges:[]string(nil)}}
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.AttachResourceConfigTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
2017/01/17 11:01:53 [DEBUG] Resource state not found for "aws_vpc.us-west-1-vpc": aws_vpc.us-west-1-vpc
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.AttachStateTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.MissingProviderTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.ProviderTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  provider.aws - *terraform.NodeApplyableProvider
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.DisableProviderTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  provider.aws - *terraform.NodeApplyableProvider
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.ParentProviderTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  provider.aws - *terraform.NodeApplyableProvider
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:53 [TRACE] Attach provider request: []string{} aws
2017/01/17 11:01:53 [TRACE] Attaching provider config: *config.ProviderConfig{Name:"aws", Alias:"", RawConfig:(*config.RawConfig)(0xc4203bad20)}
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.AttachProviderConfigTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  provider.aws - *terraform.NodeApplyableProvider
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:53 [TRACE] DestroyEdgeTransformer: Beginning destroy edge transformation...
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.DestroyEdgeTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  provider.aws - *terraform.NodeApplyableProvider
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:53 [TRACE] CBDEdgeTransformer: Beginning CBD transformation...
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.CBDEdgeTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  provider.aws - *terraform.NodeApplyableProvider
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.graphTransformerMulti:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  provider.aws - *terraform.NodeApplyableProvider
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.RootVariableTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  provider.aws - *terraform.NodeApplyableProvider
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.OutputTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  provider.aws - *terraform.NodeApplyableProvider
output.az - *terraform.NodeApplyableOutput
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.ModuleVariableTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  provider.aws - *terraform.NodeApplyableProvider
output.az - *terraform.NodeApplyableOutput
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:53 [DEBUG] ReferenceTransformer: "aws_vpc.us-west-1-vpc" references: []
2017/01/17 11:01:53 [DEBUG] ReferenceTransformer: "provider.aws" references: []
2017/01/17 11:01:53 [DEBUG] ReferenceTransformer: "output.az" references: []
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.ReferenceTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  provider.aws - *terraform.NodeApplyableProvider
output.az - *terraform.NodeApplyableOutput
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.CountBoundaryTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  provider.aws - *terraform.NodeApplyableProvider
meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
  aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  output.az - *terraform.NodeApplyableOutput
  provider.aws - *terraform.NodeApplyableProvider
output.az - *terraform.NodeApplyableOutput
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.RootTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  provider.aws - *terraform.NodeApplyableProvider
meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
  aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  output.az - *terraform.NodeApplyableOutput
  provider.aws - *terraform.NodeApplyableProvider
output.az - *terraform.NodeApplyableOutput
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:53 [TRACE] Graph after step *terraform.TransitiveReductionTransformer:

aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  provider.aws - *terraform.NodeApplyableProvider
meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
  aws_vpc.us-west-1-vpc - *terraform.NodeApplyableResource
  output.az - *terraform.NodeApplyableOutput
output.az - *terraform.NodeApplyableOutput
provider.aws - *terraform.NodeApplyableProvider
2017/01/17 11:01:53 [DEBUG] Starting graph walk: walkApply
2017/01/17 11:01:53 [DEBUG] vertex 'root.output.az': walking
2017/01/17 11:01:53 [DEBUG] vertex 'root.provider.aws': walking
2017/01/17 11:01:53 [DEBUG] vertex 'root.output.az': evaluating
2017/01/17 11:01:53 [DEBUG] vertex 'root.provider.aws': evaluating
2017/01/17 11:01:53 [TRACE] [walkApply] Entering eval tree: provider.aws
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalInitProvider
2017/01/17 11:01:53 [TRACE] [walkApply] Entering eval tree: output.az
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalWriteOutput
2017/01/17 11:01:53 [DEBUG] Interpolating computed list element attribute names (3)
2017/01/17 11:01:53 [TRACE] [walkApply] Exiting eval tree: output.az
2017/01/17 11:01:53 [DEBUG] vertex "meta.count-boundary (count boundary fixup)", got dep: "output.az"
2017/01/17 11:01:53 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:53 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalGetProvider
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalBuildProviderConfig
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSetProviderConfig
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:53 [DEBUG] root: eval: *terraform.EvalConfigProvider
2017/01/17 11:01:53 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:53 [INFO] No assume_role block read from configuration
2017/01/17 11:01:53 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:53 [INFO] Building AWS region structure
2017/01/17 11:01:53 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:53 [INFO] Building AWS auth structure
2017/01/17 11:01:54 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:54 [WARN] Ignoring AWS metadata API endpoint at default location as it doesn't return any instance-id
2017/01/17 11:01:54 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:54 [INFO] AWS Auth provider used: "EnvProvider"
2017/01/17 11:01:54 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:54 [WARN] Invalid log level: "1". Defaulting to level: TRACE. Valid levels are: [TRACE DEBUG INFO WARN ERROR]
2017/01/17 11:01:54 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:54 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:54 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Host: sts.amazonaws.com
2017/01/17 11:01:54 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Content-Length: 43
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=3431c4e8d584adb7551c28dc28d93129a12dc1aa5cdac09748539f2749608ed5
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:54 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160154Z
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:54 [DEBUG] plugin: terraform:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Action=GetCallerIdentity&Version=2011-06-15
2017/01/17 11:01:54 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:54 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:54 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:54 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Content-Length: 408
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Content-Type: text/xml
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:53 GMT
2017/01/17 11:01:54 [DEBUG] plugin: terraform: X-Amzn-Requestid: 4402b383-dcce-11e6-bbc3-f580d253fa1c
2017/01/17 11:01:54 [DEBUG] plugin: terraform:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2017/01/17 11:01:54 [DEBUG] plugin: terraform:   <GetCallerIdentityResult>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:     <Arn>arn:aws:iam::123456789101:user/kaji.bikash</Arn>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:     <UserId>ZZZZZZZZZZZZZZZZZZZZZ</UserId>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:     <Account>123456789101</Account>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:   </GetCallerIdentityResult>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:   <ResponseMetadata>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:     <RequestId>4402b383-dcce-11e6-bbc3-f580d253fa1c</RequestId>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:   </ResponseMetadata>
2017/01/17 11:01:54 [DEBUG] plugin: terraform: </GetCallerIdentityResponse>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:54 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:54 [DEBUG] Trying to get account ID via iam:GetUser
2017/01/17 11:01:54 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:54 [DEBUG] [aws-sdk-go] DEBUG: Request iam/GetUser Details:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:54 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Host: iam.amazonaws.com
2017/01/17 11:01:54 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Content-Length: 33
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-east-1/iam/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=448b3ed59c7e5e57665a6ee196ac5e7b1de8d5951d99d664d40bfcc874b55c21
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:54 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160154Z
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:54 [DEBUG] plugin: terraform:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Action=GetUser&Version=2010-05-08
2017/01/17 11:01:54 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:54 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:54 [DEBUG] [aws-sdk-go] DEBUG: Response iam/GetUser Details:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:54 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Content-Length: 471
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Content-Type: text/xml
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:54 GMT
2017/01/17 11:01:54 [DEBUG] plugin: terraform: X-Amzn-Requestid: 440e9a03-dcce-11e6-8fa1-13f0566b0f73
2017/01/17 11:01:54 [DEBUG] plugin: terraform:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: <GetUserResponse xmlns="https://iam.amazonaws.com/doc/2010-05-08/">
2017/01/17 11:01:54 [DEBUG] plugin: terraform:   <GetUserResult>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:     <User>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:       <Path>/</Path>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:       <UserName>kaji.bikash</UserName>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:       <Arn>arn:aws:iam::123456789101:user/kaji.bikash</Arn>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:       <UserId>ZZZZZZZZZZZZZZZZZZZZZ</UserId>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:       <CreateDate>2017-01-13T19:20:26Z</CreateDate>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:     </User>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:   </GetUserResult>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:   <ResponseMetadata>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:     <RequestId>440e9a03-dcce-11e6-8fa1-13f0566b0f73</RequestId>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:   </ResponseMetadata>
2017/01/17 11:01:54 [DEBUG] plugin: terraform: </GetUserResponse>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:54 [TRACE] [walkApply] Exiting eval tree: provider.aws
2017/01/17 11:01:54 [DEBUG] vertex "aws_vpc.us-west-1-vpc", got dep: "provider.aws"
2017/01/17 11:01:54 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': walking
2017/01/17 11:01:54 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': evaluating
2017/01/17 11:01:54 [TRACE] [walkApply] Entering eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:54 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:54 [DEBUG] root: eval: *terraform.EvalInstanceInfo
2017/01/17 11:01:54 [DEBUG] root: eval: *terraform.EvalReadDiff
2017/01/17 11:01:54 [DEBUG] root: eval: *terraform.EvalIf
2017/01/17 11:01:54 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:54 [DEBUG] root: eval: *terraform.EvalIf
2017/01/17 11:01:54 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:54 [DEBUG] root: eval: *terraform.EvalGetProvider
2017/01/17 11:01:54 [DEBUG] root: eval: *terraform.EvalReadState
2017/01/17 11:01:54 [DEBUG] root: eval: *terraform.EvalValidateResource
2017/01/17 11:01:54 [DEBUG] root: eval: *terraform.EvalDiff
2017/01/17 11:01:54 [DEBUG] root: eval: *terraform.EvalReadDiff
2017/01/17 11:01:54 [DEBUG] root: eval: *terraform.EvalCompareDiff
2017/01/17 11:01:54 [DEBUG] root: eval: *terraform.EvalGetProvider
2017/01/17 11:01:54 [DEBUG] root: eval: *terraform.EvalReadState
2017/01/17 11:01:54 [DEBUG] root: eval: *terraform.EvalApply
2017/01/17 11:01:54 [DEBUG] apply: aws_vpc.us-west-1-vpc: executing Apply
aws_vpc.us-west-1-vpc: Creating...
  cidr_block:                "" => "172.18.0.0/16"
  default_network_acl_id:    "" => "<computed>"
  default_route_table_id:    "" => "<computed>"
  default_security_group_id: "" => "<computed>"
  dhcp_options_id:           "" => "<computed>"
  enable_classiclink:        "" => "<computed>"
  enable_dns_hostnames:      "" => "true"
  enable_dns_support:        "" => "true"
  instance_tenancy:          "" => "default"
  main_route_table_id:       "" => "<computed>"
  tags.%:                    "" => "2"
  tags.Name:                 "" => "us-west-1-staging-vpc"
  tags.env:                  "" => "staging"
2017/01/17 11:01:54 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:54 [DEBUG] VPC create config: {
2017/01/17 11:01:54 [DEBUG] plugin: terraform:   CidrBlock: "172.18.0.0/16",
2017/01/17 11:01:54 [DEBUG] plugin: terraform:   InstanceTenancy: "default"
2017/01/17 11:01:54 [DEBUG] plugin: terraform: }
2017/01/17 11:01:54 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:54 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/CreateVpc Details:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:54 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Host: ec2.us-west-1.amazonaws.com
2017/01/17 11:01:54 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Content-Length: 85
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-west-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=7e759a6bf39281db5a1801e9b79618e8b77e1529446a9f179ed32e41a69737c9
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:54 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160154Z
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:54 [DEBUG] plugin: terraform:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Action=CreateVpc&CidrBlock=172.18.0.0%2F16&InstanceTenancy=default&Version=2016-11-15
2017/01/17 11:01:54 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:54 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:54 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/CreateVpc Details:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:54 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Transfer-Encoding: chunked
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Content-Type: text/xml;charset=UTF-8
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:54 GMT
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Server: AmazonEC2
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Vary: Accept-Encoding
2017/01/17 11:01:54 [DEBUG] plugin: terraform:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: 1e4
2017/01/17 11:01:54 [DEBUG] plugin: terraform: <?xml version="1.0" encoding="UTF-8"?>
2017/01/17 11:01:54 [DEBUG] plugin: terraform: <CreateVpcResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2017/01/17 11:01:54 [DEBUG] plugin: terraform:     <requestId>8b7dd4a6-d035-4a1f-93e0-b021a033280c</requestId>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:     <vpc>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:         <vpcId>vpc-2d509749</vpcId>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:         <state>pending</state>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:         <cidrBlock>172.18.0.0/16</cidrBlock>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:         <dhcpOptionsId>dopt-30010955</dhcpOptionsId>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:         <tagSet/>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:         <instanceTenancy>default</instanceTenancy>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:         <isDefault>false</isDefault>
2017/01/17 11:01:54 [DEBUG] plugin: terraform:     </vpc>
2017/01/17 11:01:54 [DEBUG] plugin: terraform: </CreateVpcResponse>
2017/01/17 11:01:54 [DEBUG] plugin: terraform: 0
2017/01/17 11:01:54 [DEBUG] plugin: terraform:
2017/01/17 11:01:54 [DEBUG] plugin: terraform:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:54 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:54 [INFO] VPC ID: vpc-2d509749
2017/01/17 11:01:54 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:54 [DEBUG] Waiting for VPC (vpc-2d509749) to become available
2017/01/17 11:01:54 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:54 [DEBUG] Waiting for state to become: [available]
2017/01/17 11:01:54 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:54 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeVpcs Details:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:54 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Host: ec2.us-west-1.amazonaws.com
2017/01/17 11:01:54 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Content-Length: 59
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-west-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=ff8edf0bceeb7e2a9520f254ef770fd99a3fcaba6dabbee0fdb19aa5964e1a23
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:54 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160154Z
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:54 [DEBUG] plugin: terraform:
2017/01/17 11:01:54 [DEBUG] plugin: terraform: Action=DescribeVpcs&Version=2016-11-15&VpcId.1=vpc-2d509749
2017/01/17 11:01:54 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:55 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:55 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVpcs Details:
2017/01/17 11:01:55 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:55 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Transfer-Encoding: chunked
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Content-Type: text/xml;charset=UTF-8
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:54 GMT
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Server: AmazonEC2
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Vary: Accept-Encoding
2017/01/17 11:01:55 [DEBUG] plugin: terraform:
2017/01/17 11:01:55 [DEBUG] plugin: terraform: 217
2017/01/17 11:01:55 [DEBUG] plugin: terraform: <?xml version="1.0" encoding="UTF-8"?>
2017/01/17 11:01:55 [DEBUG] plugin: terraform: <DescribeVpcsResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2017/01/17 11:01:55 [DEBUG] plugin: terraform:     <requestId>6e181250-953d-4631-b945-fff36f417d4c</requestId>
2017/01/17 11:01:55 [DEBUG] plugin: terraform:     <vpcSet>
2017/01/17 11:01:55 [DEBUG] plugin: terraform:         <item>
2017/01/17 11:01:55 [DEBUG] plugin: terraform:             <vpcId>vpc-2d509749</vpcId>
2017/01/17 11:01:55 [DEBUG] plugin: terraform:             <state>available</state>
2017/01/17 11:01:55 [DEBUG] plugin: terraform:             <cidrBlock>172.18.0.0/16</cidrBlock>
2017/01/17 11:01:55 [DEBUG] plugin: terraform:             <dhcpOptionsId>dopt-30010955</dhcpOptionsId>
2017/01/17 11:01:55 [DEBUG] plugin: terraform:             <instanceTenancy>default</instanceTenancy>
2017/01/17 11:01:55 [DEBUG] plugin: terraform:             <isDefault>false</isDefault>
2017/01/17 11:01:55 [DEBUG] plugin: terraform:         </item>
2017/01/17 11:01:55 [DEBUG] plugin: terraform:     </vpcSet>
2017/01/17 11:01:55 [DEBUG] plugin: terraform: </DescribeVpcsResponse>
2017/01/17 11:01:55 [DEBUG] plugin: terraform: 0
2017/01/17 11:01:55 [DEBUG] plugin: terraform:
2017/01/17 11:01:55 [DEBUG] plugin: terraform:
2017/01/17 11:01:55 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:55 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:55 [INFO] Modifying enable_dns_hostnames vpc attribute for vpc-2d509749: {
2017/01/17 11:01:55 [DEBUG] plugin: terraform:   EnableDnsHostnames: {
2017/01/17 11:01:55 [DEBUG] plugin: terraform:     Value: true
2017/01/17 11:01:55 [DEBUG] plugin: terraform:   },
2017/01/17 11:01:55 [DEBUG] plugin: terraform:   VpcId: "vpc-2d509749"
2017/01/17 11:01:55 [DEBUG] plugin: terraform: }
2017/01/17 11:01:55 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:55 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/ModifyVpcAttribute Details:
2017/01/17 11:01:55 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:55 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Host: ec2.us-west-1.amazonaws.com
2017/01/17 11:01:55 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Content-Length: 93
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-west-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=90525a9bd03eef4c3654a28767ed413d5d295b496960df562eda2ec8b5463a8e
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:55 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160155Z
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:55 [DEBUG] plugin: terraform:
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Action=ModifyVpcAttribute&EnableDnsHostnames.Value=true&Version=2016-11-15&VpcId=vpc-2d509749
2017/01/17 11:01:55 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:55 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:55 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/ModifyVpcAttribute Details:
2017/01/17 11:01:55 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:55 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Transfer-Encoding: chunked
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Content-Type: text/xml;charset=UTF-8
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:55 GMT
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Server: AmazonEC2
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Vary: Accept-Encoding
2017/01/17 11:01:55 [DEBUG] plugin: terraform:
2017/01/17 11:01:55 [DEBUG] plugin: terraform: ec
2017/01/17 11:01:55 [DEBUG] plugin: terraform: <?xml version="1.0" encoding="UTF-8"?>
2017/01/17 11:01:55 [DEBUG] plugin: terraform: <ModifyVpcAttributeResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2017/01/17 11:01:55 [DEBUG] plugin: terraform:     <requestId>f8593389-c521-40d5-b495-c841a48685e2</requestId>
2017/01/17 11:01:55 [DEBUG] plugin: terraform:     <return>true</return>
2017/01/17 11:01:55 [DEBUG] plugin: terraform: </ModifyVpcAttributeResponse>
2017/01/17 11:01:55 [DEBUG] plugin: terraform: 0
2017/01/17 11:01:55 [DEBUG] plugin: terraform:
2017/01/17 11:01:55 [DEBUG] plugin: terraform:
2017/01/17 11:01:55 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:55 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:55 [INFO] Modifying enable_dns_support vpc attribute for vpc-2d509749: {
2017/01/17 11:01:55 [DEBUG] plugin: terraform:   EnableDnsSupport: {
2017/01/17 11:01:55 [DEBUG] plugin: terraform:     Value: true
2017/01/17 11:01:55 [DEBUG] plugin: terraform:   },
2017/01/17 11:01:55 [DEBUG] plugin: terraform:   VpcId: "vpc-2d509749"
2017/01/17 11:01:55 [DEBUG] plugin: terraform: }
2017/01/17 11:01:55 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:55 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/ModifyVpcAttribute Details:
2017/01/17 11:01:55 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:55 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Host: ec2.us-west-1.amazonaws.com
2017/01/17 11:01:55 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Content-Length: 91
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-west-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=973a5beca1668efa2601a600503a73dd3f0456cb5057d441a1a24c3cf6ce2f42
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:55 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160155Z
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:55 [DEBUG] plugin: terraform:
2017/01/17 11:01:55 [DEBUG] plugin: terraform: Action=ModifyVpcAttribute&EnableDnsSupport.Value=true&Version=2016-11-15&VpcId=vpc-2d509749
2017/01/17 11:01:55 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:56 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:56 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/ModifyVpcAttribute Details:
2017/01/17 11:01:56 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:56 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Transfer-Encoding: chunked
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Content-Type: text/xml;charset=UTF-8
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:55 GMT
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Server: AmazonEC2
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Vary: Accept-Encoding
2017/01/17 11:01:56 [DEBUG] plugin: terraform:
2017/01/17 11:01:56 [DEBUG] plugin: terraform: ec
2017/01/17 11:01:56 [DEBUG] plugin: terraform: <?xml version="1.0" encoding="UTF-8"?>
2017/01/17 11:01:56 [DEBUG] plugin: terraform: <ModifyVpcAttributeResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2017/01/17 11:01:56 [DEBUG] plugin: terraform:     <requestId>efe72e74-9f7a-4ef9-8594-48d055963b9b</requestId>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:     <return>true</return>
2017/01/17 11:01:56 [DEBUG] plugin: terraform: </ModifyVpcAttributeResponse>
2017/01/17 11:01:56 [DEBUG] plugin: terraform: 0
2017/01/17 11:01:56 [DEBUG] plugin: terraform:
2017/01/17 11:01:56 [DEBUG] plugin: terraform:
2017/01/17 11:01:56 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:56 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:56 [DEBUG] Matching ^aws:* with Name
2017/01/17 11:01:56 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:56 [DEBUG] Matching ^aws:* with env
2017/01/17 11:01:56 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:56 [DEBUG] Matching ^aws:* with Name
2017/01/17 11:01:56 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:56 [DEBUG] Matching ^aws:* with env
2017/01/17 11:01:56 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:56 [DEBUG] Waiting for state to become: [success]
2017/01/17 11:01:56 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:56 [DEBUG] Creating tags: [{
2017/01/17 11:01:56 [DEBUG] plugin: terraform:   Key: "Name",
2017/01/17 11:01:56 [DEBUG] plugin: terraform:   Value: "us-west-1-staging-vpc"
2017/01/17 11:01:56 [DEBUG] plugin: terraform: } {
2017/01/17 11:01:56 [DEBUG] plugin: terraform:   Key: "env",
2017/01/17 11:01:56 [DEBUG] plugin: terraform:   Value: "staging"
2017/01/17 11:01:56 [DEBUG] plugin: terraform: }] for vpc-2d509749
2017/01/17 11:01:56 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:56 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/CreateTags Details:
2017/01/17 11:01:56 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:56 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Host: ec2.us-west-1.amazonaws.com
2017/01/17 11:01:56 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Content-Length: 145
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-west-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=de72f6105f90f07103667353e11f153bef24908cb221ac1489c97c97585a5046
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:56 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160156Z
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:56 [DEBUG] plugin: terraform:
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Action=CreateTags&ResourceId.1=vpc-2d509749&Tag.1.Key=Name&Tag.1.Value=us-west-1-staging-vpc&Tag.2.Key=env&Tag.2.Value=staging&Version=2016-11-15
2017/01/17 11:01:56 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:56 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:56 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/CreateTags Details:
2017/01/17 11:01:56 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:56 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Transfer-Encoding: chunked
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Content-Type: text/xml;charset=UTF-8
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:55 GMT
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Server: AmazonEC2
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Vary: Accept-Encoding
2017/01/17 11:01:56 [DEBUG] plugin: terraform:
2017/01/17 11:01:56 [DEBUG] plugin: terraform: dc
2017/01/17 11:01:56 [DEBUG] plugin: terraform: <?xml version="1.0" encoding="UTF-8"?>
2017/01/17 11:01:56 [DEBUG] plugin: terraform: <CreateTagsResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2017/01/17 11:01:56 [DEBUG] plugin: terraform:     <requestId>ba2a1510-4f49-4d83-af25-46036f3f3a7e</requestId>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:     <return>true</return>
2017/01/17 11:01:56 [DEBUG] plugin: terraform: </CreateTagsResponse>
2017/01/17 11:01:56 [DEBUG] plugin: terraform: 0
2017/01/17 11:01:56 [DEBUG] plugin: terraform:
2017/01/17 11:01:56 [DEBUG] plugin: terraform:
2017/01/17 11:01:56 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:56 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:56 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeVpcs Details:
2017/01/17 11:01:56 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:56 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Host: ec2.us-west-1.amazonaws.com
2017/01/17 11:01:56 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Content-Length: 59
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-west-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=f9c12863ef10aa825c6af362a642147ae8963dca13e9a554d12d001279352288
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:56 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160156Z
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:56 [DEBUG] plugin: terraform:
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Action=DescribeVpcs&Version=2016-11-15&VpcId.1=vpc-2d509749
2017/01/17 11:01:56 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:56 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:56 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVpcs Details:
2017/01/17 11:01:56 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:56 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Transfer-Encoding: chunked
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Content-Type: text/xml;charset=UTF-8
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:56 GMT
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Server: AmazonEC2
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Vary: Accept-Encoding
2017/01/17 11:01:56 [DEBUG] plugin: terraform:
2017/01/17 11:01:56 [DEBUG] plugin: terraform: 34b
2017/01/17 11:01:56 [DEBUG] plugin: terraform: <?xml version="1.0" encoding="UTF-8"?>
2017/01/17 11:01:56 [DEBUG] plugin: terraform: <DescribeVpcsResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2017/01/17 11:01:56 [DEBUG] plugin: terraform:     <requestId>8f3960ca-90e7-41f6-9d7c-a7dde27b18d3</requestId>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:     <vpcSet>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:         <item>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:             <vpcId>vpc-2d509749</vpcId>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:             <state>available</state>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:             <cidrBlock>172.18.0.0/16</cidrBlock>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:             <dhcpOptionsId>dopt-30010955</dhcpOptionsId>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:             <tagSet>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:                 <item>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:                     <key>env</key>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:                     <value>staging</value>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:                 </item>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:                 <item>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:                     <key>Name</key>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:                     <value>us-west-1-staging-vpc</value>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:                 </item>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:             </tagSet>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:             <instanceTenancy>default</instanceTenancy>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:             <isDefault>false</isDefault>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:         </item>
2017/01/17 11:01:56 [DEBUG] plugin: terraform:     </vpcSet>
2017/01/17 11:01:56 [DEBUG] plugin: terraform: </DescribeVpcsResponse>
2017/01/17 11:01:56 [DEBUG] plugin: terraform: 0
2017/01/17 11:01:56 [DEBUG] plugin: terraform:
2017/01/17 11:01:56 [DEBUG] plugin: terraform:
2017/01/17 11:01:56 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:56 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:56 [DEBUG] Matching ^aws:* with env
2017/01/17 11:01:56 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:56 [DEBUG] Matching ^aws:* with Name
2017/01/17 11:01:56 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:56 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeVpcAttribute Details:
2017/01/17 11:01:56 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:56 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Host: ec2.us-west-1.amazonaws.com
2017/01/17 11:01:56 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Content-Length: 92
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-west-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=01213218c2f756a4f80c94e153bd055e1659915ca89331834f7e86c2e38470d0
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:56 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160156Z
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:56 [DEBUG] plugin: terraform:
2017/01/17 11:01:56 [DEBUG] plugin: terraform: Action=DescribeVpcAttribute&Attribute=enableDnsSupport&Version=2016-11-15&VpcId=vpc-2d509749
2017/01/17 11:01:56 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:57 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:57 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVpcAttribute Details:
2017/01/17 11:01:57 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:57 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Transfer-Encoding: chunked
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Content-Type: text/xml;charset=UTF-8
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:56 GMT
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Server: AmazonEC2
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Vary: Accept-Encoding
2017/01/17 11:01:57 [DEBUG] plugin: terraform:
2017/01/17 11:01:57 [DEBUG] plugin: terraform: 141
2017/01/17 11:01:57 [DEBUG] plugin: terraform: <?xml version="1.0" encoding="UTF-8"?>
2017/01/17 11:01:57 [DEBUG] plugin: terraform: <DescribeVpcAttributeResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2017/01/17 11:01:57 [DEBUG] plugin: terraform:     <requestId>d263aedd-5396-4699-92e8-1a6c03b7717f</requestId>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:     <vpcId>vpc-2d509749</vpcId>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:     <enableDnsSupport>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:         <value>true</value>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:     </enableDnsSupport>
2017/01/17 11:01:57 [DEBUG] plugin: terraform: </DescribeVpcAttributeResponse>
2017/01/17 11:01:57 [DEBUG] plugin: terraform: 0
2017/01/17 11:01:57 [DEBUG] plugin: terraform:
2017/01/17 11:01:57 [DEBUG] plugin: terraform:
2017/01/17 11:01:57 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:57 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:57 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeVpcAttribute Details:
2017/01/17 11:01:57 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:57 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Host: ec2.us-west-1.amazonaws.com
2017/01/17 11:01:57 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Content-Length: 94
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-west-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=971f61b7172ea30d256517ef86f2a8f870307cf36639d58a3a105210eedab64d
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:57 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160157Z
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:57 [DEBUG] plugin: terraform:
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Action=DescribeVpcAttribute&Attribute=enableDnsHostnames&Version=2016-11-15&VpcId=vpc-2d509749
2017/01/17 11:01:57 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:57 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:57 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVpcAttribute Details:
2017/01/17 11:01:57 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:57 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Transfer-Encoding: chunked
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Content-Type: text/xml;charset=UTF-8
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:56 GMT
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Server: AmazonEC2
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Vary: Accept-Encoding
2017/01/17 11:01:57 [DEBUG] plugin: terraform:
2017/01/17 11:01:57 [DEBUG] plugin: terraform: 145
2017/01/17 11:01:57 [DEBUG] plugin: terraform: <?xml version="1.0" encoding="UTF-8"?>
2017/01/17 11:01:57 [DEBUG] plugin: terraform: <DescribeVpcAttributeResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2017/01/17 11:01:57 [DEBUG] plugin: terraform:     <requestId>abf7f15d-a62e-4c9a-bc3c-9e8b12a42881</requestId>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:     <vpcId>vpc-2d509749</vpcId>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:     <enableDnsHostnames>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:         <value>true</value>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:     </enableDnsHostnames>
2017/01/17 11:01:57 [DEBUG] plugin: terraform: </DescribeVpcAttributeResponse>
2017/01/17 11:01:57 [DEBUG] plugin: terraform: 0
2017/01/17 11:01:57 [DEBUG] plugin: terraform:
2017/01/17 11:01:57 [DEBUG] plugin: terraform:
2017/01/17 11:01:57 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:57 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:57 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeVpcClassicLink Details:
2017/01/17 11:01:57 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:57 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Host: ec2.us-west-1.amazonaws.com
2017/01/17 11:01:57 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Content-Length: 69
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-west-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=394b263090b2c13abdda4e37ff4944a1114cda9246b94e3d4f4b5867c7753210
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:57 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160157Z
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:57 [DEBUG] plugin: terraform:
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Action=DescribeVpcClassicLink&Version=2016-11-15&VpcId.1=vpc-2d509749
2017/01/17 11:01:57 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:57 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:57 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVpcClassicLink Details:
2017/01/17 11:01:57 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:57 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Transfer-Encoding: chunked
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Content-Type: text/xml;charset=UTF-8
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:56 GMT
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Server: AmazonEC2
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Vary: Accept-Encoding
2017/01/17 11:01:57 [DEBUG] plugin: terraform:
2017/01/17 11:01:57 [DEBUG] plugin: terraform: 2ab
2017/01/17 11:01:57 [DEBUG] plugin: terraform: <?xml version="1.0" encoding="UTF-8"?>
2017/01/17 11:01:57 [DEBUG] plugin: terraform: <DescribeVpcClassicLinkResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2017/01/17 11:01:57 [DEBUG] plugin: terraform:     <requestId>1ac2bc10-8000-4d91-862c-464bf7af97e8</requestId>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:     <vpcSet>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:         <item>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:             <vpcId>vpc-2d509749</vpcId>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:             <classicLinkEnabled>false</classicLinkEnabled>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:             <tagSet>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:                 <item>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:                     <key>env</key>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:                     <value>staging</value>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:                 </item>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:                 <item>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:                     <key>Name</key>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:                     <value>us-west-1-staging-vpc</value>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:                 </item>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:             </tagSet>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:         </item>
2017/01/17 11:01:57 [DEBUG] plugin: terraform:     </vpcSet>
2017/01/17 11:01:57 [DEBUG] plugin: terraform: </DescribeVpcClassicLinkResponse>
2017/01/17 11:01:57 [DEBUG] plugin: terraform: 0
2017/01/17 11:01:57 [DEBUG] plugin: terraform:
2017/01/17 11:01:57 [DEBUG] plugin: terraform:
2017/01/17 11:01:57 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:57 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:57 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeRouteTables Details:
2017/01/17 11:01:57 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:57 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Host: ec2.us-west-1.amazonaws.com
2017/01/17 11:01:57 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Content-Length: 149
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-west-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=48fb27a8265d0fa3f0cc1fae7adb73724139b8b1c87017e6790d23b620f434ff
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:57 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160157Z
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:57 [DEBUG] plugin: terraform:
2017/01/17 11:01:57 [DEBUG] plugin: terraform: Action=DescribeRouteTables&Filter.1.Name=association.main&Filter.1.Value.1=true&Filter.2.Name=vpc-id&Filter.2.Value.1=vpc-2d509749&Version=2016-11-15
2017/01/17 11:01:57 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:58 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:58 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeRouteTables Details:
2017/01/17 11:01:58 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:58 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Transfer-Encoding: chunked
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Content-Type: text/xml;charset=UTF-8
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:57 GMT
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Server: AmazonEC2
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Vary: Accept-Encoding
2017/01/17 11:01:58 [DEBUG] plugin: terraform:
2017/01/17 11:01:58 [DEBUG] plugin: terraform: 416
2017/01/17 11:01:58 [DEBUG] plugin: terraform: <?xml version="1.0" encoding="UTF-8"?>
2017/01/17 11:01:58 [DEBUG] plugin: terraform: <DescribeRouteTablesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2017/01/17 11:01:58 [DEBUG] plugin: terraform:     <requestId>f6966671-ef07-4445-abf0-ab32d21d072d</requestId>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:     <routeTableSet>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:         <item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:             <routeTableId>rtb-18c7737c</routeTableId>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:             <vpcId>vpc-2d509749</vpcId>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:             <routeSet>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                 <item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <destinationCidrBlock>172.18.0.0/16</destinationCidrBlock>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <gatewayId>local</gatewayId>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <state>active</state>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <origin>CreateRouteTable</origin>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                 </item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:             </routeSet>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:             <associationSet>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                 <item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <routeTableAssociationId>rtbassoc-dd99cfb9</routeTableAssociationId>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <routeTableId>rtb-18c7737c</routeTableId>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <main>true</main>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                 </item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:             </associationSet>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:             <propagatingVgwSet/>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:             <tagSet/>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:         </item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:     </routeTableSet>
2017/01/17 11:01:58 [DEBUG] plugin: terraform: </DescribeRouteTablesResponse>
2017/01/17 11:01:58 [DEBUG] plugin: terraform: 0
2017/01/17 11:01:58 [DEBUG] plugin: terraform:
2017/01/17 11:01:58 [DEBUG] plugin: terraform:
2017/01/17 11:01:58 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:58 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:58 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeNetworkAcls Details:
2017/01/17 11:01:58 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:58 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Host: ec2.us-west-1.amazonaws.com
2017/01/17 11:01:58 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Content-Length: 140
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-west-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=3eb2fb6c47536fdbad2565baf0f20f6831337653b0a445ee33c420bdcdfa6394
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:58 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160158Z
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:58 [DEBUG] plugin: terraform:
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Action=DescribeNetworkAcls&Filter.1.Name=default&Filter.1.Value.1=true&Filter.2.Name=vpc-id&Filter.2.Value.1=vpc-2d509749&Version=2016-11-15
2017/01/17 11:01:58 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:58 [DEBUG] vertex "meta.count-boundary (count boundary fixup)", waiting for: "aws_vpc.us-west-1-vpc"
2017/01/17 11:01:58 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:58 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeNetworkAcls Details:
2017/01/17 11:01:58 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:58 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Transfer-Encoding: chunked
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Content-Type: text/xml;charset=UTF-8
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:57 GMT
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Server: AmazonEC2
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Vary: Accept-Encoding
2017/01/17 11:01:58 [DEBUG] plugin: terraform:
2017/01/17 11:01:58 [DEBUG] plugin: terraform: 67d
2017/01/17 11:01:58 [DEBUG] plugin: terraform: <?xml version="1.0" encoding="UTF-8"?>
2017/01/17 11:01:58 [DEBUG] plugin: terraform: <DescribeNetworkAclsResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2017/01/17 11:01:58 [DEBUG] plugin: terraform:     <requestId>a4e85ab1-8232-4d1a-9d5f-3aefde24bedd</requestId>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:     <networkAclSet>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:         <item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:             <networkAclId>acl-4859f42c</networkAclId>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:             <vpcId>vpc-2d509749</vpcId>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:             <default>true</default>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:             <entrySet>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                 <item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <ruleNumber>100</ruleNumber>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <protocol>-1</protocol>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <ruleAction>allow</ruleAction>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <egress>true</egress>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <cidrBlock>0.0.0.0/0</cidrBlock>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                 </item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                 <item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <ruleNumber>32767</ruleNumber>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <protocol>-1</protocol>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <ruleAction>deny</ruleAction>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <egress>true</egress>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <cidrBlock>0.0.0.0/0</cidrBlock>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                 </item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                 <item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <ruleNumber>100</ruleNumber>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <protocol>-1</protocol>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <ruleAction>allow</ruleAction>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <egress>false</egress>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <cidrBlock>0.0.0.0/0</cidrBlock>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                 </item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                 <item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <ruleNumber>32767</ruleNumber>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <protocol>-1</protocol>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <ruleAction>deny</ruleAction>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <egress>false</egress>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                     <cidrBlock>0.0.0.0/0</cidrBlock>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:                 </item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:             </entrySet>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:             <associationSet/>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:             <tagSet/>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:         </item>
2017/01/17 11:01:58 [DEBUG] plugin: terraform:     </networkAclSet>
2017/01/17 11:01:58 [DEBUG] plugin: terraform: </DescribeNetworkAclsResponse>
2017/01/17 11:01:58 [DEBUG] plugin: terraform: 0
2017/01/17 11:01:58 [DEBUG] plugin: terraform:
2017/01/17 11:01:58 [DEBUG] plugin: terraform:
2017/01/17 11:01:58 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:58 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:58 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeSecurityGroups Details:
2017/01/17 11:01:58 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:58 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Host: ec2.us-west-1.amazonaws.com
2017/01/17 11:01:58 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Content-Length: 149
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-west-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=8cd8353400f98ef621b12c6a755197105b4b48e69aef09d48a59d54890b61469
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:58 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160158Z
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:58 [DEBUG] plugin: terraform:
2017/01/17 11:01:58 [DEBUG] plugin: terraform: Action=DescribeSecurityGroups&Filter.1.Name=group-name&Filter.1.Value.1=default&Filter.2.Name=vpc-id&Filter.2.Value.1=vpc-2d509749&Version=2016-11-15
2017/01/17 11:01:58 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:59 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:59 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeSecurityGroups Details:
2017/01/17 11:01:59 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:59 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Transfer-Encoding: chunked
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Content-Type: text/xml;charset=UTF-8
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:58 GMT
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Server: AmazonEC2
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Vary: Accept-Encoding
2017/01/17 11:01:59 [DEBUG] plugin: terraform:
2017/01/17 11:01:59 [DEBUG] plugin: terraform: 5cc
2017/01/17 11:01:59 [DEBUG] plugin: terraform: <?xml version="1.0" encoding="UTF-8"?>
2017/01/17 11:01:59 [DEBUG] plugin: terraform: <DescribeSecurityGroupsResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2017/01/17 11:01:59 [DEBUG] plugin: terraform:     <requestId>6c153bb2-261e-451c-ac18-d79cd6b32911</requestId>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:     <securityGroupInfo>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:         <item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             <ownerId>123456789101</ownerId>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             <groupId>sg-3e4b9b59</groupId>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             <groupName>default</groupName>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             <groupDescription>default VPC security group</groupDescription>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             <vpcId>vpc-2d509749</vpcId>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             <ipPermissions>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                 <item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <ipProtocol>-1</ipProtocol>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <groups>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                         <item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                             <userId>123456789101</userId>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                             <groupId>sg-3e4b9b59</groupId>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                         </item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     </groups>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <ipRanges/>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <ipv6Ranges/>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <prefixListIds/>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                 </item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             </ipPermissions>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             <ipPermissionsEgress>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                 <item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <ipProtocol>-1</ipProtocol>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <groups/>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <ipRanges>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                         <item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                             <cidrIp>0.0.0.0/0</cidrIp>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                         </item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     </ipRanges>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <ipv6Ranges/>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <prefixListIds/>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                 </item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             </ipPermissionsEgress>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:         </item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:     </securityGroupInfo>
2017/01/17 11:01:59 [DEBUG] plugin: terraform: </DescribeSecurityGroupsResponse>
2017/01/17 11:01:59 [DEBUG] plugin: terraform: 0
2017/01/17 11:01:59 [DEBUG] plugin: terraform:
2017/01/17 11:01:59 [DEBUG] plugin: terraform:
2017/01/17 11:01:59 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:59 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:59 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeRouteTables Details:
2017/01/17 11:01:59 [DEBUG] plugin: terraform: ---[ REQUEST POST-SIGN ]-----------------------------
2017/01/17 11:01:59 [DEBUG] plugin: terraform: POST / HTTP/1.1
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Host: ec2.us-west-1.amazonaws.com
2017/01/17 11:01:59 [DEBUG] plugin: terraform: User-Agent: APN/1.0 HashiCorp/1.0 Terraform/0.8.4
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Content-Length: 149
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Authorization: AWS4-HMAC-SHA256 Credential=XXXXXXXXXXXXXXXXXXXX/20170117/us-west-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=02e4f2097eeb0283fd94e3cff8cf184045f9a158573a6349c9522735501da8f0
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2017/01/17 11:01:59 [DEBUG] plugin: terraform: X-Amz-Date: 20170117T160159Z
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Accept-Encoding: gzip
2017/01/17 11:01:59 [DEBUG] plugin: terraform:
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Action=DescribeRouteTables&Filter.1.Name=association.main&Filter.1.Value.1=true&Filter.2.Name=vpc-id&Filter.2.Value.1=vpc-2d509749&Version=2016-11-15
2017/01/17 11:01:59 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:59 [DEBUG] plugin: terraform: aws-provider (internal) 2017/01/17 11:01:59 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeRouteTables Details:
2017/01/17 11:01:59 [DEBUG] plugin: terraform: ---[ RESPONSE ]--------------------------------------
2017/01/17 11:01:59 [DEBUG] plugin: terraform: HTTP/1.1 200 OK
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Connection: close
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Transfer-Encoding: chunked
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Content-Type: text/xml;charset=UTF-8
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Date: Tue, 17 Jan 2017 16:01:58 GMT
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Server: AmazonEC2
2017/01/17 11:01:59 [DEBUG] plugin: terraform: Vary: Accept-Encoding
2017/01/17 11:01:59 [DEBUG] plugin: terraform:
2017/01/17 11:01:59 [DEBUG] plugin: terraform: 416
2017/01/17 11:01:59 [DEBUG] plugin: terraform: <?xml version="1.0" encoding="UTF-8"?>
2017/01/17 11:01:59 [DEBUG] plugin: terraform: <DescribeRouteTablesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2017/01/17 11:01:59 [DEBUG] plugin: terraform:     <requestId>b87112ef-6e33-4a3d-a990-bd6053fff777</requestId>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:     <routeTableSet>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:         <item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             <routeTableId>rtb-18c7737c</routeTableId>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             <vpcId>vpc-2d509749</vpcId>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             <routeSet>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                 <item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <destinationCidrBlock>172.18.0.0/16</destinationCidrBlock>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <gatewayId>local</gatewayId>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <state>active</state>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <origin>CreateRouteTable</origin>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                 </item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             </routeSet>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             <associationSet>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                 <item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <routeTableAssociationId>rtbassoc-dd99cfb9</routeTableAssociationId>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <routeTableId>rtb-18c7737c</routeTableId>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                     <main>true</main>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:                 </item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             </associationSet>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             <propagatingVgwSet/>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:             <tagSet/>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:         </item>
2017/01/17 11:01:59 [DEBUG] plugin: terraform:     </routeTableSet>
2017/01/17 11:01:59 [DEBUG] plugin: terraform: </DescribeRouteTablesResponse>
2017/01/17 11:01:59 [DEBUG] plugin: terraform: 0
2017/01/17 11:01:59 [DEBUG] plugin: terraform:
2017/01/17 11:01:59 [DEBUG] plugin: terraform:
2017/01/17 11:01:59 [DEBUG] plugin: terraform: -----------------------------------------------------
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalWriteState
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalApplyProvisioners
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalIf
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalWriteState
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalWriteDiff
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalApplyPost
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalUpdateStateHook
aws_vpc.us-west-1-vpc: Creation complete
2017/01/17 11:01:59 [TRACE] Preserving existing state lineage "f57a1978-5316-4a2a-9152-c3db5dc23306"
2017/01/17 11:01:59 [TRACE] [walkApply] Exiting eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:59 [DEBUG] vertex "meta.count-boundary (count boundary fixup)", got dep: "aws_vpc.us-west-1-vpc"
2017/01/17 11:01:59 [DEBUG] vertex 'root.meta.count-boundary (count boundary fixup)': walking
2017/01/17 11:01:59 [DEBUG] vertex 'root.meta.count-boundary (count boundary fixup)': evaluating
2017/01/17 11:01:59 [TRACE] [walkApply] Entering eval tree: meta.count-boundary (count boundary fixup)
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundaryGlobal
2017/01/17 11:01:59 [TRACE] EvalCountFixZeroOneBoundaryGlobal: count 1, search "data.aws_availability_zones.all.0", replace "data.aws_availability_zones.all"
2017/01/17 11:01:59 [TRACE] EvalCountFixZeroOneBoundaryGlobal: count 1, search "aws_vpc.us-west-1-vpc.0", replace "aws_vpc.us-west-1-vpc"
2017/01/17 11:01:59 [TRACE] [walkApply] Exiting eval tree: meta.count-boundary (count boundary fixup)
2017/01/17 11:01:59 [INFO] Starting shadow graph walk: walkApply
2017/01/17 11:01:59 [DEBUG] Waiting for shadow graph to complete...
2017/01/17 11:01:59 [DEBUG] vertex 'root.provider.aws': walking
2017/01/17 11:01:59 [DEBUG] vertex 'root.provider.aws': evaluating
2017/01/17 11:01:59 [TRACE] [walkApply] Entering eval tree: provider.aws
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalInitProvider
2017/01/17 11:01:59 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:59 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalGetProvider
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:59 [DEBUG] vertex 'root.output.az': walking
2017/01/17 11:01:59 [DEBUG] vertex 'root.output.az': evaluating
2017/01/17 11:01:59 [TRACE] [walkApply] Entering eval tree: output.az
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalWriteOutput
2017/01/17 11:01:59 [DEBUG] Interpolating computed list element attribute names (3)
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalBuildProviderConfig
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalSetProviderConfig
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalOpFilter
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalConfigProvider
2017/01/17 11:01:59 [TRACE] [walkApply] Exiting eval tree: provider.aws
2017/01/17 11:01:59 [DEBUG] vertex "aws_vpc.us-west-1-vpc", got dep: "provider.aws"
2017/01/17 11:01:59 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': walking
2017/01/17 11:01:59 [TRACE] [walkApply] Exiting eval tree: output.az
2017/01/17 11:01:59 [DEBUG] vertex 'root.aws_vpc.us-west-1-vpc': evaluating
2017/01/17 11:01:59 [TRACE] [walkApply] Entering eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:59 [DEBUG] vertex "meta.count-boundary (count boundary fixup)", got dep: "output.az"
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalSequence
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalInstanceInfo
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalReadDiff
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalIf
2017/01/17 11:01:59 [DEBUG] root: eval: terraform.EvalNoop
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalIf
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalInterpolate
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalGetProvider
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalReadState
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalValidateResource
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalDiff
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalReadDiff
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalCompareDiff
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalGetProvider
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalReadState
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalApply
2017/01/17 11:01:59 [DEBUG] apply: aws_vpc.us-west-1-vpc: executing Apply
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalWriteState
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalApplyProvisioners
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalIf
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalWriteState
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalWriteDiff
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalApplyPost
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalUpdateStateHook
2017/01/17 11:01:59 [TRACE] [walkApply] Exiting eval tree: aws_vpc.us-west-1-vpc
2017/01/17 11:01:59 [DEBUG] vertex "meta.count-boundary (count boundary fixup)", got dep: "aws_vpc.us-west-1-vpc"
2017/01/17 11:01:59 [DEBUG] vertex 'root.meta.count-boundary (count boundary fixup)': walking
2017/01/17 11:01:59 [DEBUG] vertex 'root.meta.count-boundary (count boundary fixup)': evaluating
2017/01/17 11:01:59 [TRACE] [walkApply] Entering eval tree: meta.count-boundary (count boundary fixup)
2017/01/17 11:01:59 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundaryGlobal
2017/01/17 11:01:59 [TRACE] EvalCountFixZeroOneBoundaryGlobal: count 1, search "data.aws_availability_zones.all.0", replace "data.aws_availability_zones.all"
2017/01/17 11:01:59 [TRACE] EvalCountFixZeroOneBoundaryGlobal: count 1, search "aws_vpc.us-west-1-vpc.0", replace "aws_vpc.us-west-1-vpc"
2017/01/17 11:01:59 [TRACE] [walkApply] Exiting eval tree: meta.count-boundary (count boundary fixup)
2017/01/17 11:01:59 [INFO] Shadow graph success!
2017/01/17 11:01:59 [TRACE] Preserving existing state lineage "f57a1978-5316-4a2a-9152-c3db5dc23306"

Apply complete! Resources: 1 added, 0 changed, 0 destroyed.

The state of your infrastructure has been saved to the path
below. This state is required to modify and destroy your
2017/01/17 11:01:59 [DEBUG] plugin: waiting for all plugin processes to complete...
infrastructure, so keep it safe. To inspect the complete state
use the `terraform show` command.

State path: terraform.tfstate

Outputs:

az = [
    us-west-1a,
    us-west-1b,
    us-west-1c
]
2017/01/17 11:01:59 [DEBUG] plugin: /usr/local/Cellar/terraform/0.8.4/bin/terraform: plugin process exited
jen20 commented 7 years ago

Hi! The response from AWS has three availability zones so Terraform is doing the correct thing here. Are you in an early access programme or similar? If you can provision into 1c I would be consider that a win :-)

If there is no reason for your account to have this, I would bring it up with AWS support as it is coming from their end. Thanks for opening an issue, hopefully it is indicative of capacity expansion in us-west-1.

kaji-bikash commented 7 years ago

The response from AWS has three availability zones so Terraform is doing the correct thing here.

you bet!

Are you in an early access programme or similar?

I don't think so

If you can provision into 1c I would be consider that a win :-)

Yeah, I should definitely try that.

🤞 AZ expansion in northern California region(us-west-1); in that way, we can have EFS and Aurora

kaji-bikash commented 7 years ago

It's a definite bug 🐛 but hoping they are just in transition to adding new AZ.

us-west-1azbug

Looks like it's a per account this https://github.com/jsonmaur/aws-regions

ghost commented 4 years ago

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.