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.55k stars 9.53k forks source link

Updating aws_route53_record from A to CNAME still not quite working correctly #18509

Closed eherot closed 6 years ago

eherot commented 6 years ago

I can't quite tell if this is a regression of #9732 but it does seem awfully similar. Just like in the previous issue, I am try to convert this:

resource "aws_route53_record" "jira" {
  zone_id = "Z14OCBPOVCR0Z5"
  name = "jira.stage.internal.gasbuddy.engineering"
  type = "A"

  alias {
    name = "dualstack.a776ebf990d1311e89c74122f5279532-1675795878.us-east-1.elb.amazonaws.com."
    zone_id = "Z35SXDOTRQ7X7K"
    evaluate_target_health = false
  }
}

to this:

resource "aws_route53_record" "jira" {
  zone_id = "Z14OCBPOVCR0Z5"
  name = "jira.stage.internal.gasbuddy.engineering"
  type = "CNAME"
  records = ["kops-oauth-ingress.stage.internal.gasbuddy.engineering"]
  ttl = "300"
}

and instead of it working, I get this:

aws_route53_record.jira: Modifying... (ID: Z14OCBPOVCR0Z5_jira.stage.internal.gasbuddy.engineering_A)
  alias.#:                                 "1" => "0"
  alias.3312272711.evaluate_target_health: "false" => "false"
  alias.3312272711.name:                   "a776ebf990d1311e89c74122f5279532-1675795878.us-east-1.elb.amazonaws.com" => ""
  alias.3312272711.zone_id:                "Z35SXDOTRQ7X7K" => ""
  records.#:                               "0" => "1"
  records.1292767570:                      "" => "kops-oauth-ingress.stage.internal.gasbuddy.engineering"
  ttl:                                     "0" => "300"
  type:                                    "A" => "CNAME"

Error: Error applying plan:

1 error(s) occurred:

* aws_route53_record.jira: 1 error(s) occurred:

* aws_route53_record.jira: [ERR]: Error building changeset: InvalidChangeBatch: Tried to delete resource record set [name='jira.stage.internal.gasbuddy.engineering.', type='A'] but the values provided do not match the current values
    status code: 400, request id: 86e18a16-8c45-11e8-9f55-751f33f26c17

...and it neither deletes nor modifies either the object in state or the object in AWS.

Here's the version info (also in the DEBUG output):

❯ terraform version                                                                                                                                                                                    
Terraform v0.11.7
+ provider.aws v1.28.0

Here's the full debug output:

❯ TF_LOG=debug terraform apply -auto-approve -target=aws_route53_record.jira
2018/07/20 14:05:30 [INFO] Terraform version: 0.11.7  41e50bd32a8825a84535e353c3674af8ce799161
2018/07/20 14:05:30 [INFO] Go runtime version: go1.10.1
2018/07/20 14:05:30 [INFO] CLI args: []string{"/usr/local/bin/terraform", "apply", "-auto-approve", "-target=aws_route53_record.jira"}
2018/07/20 14:05:30 [DEBUG] Attempting to open CLI config file: /Users/eherot/.terraformrc
2018/07/20 14:05:30 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2018/07/20 14:05:30 [INFO] CLI command args: []string{"apply", "-auto-approve", "-target=aws_route53_record.jira"}
2018/07/20 14:05:30 [INFO] command: empty terraform config, returning nil
2018/07/20 14:05:30 [DEBUG] command: no data state file found for backend config
2018/07/20 14:05:30 [DEBUG] New state was assigned lineage "9c6aa74c-7018-4382-aa9f-03d664d0dfc2"
2018/07/20 14:05:30 [INFO] command: backend initialized: <nil>
2018/07/20 14:05:30 [DEBUG] checking for provider in "."
2018/07/20 14:05:30 [DEBUG] checking for provider in "/usr/local/bin"
2018/07/20 14:05:30 [DEBUG] checking for provider in ".terraform/plugins/darwin_amd64"
2018/07/20 14:05:30 [DEBUG] found provider "terraform-provider-aws_v1.28.0_x4"
2018/07/20 14:05:30 [DEBUG] found valid plugin: "aws", "1.28.0", "/Users/eherot/git_repos/gasbuddy/infrastructure/terraform/staging/route53/test/.terraform/plugins/darwin_amd64/terraform-provider-aws_v1.28.0_x4"
2018/07/20 14:05:30 [DEBUG] checking for provisioner in "."
2018/07/20 14:05:30 [DEBUG] checking for provisioner in "/usr/local/bin"
2018/07/20 14:05:30 [DEBUG] checking for provisioner in ".terraform/plugins/darwin_amd64"
2018/07/20 14:05:30 [INFO] command: backend <nil> is not enhanced, wrapping in local
2018/07/20 14:05:30 [INFO] backend/local: starting Apply operation
2018/07/20 14:05:30 [INFO] terraform: building graph: GraphTypeInput
2018/07/20 14:05:30 [DEBUG] Attaching resource state to "aws_route53_record.jira": &terraform.ResourceState{Type:"aws_route53_record", Dependencies:[]string{}, Primary:(*terraform.InstanceState)(0xc4200c6730), Deposed:[]*terraform.InstanceState{}, Provider:"provider.aws", mu:sync.Mutex{state:0, sema:0x0}}
2018/07/20 14:05:30 [TRACE] Graph after step *terraform.AttachStateTransformer:

aws_route53_record.jira - *terraform.NodeAbstractResource
2018/07/20 14:05:30 [TRACE] Graph after step *terraform.RootVariableTransformer:

aws_route53_record.jira - *terraform.NodeAbstractResource
2018/07/20 14:05:30 [DEBUG] ReferenceTransformer: "aws_route53_record.jira" references: []
2018/07/20 14:05:30 [DEBUG] ReferenceTransformer: "provider.aws" references: []
2018/07/20 14:05:30 [TRACE] Graph after step *terraform.ReferenceTransformer:

aws_route53_record.jira - *terraform.NodeAbstractResource
  provider.aws - *terraform.NodeApplyableProvider
provider.aws - *terraform.NodeApplyableProvider
2018-07-20T14:05:30.626-0400 [DEBUG] plugin: starting plugin: path=/Users/eherot/git_repos/gasbuddy/infrastructure/terraform/staging/route53/test/.terraform/plugins/darwin_amd64/terraform-provider-aws_v1.28.0_x4 args=[/Users/eherot/git_repos/gasbuddy/infrastructure/terraform/staging/route53/test/.terraform/plugins/darwin_amd64/terraform-provider-aws_v1.28.0_x4]
2018-07-20T14:05:30.637-0400 [DEBUG] plugin: waiting for RPC address: path=/Users/eherot/git_repos/gasbuddy/infrastructure/terraform/staging/route53/test/.terraform/plugins/darwin_amd64/terraform-provider-aws_v1.28.0_x4
2018-07-20T14:05:30.649-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: plugin address: timestamp=2018-07-20T14:05:30.649-0400 address=/var/folders/r1/l1dd4fb912q0tmtvkmc5p1v00000gn/T/plugin184508091 network=unix
2018/07/20 14:05:30 [INFO] terraform: building graph: GraphTypeValidate
2018/07/20 14:05:30 [TRACE] ConfigTransformer: Starting for path: []
2018/07/20 14:05:30 [TRACE] Graph after step *terraform.ConfigTransformer:

aws_route53_record.jira - *terraform.NodeValidatableResource
2018/07/20 14:05:30 [TRACE] Graph after step *terraform.LocalTransformer:

aws_route53_record.jira - *terraform.NodeValidatableResource
2018/07/20 14:05:30 [TRACE] Graph after step *terraform.OutputTransformer:

aws_route53_record.jira - *terraform.NodeValidatableResource
2018/07/20 14:05:30 [DEBUG] Attaching resource state to "aws_route53_record.jira": &terraform.ResourceState{Type:"aws_route53_record", Dependencies:[]string{}, Primary:(*terraform.InstanceState)(0xc4200c6730), Deposed:[]*terraform.InstanceState{}, Provider:"provider.aws", mu:sync.Mutex{state:0, sema:0x0}}
2018/07/20 14:05:30 [TRACE] Graph after step *terraform.AttachStateTransformer:

aws_route53_record.jira - *terraform.NodeValidatableResource
2018/07/20 14:05:30 [DEBUG] ReferenceTransformer: "aws_route53_record.jira" references: []
2018/07/20 14:05:30 [DEBUG] ReferenceTransformer: "provider.aws" references: []
2018/07/20 14:05:30 [DEBUG] Starting graph walk: walkValidate
2018/07/20 14:05:30 [DEBUG] Attaching resource state to "aws_route53_record.jira": &terraform.ResourceState{Type:"aws_route53_record", Dependencies:[]string{}, Primary:(*terraform.InstanceState)(0xc4200c6730), Deposed:[]*terraform.InstanceState{}, Provider:"provider.aws", mu:sync.Mutex{state:0, sema:0x0}}
2018/07/20 14:05:30 [DEBUG] ReferenceTransformer: "aws_route53_record.jira" references: []
2018/07/20 14:05:30 [INFO] backend/local: apply calling Refresh
2018/07/20 14:05:30 [INFO] terraform: building graph: GraphTypeRefresh
2018/07/20 14:05:30 [TRACE] ConfigTransformer: Starting for path: []
2018/07/20 14:05:30 [TRACE] Graph after step *terraform.ConfigTransformer:

aws_route53_record.jira - *terraform.NodeRefreshableManagedResource
2018/07/20 14:05:30 [TRACE] ConfigTransformer: Starting for path: []
2018/07/20 14:05:30 [DEBUG] Attaching resource state to "aws_route53_record.jira": &terraform.ResourceState{Type:"aws_route53_record", Dependencies:[]string{}, Primary:(*terraform.InstanceState)(0xc42050c4b0), Deposed:[]*terraform.InstanceState{}, Provider:"provider.aws", mu:sync.Mutex{state:0, sema:0x0}}
2018/07/20 14:05:30 [DEBUG] ReferenceTransformer: "provider.aws" references: []
2018/07/20 14:05:30 [DEBUG] ReferenceTransformer: "aws_route53_record.jira" references: []
2018-07-20T14:05:30.705-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:30 [INFO] No assume_role block read from configuration
2018-07-20T14:05:30.705-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:30 [INFO] Building AWS region structure
2018-07-20T14:05:30.705-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:30 [INFO] Building AWS auth structure
2018-07-20T14:05:30.705-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:30 [INFO] Setting AWS metadata API timeout to 100ms
2018-07-20T14:05:31.448-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:31 [INFO] Ignoring AWS metadata API endpoint at default location as it doesn't return any instance-id
2018-07-20T14:05:31.448-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:31 [INFO] AWS Auth provider used: "EnvProvider"
2018-07-20T14:05:31.449-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:31 [INFO] Initializing DeviceFarm SDK connection
2018-07-20T14:05:31.449-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:31 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2018-07-20T14:05:31.449-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2018-07-20T14:05:31.449-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: POST / HTTP/1.1
2018-07-20T14:05:31.449-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Host: sts.amazonaws.com
2018-07-20T14:05:31.449-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: User-Agent: aws-sdk-go/1.14.26 (go1.9.2; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.11.8-dev
2018-07-20T14:05:31.449-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 43
2018-07-20T14:05:31.449-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAIIYTP5UORTEQA77Q/20180720/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=d9b01ae1b9c38ce77eca5554e08f2cb5ce3875039b228ce9e9abde39aaf46e68
2018-07-20T14:05:31.449-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2018-07-20T14:05:31.450-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amz-Date: 20180720T180531Z
2018-07-20T14:05:31.450-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Accept-Encoding: gzip
2018-07-20T14:05:31.450-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:31.450-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Action=GetCallerIdentity&Version=2011-06-15
2018-07-20T14:05:31.450-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:31 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ RESPONSE ]--------------------------------------
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: HTTP/1.1 200 OK
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Connection: close
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 403
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: text/xml
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Date: Fri, 20 Jul 2018 18:05:31 GMT
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amzn-Requestid: 7dd4e130-8c47-11e8-a3e2-6b526a502240
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:31 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   <GetCallerIdentityResult>
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <Arn>arn:aws:iam::267230788984:user/eherot</Arn>
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <UserId>AIDAIIDUKRBUPECRHGST4</UserId>
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <Account>267230788984</Account>
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   </GetCallerIdentityResult>
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   <ResponseMetadata>
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <RequestId>7dd4e130-8c47-11e8-a3e2-6b526a502240</RequestId>
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   </ResponseMetadata>
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: </GetCallerIdentityResponse>
2018-07-20T14:05:31.640-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:31 [DEBUG] Trying to get account ID via iam:GetUser
2018-07-20T14:05:31.641-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:31 [DEBUG] [aws-sdk-go] DEBUG: Request iam/GetUser Details:
2018-07-20T14:05:31.641-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2018-07-20T14:05:31.641-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: POST / HTTP/1.1
2018-07-20T14:05:31.641-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Host: iam.amazonaws.com
2018-07-20T14:05:31.641-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: User-Agent: aws-sdk-go/1.14.26 (go1.9.2; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.11.8-dev
2018-07-20T14:05:31.641-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 33
2018-07-20T14:05:31.641-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAIIYTP5UORTEQA77Q/20180720/us-east-1/iam/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=8de8b865ced8e10a0f94ef7821645552f7e24fd0aeb99dd34d49b16dc67caf36
2018-07-20T14:05:31.641-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2018-07-20T14:05:31.641-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amz-Date: 20180720T180531Z
2018-07-20T14:05:31.641-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Accept-Encoding: gzip
2018-07-20T14:05:31.641-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:31.641-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Action=GetUser&Version=2010-05-08
2018-07-20T14:05:31.641-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:34 [DEBUG] [aws-sdk-go] DEBUG: Response iam/GetUser Details:
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ RESPONSE ]--------------------------------------
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: HTTP/1.1 200 OK
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Connection: close
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 525
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: text/xml
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Date: Fri, 20 Jul 2018 18:05:34 GMT
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amzn-Requestid: 7fb36579-8c47-11e8-9ea9-93e1ce3acea0
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:34 [DEBUG] [aws-sdk-go] <GetUserResponse xmlns="https://iam.amazonaws.com/doc/2010-05-08/">
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   <GetUserResult>
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <User>
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <Path>/</Path>
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <PasswordLastUsed>2018-07-20T15:06:16Z</PasswordLastUsed>
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <UserName>eherot</UserName>
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <Arn>arn:aws:iam::267230788984:user/eherot</Arn>
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <UserId>AIDAIIDUKRBUPECRHGST4</UserId>
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <CreateDate>2017-09-12T16:44:20Z</CreateDate>
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     </User>
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   </GetUserResult>
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   <ResponseMetadata>
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <RequestId>7fb36579-8c47-11e8-9ea9-93e1ce3acea0</RequestId>
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   </ResponseMetadata>
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: </GetUserResponse>
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:34 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details:
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: POST / HTTP/1.1
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Host: ec2.us-east-1.amazonaws.com
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: User-Agent: aws-sdk-go/1.14.26 (go1.9.2; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.11.8-dev
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 87
2018-07-20T14:05:34.833-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAIIYTP5UORTEQA77Q/20180720/us-east-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=c5063348a122c8203a45c5155b69f4d81571743f92535ad6b5bb1c158bf65771
2018-07-20T14:05:34.834-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2018-07-20T14:05:34.834-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amz-Date: 20180720T180534Z
2018-07-20T14:05:34.834-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Accept-Encoding: gzip
2018-07-20T14:05:34.834-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:34.834-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15
2018-07-20T14:05:34.834-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:34 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details:
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ RESPONSE ]--------------------------------------
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: HTTP/1.1 200 OK
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Connection: close
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Transfer-Encoding: chunked
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: text/xml;charset=UTF-8
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Date: Fri, 20 Jul 2018 18:05:34 GMT
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Server: AmazonEC2
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Vary: Accept-Encoding
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:34 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: <DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <requestId>cc313051-4dfe-4c8d-9e61-6cbb336797d1</requestId>
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <accountAttributeSet>
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:         <item>
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:             <attributeName>supported-platforms</attributeName>
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:             <attributeValueSet>
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:                 <item>
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:                     <attributeValue>VPC</attributeValue>
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:                 </item>
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:             </attributeValueSet>
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:         </item>
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     </accountAttributeSet>
2018-07-20T14:05:34.991-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: </DescribeAccountAttributesResponse>
2018/07/20 14:05:34 [DEBUG] Attaching resource state to "aws_route53_record.jira": &terraform.ResourceState{Type:"aws_route53_record", Dependencies:[]string{}, Primary:(*terraform.InstanceState)(0xc42050c4b0), Deposed:[]*terraform.InstanceState{}, Provider:"provider.aws", mu:sync.Mutex{state:0, sema:0x0}}
2018/07/20 14:05:34 [TRACE] Graph after step *terraform.AttachStateTransformer:

aws_route53_record.jira - *terraform.NodeRefreshableManagedResourceInstance
aws_route53_record.jira: Refreshing state... (ID: Z14OCBPOVCR0Z5_jira.stage.internal.gasbuddy.engineering_A)
2018-07-20T14:05:34.994-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:34 [DEBUG] [aws-sdk-go] DEBUG: Request route53/GetHostedZone Details:
2018-07-20T14:05:34.994-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2018-07-20T14:05:34.994-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: GET /2013-04-01/hostedzone/Z14OCBPOVCR0Z5 HTTP/1.1
2018-07-20T14:05:34.994-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Host: route53.amazonaws.com
2018-07-20T14:05:34.994-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: User-Agent: aws-sdk-go/1.14.26 (go1.9.2; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.11.8-dev
2018-07-20T14:05:34.994-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAIIYTP5UORTEQA77Q/20180720/us-east-1/route53/aws4_request, SignedHeaders=host;x-amz-date, Signature=d1437d17c574079e720c65c36a23584ae1ebf08d170b0867be43fea2c49fa9aa
2018-07-20T14:05:34.994-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amz-Date: 20180720T180534Z
2018-07-20T14:05:34.994-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Accept-Encoding: gzip
2018-07-20T14:05:34.994-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:34.994-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:34.994-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [DEBUG] [aws-sdk-go] DEBUG: Response route53/GetHostedZone Details:
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ RESPONSE ]--------------------------------------
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: HTTP/1.1 200 OK
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Connection: close
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 683
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: text/xml
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Date: Fri, 20 Jul 2018 18:05:34 GMT
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amzn-Requestid: 7fe2d96e-8c47-11e8-ab89-4fedba9791a7
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [DEBUG] [aws-sdk-go] <?xml version="1.0"?>
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: <GetHostedZoneResponse xmlns="https://route53.amazonaws.com/doc/2013-04-01/"><HostedZone><Id>/hostedzone/Z14OCBPOVCR0Z5</Id><Name>stage.internal.gasbuddy.engineering.</Name><CallerReference>6C4C0453-DD0E-2770-AE3E-CD54967C7C4A</CallerReference><Config><Comment>Managed by Terraform</Comment><PrivateZone>false</PrivateZone></Config><ResourceRecordSetCount>47</ResourceRecordSetCount></HostedZone><DelegationSet><NameServers><NameServer>ns-1351.awsdns-40.org</NameServer><NameServer>ns-975.awsdns-57.net</NameServer><NameServer>ns-49.awsdns-06.com</NameServer><NameServer>ns-1788.awsdns-31.co.uk</NameServer></NameServers></DelegationSet></GetHostedZoneResponse>
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [DEBUG] Expanded record name: jira.stage.internal.gasbuddy.engineering
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [DEBUG] List resource records sets for zone: Z14OCBPOVCR0Z5, opts: {
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   HostedZoneId: "Z14OCBPOVCR0Z5",
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   MaxItems: "1",
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   StartRecordName: "jira.stage.internal.gasbuddy.engineering.",
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   StartRecordType: "A"
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: }
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [DEBUG] [aws-sdk-go] DEBUG: Request route53/ListResourceRecordSets Details:
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: GET /2013-04-01/hostedzone/Z14OCBPOVCR0Z5/rrset?maxitems=1&name=jira.stage.internal.gasbuddy.engineering.&type=A HTTP/1.1
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Host: route53.amazonaws.com
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: User-Agent: aws-sdk-go/1.14.26 (go1.9.2; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.11.8-dev
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAIIYTP5UORTEQA77Q/20180720/us-east-1/route53/aws4_request, SignedHeaders=host;x-amz-date, Signature=31525f537fb72c65806cf5acfcdcc1eaa6fbfdd9ca1718181aebe01cf4d3b130
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amz-Date: 20180720T180535Z
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Accept-Encoding: gzip
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:35.113-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:35.213-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [DEBUG] [aws-sdk-go] DEBUG: Response route53/ListResourceRecordSets Details:
2018-07-20T14:05:35.213-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ RESPONSE ]--------------------------------------
2018-07-20T14:05:35.213-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: HTTP/1.1 200 OK
2018-07-20T14:05:35.213-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Connection: close
2018-07-20T14:05:35.213-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 683
2018-07-20T14:05:35.213-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: text/xml
2018-07-20T14:05:35.213-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Date: Fri, 20 Jul 2018 18:05:34 GMT
2018-07-20T14:05:35.213-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amzn-Requestid: 7ff2430b-8c47-11e8-bb33-2d40be1460ae
2018-07-20T14:05:35.213-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:35.213-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:35.213-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:35.213-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [DEBUG] [aws-sdk-go] <?xml version="1.0"?>
2018-07-20T14:05:35.213-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: <ListResourceRecordSetsResponse xmlns="https://route53.amazonaws.com/doc/2013-04-01/"><ResourceRecordSets><ResourceRecordSet><Name>jira.stage.internal.gasbuddy.engineering.</Name><Type>A</Type><AliasTarget><HostedZoneId>Z35SXDOTRQ7X7K</HostedZoneId><DNSName>dualstack.a776ebf990d1311e89c74122f5279532-1675795878.us-east-1.elb.amazonaws.com.</DNSName><EvaluateTargetHealth>false</EvaluateTargetHealth></AliasTarget></ResourceRecordSet></ResourceRecordSets><IsTruncated>true</IsTruncated><NextRecordName>kops-dev-ingress.stage.internal.gasbuddy.engineering.</NextRecordName><NextRecordType>A</NextRecordType><MaxItems>1</MaxItems></ListResourceRecordSetsResponse>
2018-07-20T14:05:35.214-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [DEBUG] [aws-sdk-go] DEBUG: Request route53/ListResourceRecordSets Details:
2018-07-20T14:05:35.214-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2018-07-20T14:05:35.214-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: GET /2013-04-01/hostedzone/Z14OCBPOVCR0Z5/rrset?maxitems=1&name=kops-dev-ingress.stage.internal.gasbuddy.engineering.&type=A HTTP/1.1
2018-07-20T14:05:35.214-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Host: route53.amazonaws.com
2018-07-20T14:05:35.214-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: User-Agent: aws-sdk-go/1.14.26 (go1.9.2; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.11.8-dev
2018-07-20T14:05:35.214-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAIIYTP5UORTEQA77Q/20180720/us-east-1/route53/aws4_request, SignedHeaders=host;x-amz-date, Signature=cc8a31ab31a0efea010e97800846afff6cbf8ccd0abb38e71eaf1ed9d87f6d5d
2018-07-20T14:05:35.214-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amz-Date: 20180720T180535Z
2018-07-20T14:05:35.214-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Accept-Encoding: gzip
2018-07-20T14:05:35.214-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:35.214-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:35.214-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:35.319-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [DEBUG] [aws-sdk-go] DEBUG: Response route53/ListResourceRecordSets Details:
2018-07-20T14:05:35.319-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ RESPONSE ]--------------------------------------
2018-07-20T14:05:35.319-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: HTTP/1.1 200 OK
2018-07-20T14:05:35.319-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Connection: close
2018-07-20T14:05:35.319-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 699
2018-07-20T14:05:35.319-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: text/xml
2018-07-20T14:05:35.319-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Date: Fri, 20 Jul 2018 18:05:35 GMT
2018-07-20T14:05:35.319-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amzn-Requestid: 80027023-8c47-11e8-9f30-fb3b5f91d394
2018-07-20T14:05:35.319-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:35.319-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:35.319-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:35.319-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [DEBUG] [aws-sdk-go] <?xml version="1.0"?>
2018-07-20T14:05:35.319-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: <ListResourceRecordSetsResponse xmlns="https://route53.amazonaws.com/doc/2013-04-01/"><ResourceRecordSets><ResourceRecordSet><Name>kops-dev-ingress.stage.internal.gasbuddy.engineering.</Name><Type>A</Type><AliasTarget><HostedZoneId>Z35SXDOTRQ7X7K</HostedZoneId><DNSName>dualstack.a4956f5b847f911e8a37e0a0ea20b9dc-435935683.us-east-1.elb.amazonaws.com.</DNSName><EvaluateTargetHealth>false</EvaluateTargetHealth></AliasTarget></ResourceRecordSet></ResourceRecordSets><IsTruncated>true</IsTruncated><NextRecordName>kops-internal-ingress.stage.internal.gasbuddy.engineering.</NextRecordName><NextRecordType>A</NextRecordType><MaxItems>1</MaxItems></ListResourceRecordSetsResponse>
2018/07/20 14:05:35 [INFO] terraform: building graph: GraphTypePlan
2018/07/20 14:05:35 [DEBUG] Attaching resource state to "aws_route53_record.jira": &terraform.ResourceState{Type:"aws_route53_record", Dependencies:[]string{}, Primary:(*terraform.InstanceState)(0xc420343720), Deposed:[]*terraform.InstanceState{}, Provider:"provider.aws", mu:sync.Mutex{state:0, sema:0x0}}
2018/07/20 14:05:35 [DEBUG] adding missing provider: aws
2018/07/20 14:05:35 [DEBUG] ReferenceTransformer: "aws_route53_record.jira" references: []
2018/07/20 14:05:35 [DEBUG] ReferenceTransformer: "provider.aws" references: []
2018-07-20T14:05:35.326-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [INFO] No assume_role block read from configuration
2018-07-20T14:05:35.326-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [INFO] Building AWS region structure
2018-07-20T14:05:35.326-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [INFO] Building AWS auth structure
2018-07-20T14:05:35.326-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [INFO] Setting AWS metadata API timeout to 100ms
2018-07-20T14:05:35.667-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [INFO] Ignoring AWS metadata API endpoint at default location as it doesn't return any instance-id
2018-07-20T14:05:35.667-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [INFO] AWS Auth provider used: "EnvProvider"
2018-07-20T14:05:35.668-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [INFO] Initializing DeviceFarm SDK connection
2018-07-20T14:05:35.668-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2018-07-20T14:05:35.668-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2018-07-20T14:05:35.668-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: POST / HTTP/1.1
2018-07-20T14:05:35.668-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Host: sts.amazonaws.com
2018-07-20T14:05:35.668-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: User-Agent: aws-sdk-go/1.14.26 (go1.9.2; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.11.8-dev
2018-07-20T14:05:35.668-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 43
2018-07-20T14:05:35.668-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAIIYTP5UORTEQA77Q/20180720/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=87e1f4866d20d2ca64d7c21bb8c7f65fff08c676d34f83612e093661ed4ad405
2018-07-20T14:05:35.668-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2018-07-20T14:05:35.668-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amz-Date: 20180720T180535Z
2018-07-20T14:05:35.668-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Accept-Encoding: gzip
2018-07-20T14:05:35.668-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:35.668-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Action=GetCallerIdentity&Version=2011-06-15
2018-07-20T14:05:35.668-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ RESPONSE ]--------------------------------------
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: HTTP/1.1 200 OK
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Connection: close
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 403
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: text/xml
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Date: Fri, 20 Jul 2018 18:05:34 GMT
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amzn-Requestid: 80480474-8c47-11e8-8036-77d67b410cdb
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   <GetCallerIdentityResult>
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <Arn>arn:aws:iam::267230788984:user/eherot</Arn>
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <UserId>AIDAIIDUKRBUPECRHGST4</UserId>
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <Account>267230788984</Account>
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   </GetCallerIdentityResult>
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   <ResponseMetadata>
2018-07-20T14:05:35.748-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <RequestId>80480474-8c47-11e8-8036-77d67b410cdb</RequestId>
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   </ResponseMetadata>
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: </GetCallerIdentityResponse>
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [DEBUG] Trying to get account ID via iam:GetUser
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:35 [DEBUG] [aws-sdk-go] DEBUG: Request iam/GetUser Details:
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: POST / HTTP/1.1
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Host: iam.amazonaws.com
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: User-Agent: aws-sdk-go/1.14.26 (go1.9.2; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.11.8-dev
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 33
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAIIYTP5UORTEQA77Q/20180720/us-east-1/iam/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=73b0033d4b229e3dda84d6266a9d9404a1fd75708c8fbc0084506d0dd04357ee
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amz-Date: 20180720T180535Z
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Accept-Encoding: gzip
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Action=GetUser&Version=2010-05-08
2018-07-20T14:05:35.749-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:36 [DEBUG] [aws-sdk-go] DEBUG: Response iam/GetUser Details:
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ RESPONSE ]--------------------------------------
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: HTTP/1.1 200 OK
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Connection: close
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 525
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: text/xml
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Date: Fri, 20 Jul 2018 18:05:36 GMT
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amzn-Requestid: 80b85200-8c47-11e8-ac98-7910da5ea316
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:36 [DEBUG] [aws-sdk-go] <GetUserResponse xmlns="https://iam.amazonaws.com/doc/2010-05-08/">
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   <GetUserResult>
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <User>
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <Path>/</Path>
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <PasswordLastUsed>2018-07-20T15:06:16Z</PasswordLastUsed>
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <UserName>eherot</UserName>
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <Arn>arn:aws:iam::267230788984:user/eherot</Arn>
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <UserId>AIDAIIDUKRBUPECRHGST4</UserId>
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <CreateDate>2017-09-12T16:44:20Z</CreateDate>
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     </User>
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   </GetUserResult>
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   <ResponseMetadata>
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <RequestId>80b85200-8c47-11e8-ac98-7910da5ea316</RequestId>
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   </ResponseMetadata>
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: </GetUserResponse>
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:36 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details:
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: POST / HTTP/1.1
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Host: ec2.us-east-1.amazonaws.com
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: User-Agent: aws-sdk-go/1.14.26 (go1.9.2; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.11.8-dev
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 87
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAIIYTP5UORTEQA77Q/20180720/us-east-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=db92f84b639d434da0d45022776b7db620ca4ce4c46215940003536e1345a395
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amz-Date: 20180720T180536Z
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Accept-Encoding: gzip
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15
2018-07-20T14:05:36.508-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:36 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details:
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ RESPONSE ]--------------------------------------
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: HTTP/1.1 200 OK
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Connection: close
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Transfer-Encoding: chunked
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: text/xml;charset=UTF-8
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Date: Fri, 20 Jul 2018 18:05:36 GMT
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Server: AmazonEC2
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Vary: Accept-Encoding
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:36 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: <DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <requestId>6cab7446-7277-4672-ad3f-737fd7bcfa6a</requestId>
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <accountAttributeSet>
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:         <item>
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:             <attributeName>supported-platforms</attributeName>
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:             <attributeValueSet>
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:                 <item>
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:                     <attributeValue>VPC</attributeValue>
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:                 </item>
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:             </attributeValueSet>
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:         </item>
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     </accountAttributeSet>
2018-07-20T14:05:36.611-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: </DescribeAccountAttributesResponse>
2018/07/20 14:05:36 [DEBUG] Attaching resource state to "aws_route53_record.jira": &terraform.ResourceState{Type:"aws_route53_record", Dependencies:[]string{}, Primary:(*terraform.InstanceState)(0xc420343720), Deposed:[]*terraform.InstanceState{}, Provider:"provider.aws", mu:sync.Mutex{state:0, sema:0x0}}
2018/07/20 14:05:36 [DEBUG] ReferenceTransformer: "aws_route53_record.jira" references: []
2018/07/20 14:05:36 [INFO] terraform: building graph: GraphTypeApply
2018/07/20 14:05:36 [TRACE] DiffTransformer: starting
2018/07/20 14:05:36 [DEBUG] Attaching resource state to "aws_route53_record.jira": &terraform.ResourceState{Type:"aws_route53_record", Dependencies:[]string{}, Primary:(*terraform.InstanceState)(0xc42002c0f0), Deposed:[]*terraform.InstanceState{}, Provider:"provider.aws", mu:sync.Mutex{state:0, sema:0x0}}
2018/07/20 14:05:36 [TRACE] Graph after step *terraform.AttachStateTransformer:

aws_route53_record.jira - *terraform.NodeApplyableResource
2018/07/20 14:05:36 [TRACE] ProviderConfigTransformer: Starting for path: []
2018/07/20 14:05:36 [DEBUG] adding missing provider: aws
2018/07/20 14:05:36 [DEBUG] resource aws_route53_record.jira using provider provider.aws
2018/07/20 14:05:36 [DEBUG] Starting graph walk: walkApply
2018-07-20T14:05:36.620-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:36 [INFO] No assume_role block read from configuration
2018-07-20T14:05:36.620-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:36 [INFO] Building AWS region structure
2018-07-20T14:05:36.620-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:36 [INFO] Building AWS auth structure
2018-07-20T14:05:36.620-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:36 [INFO] Setting AWS metadata API timeout to 100ms
2018-07-20T14:05:36.962-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:36 [INFO] Ignoring AWS metadata API endpoint at default location as it doesn't return any instance-id
2018-07-20T14:05:36.962-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:36 [INFO] AWS Auth provider used: "EnvProvider"
2018-07-20T14:05:36.962-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:36 [INFO] Initializing DeviceFarm SDK connection
2018-07-20T14:05:36.963-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:36 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2018-07-20T14:05:36.964-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2018-07-20T14:05:36.964-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: POST / HTTP/1.1
2018-07-20T14:05:36.964-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Host: sts.amazonaws.com
2018-07-20T14:05:36.964-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: User-Agent: aws-sdk-go/1.14.26 (go1.9.2; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.11.8-dev
2018-07-20T14:05:36.964-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 43
2018-07-20T14:05:36.964-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAIIYTP5UORTEQA77Q/20180720/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=9fa51c6fe1bc8b920b8dba5ae49c641b7743f2b05f26f36af74cd0749bba2db8
2018-07-20T14:05:36.964-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2018-07-20T14:05:36.964-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amz-Date: 20180720T180536Z
2018-07-20T14:05:36.964-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Accept-Encoding: gzip
2018-07-20T14:05:36.964-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:36.964-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Action=GetCallerIdentity&Version=2011-06-15
2018-07-20T14:05:36.964-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ RESPONSE ]--------------------------------------
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: HTTP/1.1 200 OK
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Connection: close
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 403
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: text/xml
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Date: Fri, 20 Jul 2018 18:05:36 GMT
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amzn-Requestid: 810d2969-8c47-11e8-b208-21acdd08e34b
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   <GetCallerIdentityResult>
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <Arn>arn:aws:iam::267230788984:user/eherot</Arn>
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <UserId>AIDAIIDUKRBUPECRHGST4</UserId>
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <Account>267230788984</Account>
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   </GetCallerIdentityResult>
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   <ResponseMetadata>
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <RequestId>810d2969-8c47-11e8-b208-21acdd08e34b</RequestId>
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   </ResponseMetadata>
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: </GetCallerIdentityResponse>
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] Trying to get account ID via iam:GetUser
2018-07-20T14:05:37.040-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] [aws-sdk-go] DEBUG: Request iam/GetUser Details:
2018-07-20T14:05:37.041-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2018-07-20T14:05:37.041-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: POST / HTTP/1.1
2018-07-20T14:05:37.041-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Host: iam.amazonaws.com
2018-07-20T14:05:37.041-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: User-Agent: aws-sdk-go/1.14.26 (go1.9.2; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.11.8-dev
2018-07-20T14:05:37.041-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 33
2018-07-20T14:05:37.041-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAIIYTP5UORTEQA77Q/20180720/us-east-1/iam/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=3266667f768a6d77ede5f635d8e50e435d3a89ad70256418a188ad3792725086
2018-07-20T14:05:37.041-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2018-07-20T14:05:37.041-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amz-Date: 20180720T180537Z
2018-07-20T14:05:37.041-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Accept-Encoding: gzip
2018-07-20T14:05:37.041-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.041-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Action=GetUser&Version=2010-05-08
2018-07-20T14:05:37.041-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] [aws-sdk-go] DEBUG: Response iam/GetUser Details:
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ RESPONSE ]--------------------------------------
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: HTTP/1.1 200 OK
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Connection: close
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 525
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: text/xml
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Date: Fri, 20 Jul 2018 18:05:36 GMT
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amzn-Requestid: 814f61c2-8c47-11e8-b40b-e7cb66659e7f
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] [aws-sdk-go] <GetUserResponse xmlns="https://iam.amazonaws.com/doc/2010-05-08/">
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   <GetUserResult>
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <User>
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <Path>/</Path>
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <PasswordLastUsed>2018-07-20T15:06:16Z</PasswordLastUsed>
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <UserName>eherot</UserName>
2018-07-20T14:05:37.601-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <Arn>arn:aws:iam::267230788984:user/eherot</Arn>
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <UserId>AIDAIIDUKRBUPECRHGST4</UserId>
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       <CreateDate>2017-09-12T16:44:20Z</CreateDate>
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     </User>
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   </GetUserResult>
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   <ResponseMetadata>
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <RequestId>814f61c2-8c47-11e8-b40b-e7cb66659e7f</RequestId>
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   </ResponseMetadata>
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: </GetUserResponse>
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details:
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: POST / HTTP/1.1
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Host: ec2.us-east-1.amazonaws.com
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: User-Agent: aws-sdk-go/1.14.26 (go1.9.2; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.11.8-dev
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 87
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAIIYTP5UORTEQA77Q/20180720/us-east-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=fe7e3f3cb417554d9e5874b5849e80d22468e2538cbcebe738af49d447aa0f5f
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amz-Date: 20180720T180537Z
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Accept-Encoding: gzip
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15
2018-07-20T14:05:37.602-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:37.690-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details:
2018-07-20T14:05:37.690-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ RESPONSE ]--------------------------------------
2018-07-20T14:05:37.690-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: HTTP/1.1 200 OK
2018-07-20T14:05:37.690-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Connection: close
2018-07-20T14:05:37.690-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Transfer-Encoding: chunked
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: text/xml;charset=UTF-8
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Date: Fri, 20 Jul 2018 18:05:36 GMT
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Server: AmazonEC2
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Vary: Accept-Encoding
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: <DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <requestId>882fbb4d-6abd-4ab7-8a95-ed239a6aaf37</requestId>
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     <accountAttributeSet>
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:         <item>
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:             <attributeName>supported-platforms</attributeName>
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:             <attributeValueSet>
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:                 <item>
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:                     <attributeValue>VPC</attributeValue>
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:                 </item>
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:             </attributeValueSet>
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:         </item>
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     </accountAttributeSet>
2018-07-20T14:05:37.691-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: </DescribeAccountAttributesResponse>
aws_route53_record.jira: Modifying... (ID: Z14OCBPOVCR0Z5_jira.stage.internal.gasbuddy.engineering_A)
  alias.#:                                 "1" => "0"
  alias.3312272711.evaluate_target_health: "false" => "false"
  alias.3312272711.name:                   "a776ebf990d1311e89c74122f5279532-1675795878.us-east-1.elb.amazonaws.com" => ""
2018-07-20T14:05:37.694-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] [aws-sdk-go] DEBUG: Request route53/GetHostedZone Details:
  alias.3312272711.zone_id:                "Z35SXDOTRQ7X7K" => ""
2018-07-20T14:05:37.694-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2018-07-20T14:05:37.694-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: GET /2013-04-01/hostedzone/Z14OCBPOVCR0Z5 HTTP/1.1
2018-07-20T14:05:37.694-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Host: route53.amazonaws.com
2018-07-20T14:05:37.695-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: User-Agent: aws-sdk-go/1.14.26 (go1.9.2; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.11.8-dev
2018-07-20T14:05:37.695-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAIIYTP5UORTEQA77Q/20180720/us-east-1/route53/aws4_request, SignedHeaders=host;x-amz-date, Signature=1b173c48f296c2fd23acb2daa6289f13a18aa12a7ee5610d68bf3b596cb6af40
2018-07-20T14:05:37.695-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amz-Date: 20180720T180537Z
2018-07-20T14:05:37.695-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Accept-Encoding: gzip
2018-07-20T14:05:37.695-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.695-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.695-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
  allow_overwrite:                         "" => "true"
  records.#:                               "0" => "1"
  records.1292767570:                      "" => "kops-oauth-ingress.stage.internal.gasbuddy.engineering"
  ttl:                                     "0" => "300"
  type:                                    "A" => "CNAME"
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] [aws-sdk-go] DEBUG: Response route53/GetHostedZone Details:
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ RESPONSE ]--------------------------------------
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: HTTP/1.1 200 OK
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Connection: close
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 683
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: text/xml
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Date: Fri, 20 Jul 2018 18:05:37 GMT
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amzn-Requestid: 817ba250-8c47-11e8-a72b-dfbd93f0669f
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] [aws-sdk-go] <?xml version="1.0"?>
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: <GetHostedZoneResponse xmlns="https://route53.amazonaws.com/doc/2013-04-01/"><HostedZone><Id>/hostedzone/Z14OCBPOVCR0Z5</Id><Name>stage.internal.gasbuddy.engineering.</Name><CallerReference>6C4C0453-DD0E-2770-AE3E-CD54967C7C4A</CallerReference><Config><Comment>Managed by Terraform</Comment><PrivateZone>false</PrivateZone></Config><ResourceRecordSetCount>47</ResourceRecordSetCount></HostedZone><DelegationSet><NameServers><NameServer>ns-1351.awsdns-40.org</NameServer><NameServer>ns-975.awsdns-57.net</NameServer><NameServer>ns-49.awsdns-06.com</NameServer><NameServer>ns-1788.awsdns-31.co.uk</NameServer></NameServers></DelegationSet></GetHostedZoneResponse>
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] Updating resource records for zone: Z14OCBPOVCR0Z5, name: jira.stage.internal.gasbuddy.engineering
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: {
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   ChangeBatch: {
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     Changes: [{
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:         Action: "DELETE",
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:         ResourceRecordSet: {
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:           AliasTarget: {
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:             DNSName: "a776ebf990d1311e89c74122f5279532-1675795878.us-east-1.elb.amazonaws.com",
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:             EvaluateTargetHealth: false,
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:             HostedZoneId: "Z35SXDOTRQ7X7K"
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:           },
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:           Name: "jira.stage.internal.gasbuddy.engineering",
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:           Type: "A"
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:         }
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       },{
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:         Action: "CREATE",
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:         ResourceRecordSet: {
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:           Name: "jira.stage.internal.gasbuddy.engineering",
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:           ResourceRecords: [{
2018-07-20T14:05:37.790-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:               Value: "kops-oauth-ingress.stage.internal.gasbuddy.engineering"
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:             }],
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:           TTL: 300,
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:           Type: "CNAME"
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:         }
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:       }],
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:     Comment: "Managed by Terraform"
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   },
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:   HostedZoneId: "Z14OCBPOVCR0Z5"
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: }
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] Waiting for state to become: [accepted]
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] [aws-sdk-go] DEBUG: Request route53/ChangeResourceRecordSets Details:
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: POST /2013-04-01/hostedzone/Z14OCBPOVCR0Z5/rrset/ HTTP/1.1
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Host: route53.amazonaws.com
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: User-Agent: aws-sdk-go/1.14.26 (go1.9.2; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.11.8-dev
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 863
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAIIYTP5UORTEQA77Q/20180720/us-east-1/route53/aws4_request, SignedHeaders=content-length;host;x-amz-date, Signature=a89a0aa6fa10fcaaee18b80f0eb8db7814b49721d38a5b65f84f08bc7997fcd7
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amz-Date: 20180720T180537Z
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Accept-Encoding: gzip
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: <ChangeResourceRecordSetsRequest xmlns="https://route53.amazonaws.com/doc/2013-04-01/"><ChangeBatch><Changes><Change><Action>DELETE</Action><ResourceRecordSet><AliasTarget><EvaluateTargetHealth>false</EvaluateTargetHealth><HostedZoneId>Z35SXDOTRQ7X7K</HostedZoneId><DNSName>a776ebf990d1311e89c74122f5279532-1675795878.us-east-1.elb.amazonaws.com</DNSName></AliasTarget><Name>jira.stage.internal.gasbuddy.engineering</Name><Type>A</Type></ResourceRecordSet></Change><Change><Action>CREATE</Action><ResourceRecordSet><ResourceRecords><ResourceRecord><Value>kops-oauth-ingress.stage.internal.gasbuddy.engineering</Value></ResourceRecord></ResourceRecords><TTL>300</TTL><Type>CNAME</Type><Name>jira.stage.internal.gasbuddy.engineering</Name></ResourceRecordSet></Change></Changes><Comment>Managed by Terraform</Comment></ChangeBatch></ChangeResourceRecordSetsRequest>
2018-07-20T14:05:37.791-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:37.900-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] [aws-sdk-go] DEBUG: Response route53/ChangeResourceRecordSets Details:
2018-07-20T14:05:37.900-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: ---[ RESPONSE ]--------------------------------------
2018-07-20T14:05:37.900-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: HTTP/1.1 400 Bad Request
2018-07-20T14:05:37.900-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Connection: close
2018-07-20T14:05:37.900-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Length: 402
2018-07-20T14:05:37.900-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Content-Type: text/xml
2018-07-20T14:05:37.900-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: Date: Fri, 20 Jul 2018 18:05:37 GMT
2018-07-20T14:05:37.900-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amzn-Actiontrace: amzn1.tr.8190fed4-8c47-11e8-99fd-0af642a20200.-1.bUmQBI.EzQEhs
2018-07-20T14:05:37.900-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: X-Amzn-Requestid: 818b8144-8c47-11e8-88b1-b9de355ec668
2018-07-20T14:05:37.901-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.901-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:
2018-07-20T14:05:37.901-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: -----------------------------------------------------
2018-07-20T14:05:37.901-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] [aws-sdk-go] <?xml version="1.0"?>
2018-07-20T14:05:37.901-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: <ErrorResponse xmlns="https://route53.amazonaws.com/doc/2013-04-01/"><Error><Type>Sender</Type><Code>InvalidChangeBatch</Code><Message>Tried to delete resource record set [name='jira.stage.internal.gasbuddy.engineering.', type='A'] but the values provided do not match the current values</Message></Error><RequestId>818b8144-8c47-11e8-88b1-b9de355ec668</RequestId></ErrorResponse>
2018-07-20T14:05:37.901-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4: 2018/07/20 14:05:37 [DEBUG] [aws-sdk-go] DEBUG: Validate Response route53/ChangeResourceRecordSets failed, not retrying, error InvalidChangeBatch: Tried to delete resource record set [name='jira.stage.internal.gasbuddy.engineering.', type='A'] but the values provided do not match the current values
2018-07-20T14:05:37.901-0400 [DEBUG] plugin.terraform-provider-aws_v1.28.0_x4:  status code: 400, request id: 818b8144-8c47-11e8-88b1-b9de355ec668
2018/07/20 14:05:37 [ERROR] root: eval: *terraform.EvalApplyPost, err: 1 error(s) occurred:

* aws_route53_record.jira: [ERR]: Error building changeset: InvalidChangeBatch: Tried to delete resource record set [name='jira.stage.internal.gasbuddy.engineering.', type='A'] but the values provided do not match the current values
    status code: 400, request id: 818b8144-8c47-11e8-88b1-b9de355ec668
2018/07/20 14:05:37 [ERROR] root: eval: *terraform.EvalSequence, err: 1 error(s) occurred:

* aws_route53_record.jira: [ERR]: Error building changeset: InvalidChangeBatch: Tried to delete resource record set [name='jira.stage.internal.gasbuddy.engineering.', type='A'] but the values provided do not match the current values
    status code: 400, request id: 818b8144-8c47-11e8-88b1-b9de355ec668
2018/07/20 14:05:37 [TRACE] [walkApply] Exiting eval tree: aws_route53_record.jira

2018/07/20 14:05:37 [DEBUG] plugin: waiting for all plugin processes to complete...
Error: Error applying plan:

1 error(s) occurred:

* aws_route53_record.jira: 1 error(s) occurred:

* aws_route53_record.jira: [ERR]: Error building changeset: InvalidChangeBatch: Tried to delete resource record set [name='jira.stage.internal.gasbuddy.engineering.', type='A'] but the values provided do not match the current values
    status code: 400, request id: 818b8144-8c47-11e8-88b1-b9de355ec668

Terraform does not automatically rollback in the face of errors.
Instead, your Terraform state file has been partially updated with
any resources that successfully completed. Please address the error
above and apply again to incrementally change your infrastructure.

2018-07-20T14:05:37.908-0400 [DEBUG] plugin: plugin process exited: path=/Users/eherot/git_repos/gasbuddy/infrastructure/terraform/staging/route53/test/.terraform/plugins/darwin_amd64/terraform-provider-aws_v1.28.0_x4
ghost commented 6 years ago

This issue has been automatically migrated to terraform-providers/terraform-provider-aws#5280 because it looks like an issue with that provider. If you believe this is not an issue with the provider, please reply to terraform-providers/terraform-provider-aws#5280.

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.