Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] r/aws_route: Correctly handle update of route target #14050

Closed
wants to merge 38 commits into from

Commits on Jul 10, 2020

  1. r/aws_route: Tidy up 'testAccAWSRouteConfigBasic()'.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_basic'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_basic -timeout 120m
    === RUN   TestAccAWSRoute_basic
    === PAUSE TestAccAWSRoute_basic
    === CONT  TestAccAWSRoute_basic
    --- PASS: TestAccAWSRoute_basic (53.08s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	53.129s
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_disappears'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_disappears -timeout 120m
    === RUN   TestAccAWSRoute_disappears
    === PAUSE TestAccAWSRoute_disappears
    === CONT  TestAccAWSRoute_disappears
    --- PASS: TestAccAWSRoute_disappears (49.64s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	49.690s
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_changeCidr'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_changeCidr -timeout 120m
    === RUN   TestAccAWSRoute_changeCidr
    === PAUSE TestAccAWSRoute_changeCidr
    === CONT  TestAccAWSRoute_changeCidr
    --- PASS: TestAccAWSRoute_changeCidr (77.60s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	77.646s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    232e4fa View commit details
    Browse the repository at this point in the history
  2. r/aws_route: Rename 'TestAccAWSRoute_ipv6Support' to 'TestAccAWSRoute…

    …_ipv6ToEgressOnlyInternetGateway'.
    
    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_ipv6ToEgressOnlyInternetGateway'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_ipv6ToEgressOnlyInternetGateway -timeout 120m
    === RUN   TestAccAWSRoute_ipv6ToEgressOnlyInternetGateway
    === PAUSE TestAccAWSRoute_ipv6ToEgressOnlyInternetGateway
    === CONT  TestAccAWSRoute_ipv6ToEgressOnlyInternetGateway
    --- PASS: TestAccAWSRoute_ipv6ToEgressOnlyInternetGateway (61.15s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	61.206s
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_basic'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_basic -timeout 120m
    === RUN   TestAccAWSRoute_basic
    === PAUSE TestAccAWSRoute_basic
    === CONT  TestAccAWSRoute_basic
    --- PASS: TestAccAWSRoute_basic (52.29s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	52.339s
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_changeCidr'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_changeCidr -timeout 120m
    === RUN   TestAccAWSRoute_changeCidr
    === PAUSE TestAccAWSRoute_changeCidr
    === CONT  TestAccAWSRoute_changeCidr
    --- PASS: TestAccAWSRoute_changeCidr (78.93s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	79.529s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    df47227 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4e2bfc8 View commit details
    Browse the repository at this point in the history
  4. r/aws_route: Tidy up 'TestAccAWSRoute_doesNotCrashWithVPCEndpoint'.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_doesNotCrashWithVPCEndpoint'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_doesNotCrashWithVPCEndpoint -timeout 120m
    === RUN   TestAccAWSRoute_doesNotCrashWithVPCEndpoint
    === PAUSE TestAccAWSRoute_doesNotCrashWithVPCEndpoint
    === CONT  TestAccAWSRoute_doesNotCrashWithVPCEndpoint
    --- PASS: TestAccAWSRoute_doesNotCrashWithVPCEndpoint (62.84s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	62.882s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    3130d83 View commit details
    Browse the repository at this point in the history
  5. r/aws_route: Tidy up 'TestAccAWSRoute_ipv6ToInternetGateway'.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_ipv6ToInternetGateway'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_ipv6ToInternetGateway -timeout 120m
    === RUN   TestAccAWSRoute_ipv6ToInternetGateway
    === PAUSE TestAccAWSRoute_ipv6ToInternetGateway
    === CONT  TestAccAWSRoute_ipv6ToInternetGateway
    --- PASS: TestAccAWSRoute_ipv6ToInternetGateway (51.99s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	52.050s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    38edb5e View commit details
    Browse the repository at this point in the history
  6. r/aws_route: Tidy up 'TestAccAWSRoute_ipv6ToInstance'.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_ipv6ToInstance'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_ipv6ToInstance -timeout 120m
    === RUN   TestAccAWSRoute_ipv6ToInstance
    === PAUSE TestAccAWSRoute_ipv6ToInstance
    === CONT  TestAccAWSRoute_ipv6ToInstance
    --- PASS: TestAccAWSRoute_ipv6ToInstance (111.03s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	111.103s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    6f40ed1 View commit details
    Browse the repository at this point in the history
  7. r/aws_route: Tidy up 'TestAccAWSRoute_ipv6ToNetworkInterface'.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_ipv6ToNetworkInterface'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_ipv6ToNetworkInterface -timeout 120m
    === RUN   TestAccAWSRoute_ipv6ToNetworkInterface
    === PAUSE TestAccAWSRoute_ipv6ToNetworkInterface
    === CONT  TestAccAWSRoute_ipv6ToNetworkInterface
    --- PASS: TestAccAWSRoute_ipv6ToNetworkInterface (47.92s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	47.969s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    600d0ae View commit details
    Browse the repository at this point in the history
  8. r/aws_route: Tidy up 'TestAccAWSRoute_ipv6ToVpcPeeringConnection'.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_ipv6ToVpcPeeringConnection'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_ipv6ToVpcPeeringConnection -timeout 120m
    === RUN   TestAccAWSRoute_ipv6ToVpcPeeringConnection
    === PAUSE TestAccAWSRoute_ipv6ToVpcPeeringConnection
    === CONT  TestAccAWSRoute_ipv6ToVpcPeeringConnection
    --- PASS: TestAccAWSRoute_ipv6ToVpcPeeringConnection (44.00s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	44.054s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    a33370f View commit details
    Browse the repository at this point in the history
  9. r/aws_route: Tidy up 'TestAccAWSRoute_TransitGatewayID_DestinationCid…

    …rBlock' and rename tests.
    
    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 2 -run=TestAccAWSRoute_ -timeout 120m
    === RUN   TestAccAWSRoute_basic
    === PAUSE TestAccAWSRoute_basic
    === RUN   TestAccAWSRoute_disappears
    === PAUSE TestAccAWSRoute_disappears
    === RUN   TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    === PAUSE TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    === RUN   TestAccAWSRoute_IPv6_To_InternetGateway
    === PAUSE TestAccAWSRoute_IPv6_To_InternetGateway
    === RUN   TestAccAWSRoute_IPv6_To_Instance
    === PAUSE TestAccAWSRoute_IPv6_To_Instance
    === RUN   TestAccAWSRoute_IPv6_To_NetworkInterface
    === PAUSE TestAccAWSRoute_IPv6_To_NetworkInterface
    === RUN   TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    === PAUSE TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    === RUN   TestAccAWSRoute_IPv4_To_InternetGateway
    === PAUSE TestAccAWSRoute_IPv4_To_InternetGateway
    === RUN   TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    === PAUSE TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    === RUN   TestAccAWSRoute_IPv4_To_TransitGateway
    === PAUSE TestAccAWSRoute_IPv4_To_TransitGateway
    === RUN   TestAccAWSRoute_ConditionalCidrBlock
    === PAUSE TestAccAWSRoute_ConditionalCidrBlock
    === CONT  TestAccAWSRoute_basic
    === CONT  TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    --- PASS: TestAccAWSRoute_IPv6_To_VpcPeeringConnection (42.94s)
    === CONT  TestAccAWSRoute_ConditionalCidrBlock
    --- PASS: TestAccAWSRoute_basic (51.95s)
    === CONT  TestAccAWSRoute_IPv4_To_TransitGateway
    --- PASS: TestAccAWSRoute_ConditionalCidrBlock (76.30s)
    === CONT  TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    --- PASS: TestAccAWSRoute_DoesNotCrashWithVpcEndpoint (61.41s)
    === CONT  TestAccAWSRoute_IPv4_To_InternetGateway
    --- PASS: TestAccAWSRoute_IPv4_To_InternetGateway (76.58s)
    === CONT  TestAccAWSRoute_IPv6_To_InternetGateway
    --- PASS: TestAccAWSRoute_IPv6_To_InternetGateway (53.22s)
    === CONT  TestAccAWSRoute_IPv6_To_NetworkInterface
    --- PASS: TestAccAWSRoute_IPv6_To_NetworkInterface (47.85s)
    === CONT  TestAccAWSRoute_IPv6_To_Instance
    --- PASS: TestAccAWSRoute_IPv4_To_TransitGateway (315.51s)
    === CONT  TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    --- PASS: TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway (59.04s)
    === CONT  TestAccAWSRoute_disappears
    --- PASS: TestAccAWSRoute_disappears (47.96s)
    --- PASS: TestAccAWSRoute_IPv6_To_Instance (129.66s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	488.049s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    d0b739b View commit details
    Browse the repository at this point in the history
  10. r/aws_route: Add 'TestAccAWSRoute_IPv4_To_Instance'.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_IPv4_To_Instance'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_IPv4_To_Instance -timeout 120m
    === RUN   TestAccAWSRoute_IPv4_To_Instance
    === PAUSE TestAccAWSRoute_IPv4_To_Instance
    === CONT  TestAccAWSRoute_IPv4_To_Instance
    --- PASS: TestAccAWSRoute_IPv4_To_Instance (87.65s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	87.699s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    64b26ff View commit details
    Browse the repository at this point in the history
  11. r/aws_route: Add 'TestAccAWSRoute_IPv4_To_NetworkInterface'.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_IPv4_To_NetworkInterface'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_IPv4_To_NetworkInterface -timeout 120m
    === RUN   TestAccAWSRoute_IPv4_To_NetworkInterface
    === PAUSE TestAccAWSRoute_IPv4_To_NetworkInterface
    === CONT  TestAccAWSRoute_IPv4_To_NetworkInterface
    --- PASS: TestAccAWSRoute_IPv4_To_NetworkInterface (47.04s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	47.100s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    ae11dde View commit details
    Browse the repository at this point in the history
  12. r/aws_route: Add 'TestAccAWSRoute_IPv4_To_VpcPeeringConnection'.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_IPv4_To_VpcPeeringConnection'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_IPv4_To_VpcPeeringConnection -timeout 120m
    === RUN   TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    === PAUSE TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    === CONT  TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    --- PASS: TestAccAWSRoute_IPv4_To_VpcPeeringConnection (42.88s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	42.928s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    390f354 View commit details
    Browse the repository at this point in the history
  13. r/aws_route: Add 'TestAccAWSRoute_IPv4_To_NatGateway'.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_IPv4_To_NatGateway'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_IPv4_To_NatGateway -timeout 120m
    === RUN   TestAccAWSRoute_IPv4_To_NatGateway
    === PAUSE TestAccAWSRoute_IPv4_To_NatGateway
    === CONT  TestAccAWSRoute_IPv4_To_NatGateway
    --- PASS: TestAccAWSRoute_IPv4_To_NatGateway (195.61s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	195.647s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    eb9b623 View commit details
    Browse the repository at this point in the history
  14. r/aws_route: Comment out failing target update test.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 1 -run=TestAccAWSRoute_ -timeout 120m
    === RUN   TestAccAWSRoute_basic
    === PAUSE TestAccAWSRoute_basic
    === RUN   TestAccAWSRoute_disappears
    === PAUSE TestAccAWSRoute_disappears
    === RUN   TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    === PAUSE TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    === RUN   TestAccAWSRoute_IPv6_To_InternetGateway
    === PAUSE TestAccAWSRoute_IPv6_To_InternetGateway
    === RUN   TestAccAWSRoute_IPv6_To_Instance
    === PAUSE TestAccAWSRoute_IPv6_To_Instance
    === RUN   TestAccAWSRoute_IPv6_To_NetworkInterface
    === PAUSE TestAccAWSRoute_IPv6_To_NetworkInterface
    === RUN   TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    === PAUSE TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    === RUN   TestAccAWSRoute_IPv4_To_InternetGateway
    === PAUSE TestAccAWSRoute_IPv4_To_InternetGateway
    === RUN   TestAccAWSRoute_IPv4_To_Instance
    === PAUSE TestAccAWSRoute_IPv4_To_Instance
    === RUN   TestAccAWSRoute_IPv4_To_NetworkInterface
    === PAUSE TestAccAWSRoute_IPv4_To_NetworkInterface
    === RUN   TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    === PAUSE TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    === RUN   TestAccAWSRoute_IPv4_To_NatGateway
    === PAUSE TestAccAWSRoute_IPv4_To_NatGateway
    === RUN   TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    === PAUSE TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    === RUN   TestAccAWSRoute_IPv4_To_TransitGateway
    === PAUSE TestAccAWSRoute_IPv4_To_TransitGateway
    === RUN   TestAccAWSRoute_ConditionalCidrBlock
    === PAUSE TestAccAWSRoute_ConditionalCidrBlock
    === CONT  TestAccAWSRoute_basic
    --- PASS: TestAccAWSRoute_basic (52.44s)
    === CONT  TestAccAWSRoute_ConditionalCidrBlock
    --- PASS: TestAccAWSRoute_ConditionalCidrBlock (76.36s)
    === CONT  TestAccAWSRoute_IPv4_To_TransitGateway
    --- PASS: TestAccAWSRoute_IPv4_To_TransitGateway (358.76s)
    === CONT  TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    --- PASS: TestAccAWSRoute_DoesNotCrashWithVpcEndpoint (62.15s)
    === CONT  TestAccAWSRoute_IPv4_To_NatGateway
    --- PASS: TestAccAWSRoute_IPv4_To_NatGateway (195.36s)
    === CONT  TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    --- PASS: TestAccAWSRoute_IPv4_To_VpcPeeringConnection (43.17s)
    === CONT  TestAccAWSRoute_IPv4_To_NetworkInterface
    --- PASS: TestAccAWSRoute_IPv4_To_NetworkInterface (46.84s)
    === CONT  TestAccAWSRoute_IPv4_To_Instance
    --- PASS: TestAccAWSRoute_IPv4_To_Instance (120.01s)
    === CONT  TestAccAWSRoute_IPv4_To_InternetGateway
    --- PASS: TestAccAWSRoute_IPv4_To_InternetGateway (77.57s)
    === CONT  TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    --- PASS: TestAccAWSRoute_IPv6_To_VpcPeeringConnection (42.36s)
    === CONT  TestAccAWSRoute_IPv6_To_NetworkInterface
    --- PASS: TestAccAWSRoute_IPv6_To_NetworkInterface (48.01s)
    === CONT  TestAccAWSRoute_IPv6_To_Instance
    --- PASS: TestAccAWSRoute_IPv6_To_Instance (119.62s)
    === CONT  TestAccAWSRoute_IPv6_To_InternetGateway
    --- PASS: TestAccAWSRoute_IPv6_To_InternetGateway (51.75s)
    === CONT  TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    --- PASS: TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway (58.58s)
    === CONT  TestAccAWSRoute_disappears
    --- PASS: TestAccAWSRoute_disappears (47.56s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	1400.609s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    5c4fb7e View commit details
    Browse the repository at this point in the history
  15. r/aws_route: Add 'TestAccAWSRoute_IPv4_To_VpnGateway'.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_IPv4_To_VpnGateway'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_IPv4_To_VpnGateway -timeout 120m
    === RUN   TestAccAWSRoute_IPv4_To_VpnGateway
    === PAUSE TestAccAWSRoute_IPv4_To_VpnGateway
    === CONT  TestAccAWSRoute_IPv4_To_VpnGateway
    --- PASS: TestAccAWSRoute_IPv4_To_VpnGateway (63.35s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	63.423s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    efc37d7 View commit details
    Browse the repository at this point in the history
  16. r/aws_route: Add 'TestAccAWSRoute_IPv6_To_VpnGateway'.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_IPv6_To_VpnGateway'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_IPv6_To_VpnGateway -timeout 120m
    === RUN   TestAccAWSRoute_IPv6_To_VpnGateway
    === PAUSE TestAccAWSRoute_IPv6_To_VpnGateway
    === CONT  TestAccAWSRoute_IPv6_To_VpnGateway
    --- PASS: TestAccAWSRoute_IPv6_To_VpnGateway (56.25s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	56.281s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    8596c78 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    f375bd9 View commit details
    Browse the repository at this point in the history
  18. r/aws_route: Changes for hashicorp#13766, hashicorp#13771.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 2 -run=TestAccAWSRoute_ -timeout 120m
    === RUN   TestAccAWSRoute_basic
    === PAUSE TestAccAWSRoute_basic
    === RUN   TestAccAWSRoute_disappears
    === PAUSE TestAccAWSRoute_disappears
    === RUN   TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    === PAUSE TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    === RUN   TestAccAWSRoute_IPv6_To_InternetGateway
    === PAUSE TestAccAWSRoute_IPv6_To_InternetGateway
    === RUN   TestAccAWSRoute_IPv6_To_Instance
    === PAUSE TestAccAWSRoute_IPv6_To_Instance
    === RUN   TestAccAWSRoute_IPv6_To_NetworkInterface
    === PAUSE TestAccAWSRoute_IPv6_To_NetworkInterface
    === RUN   TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    === PAUSE TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    === RUN   TestAccAWSRoute_IPv6_To_VpnGateway
    === PAUSE TestAccAWSRoute_IPv6_To_VpnGateway
    === RUN   TestAccAWSRoute_IPv4_To_VpnGateway
    === PAUSE TestAccAWSRoute_IPv4_To_VpnGateway
    === RUN   TestAccAWSRoute_IPv4_To_Instance
    === PAUSE TestAccAWSRoute_IPv4_To_Instance
    === RUN   TestAccAWSRoute_IPv4_To_NetworkInterface
    === PAUSE TestAccAWSRoute_IPv4_To_NetworkInterface
    === RUN   TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    === PAUSE TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    === RUN   TestAccAWSRoute_IPv4_To_NatGateway
    === PAUSE TestAccAWSRoute_IPv4_To_NatGateway
    === RUN   TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    === PAUSE TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    === RUN   TestAccAWSRoute_IPv4_To_TransitGateway
    === PAUSE TestAccAWSRoute_IPv4_To_TransitGateway
    === RUN   TestAccAWSRoute_ConditionalCidrBlock
    === PAUSE TestAccAWSRoute_ConditionalCidrBlock
    === CONT  TestAccAWSRoute_basic
    === CONT  TestAccAWSRoute_IPv4_To_Instance
    --- PASS: TestAccAWSRoute_basic (52.59s)
    === CONT  TestAccAWSRoute_ConditionalCidrBlock
    --- PASS: TestAccAWSRoute_ConditionalCidrBlock (76.45s)
    === CONT  TestAccAWSRoute_IPv4_To_TransitGateway
    --- PASS: TestAccAWSRoute_IPv4_To_Instance (129.99s)
    === CONT  TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    --- PASS: TestAccAWSRoute_DoesNotCrashWithVpcEndpoint (63.26s)
    === CONT  TestAccAWSRoute_IPv4_To_NatGateway
    --- PASS: TestAccAWSRoute_IPv4_To_NatGateway (205.43s)
    === CONT  TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    --- PASS: TestAccAWSRoute_IPv4_To_VpcPeeringConnection (43.54s)
    === CONT  TestAccAWSRoute_IPv4_To_NetworkInterface
    --- PASS: TestAccAWSRoute_IPv4_To_NetworkInterface (33.36s)
    === CONT  TestAccAWSRoute_IPv6_To_NetworkInterface
    --- PASS: TestAccAWSRoute_IPv4_To_TransitGateway (347.29s)
    === CONT  TestAccAWSRoute_IPv4_To_VpnGateway
    --- PASS: TestAccAWSRoute_IPv6_To_NetworkInterface (33.84s)
    === CONT  TestAccAWSRoute_IPv6_To_VpnGateway
    --- PASS: TestAccAWSRoute_IPv4_To_VpnGateway (55.26s)
    === CONT  TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    --- PASS: TestAccAWSRoute_IPv6_To_VpnGateway (62.51s)
    === CONT  TestAccAWSRoute_IPv6_To_InternetGateway
    --- PASS: TestAccAWSRoute_IPv6_To_VpcPeeringConnection (42.95s)
    === CONT  TestAccAWSRoute_IPv6_To_Instance
    --- PASS: TestAccAWSRoute_IPv6_To_InternetGateway (52.13s)
    === CONT  TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    --- PASS: TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway (59.35s)
    === CONT  TestAccAWSRoute_disappears
    --- PASS: TestAccAWSRoute_IPv6_To_Instance (119.68s)
    --- PASS: TestAccAWSRoute_disappears (48.50s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	731.979s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    bf846c9 View commit details
    Browse the repository at this point in the history
  19. r/aws_route: 'testAccCheckAWSRouteNumberOfRoutes' -> 'testAccCheckAWS…

    …RouteTableNumberOfRoutes'.
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    778f0d7 View commit details
    Browse the repository at this point in the history
  20. r/aws_route: Add 'TestAccAWSRoute_routeTableDisappears'.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_routeTableDisappears'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_routeTableDisappears -timeout 120m
    === RUN   TestAccAWSRoute_routeTableDisappears
    === PAUSE TestAccAWSRoute_routeTableDisappears
    === CONT  TestAccAWSRoute_routeTableDisappears
    --- PASS: TestAccAWSRoute_routeTableDisappears (48.84s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	48.910s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    7d38d16 View commit details
    Browse the repository at this point in the history
  21. r/aws_route: Rework 'TestAccAWSRoute_ConditionalCidrBlock'.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_ConditionalCidrBlock'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_ConditionalCidrBlock -timeout 120m
    === RUN   TestAccAWSRoute_ConditionalCidrBlock
    === PAUSE TestAccAWSRoute_ConditionalCidrBlock
    === CONT  TestAccAWSRoute_ConditionalCidrBlock
    --- PASS: TestAccAWSRoute_ConditionalCidrBlock (76.68s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	76.752s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    d42fc88 View commit details
    Browse the repository at this point in the history
  22. r/aws_route: Add 'TestAccAWSRoute_IPv4_To_NetworkInterface_Attached' …

    …to test route to ENI attached to an instance.
    
    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_IPv4_To_NetworkInterface_Attached'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_IPv4_To_NetworkInterface_Attached -timeout 120m
    === RUN   TestAccAWSRoute_IPv4_To_NetworkInterface_Attached
    === PAUSE TestAccAWSRoute_IPv4_To_NetworkInterface_Attached
    === CONT  TestAccAWSRoute_IPv4_To_NetworkInterface_Attached
    --- PASS: TestAccAWSRoute_IPv4_To_NetworkInterface_Attached (113.54s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	113.607s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    f11a665 View commit details
    Browse the repository at this point in the history
  23. r/aws_route: Add 'TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachm…

    …ents' to test route to 2 ENIs attached to the same instance (hashicorp#2270).
    
    Acceptance test output (failure expected):
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments -timeout 120m
    === RUN   TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments
    === PAUSE TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments
    === CONT  TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments
    --- FAIL: TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments (127.29s)
        testing.go:684: Step 1 error: errors during apply:
    
            Error: InvalidInstanceID: There are multiple interfaces attached to instance 'i-005065eb4850f01a4'. Please specify an interface ID for the operation instead.
            	status code: 400, request id: f601a6af-729a-4830-835b-be8887b0c3ee
    
              on /tmp/tf-test358593801/main.tf line 98:
              (source code not available)
    
    FAIL
    FAIL	github.com/terraform-providers/terraform-provider-aws/aws	127.347s
    FAIL
    GNUmakefile:26: recipe for target 'testacc' failed
    make: *** [testacc] Error 1
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    f462ff3 View commit details
    Browse the repository at this point in the history
  24. r/aws_route: Comment out failing 'TestAccAWSRoute_IPv4_To_NetworkInte…

    …rface_TwoAttachments'.
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    9fb69bd View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    a86e680 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    bc9a711 View commit details
    Browse the repository at this point in the history
  27. r/aws_route: Add 'TestAccAWSRoute_IPv6_Update_Target'. Currently fails.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_IPv6_Update_Target'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_IPv6_Update_Target -timeout 120m
    === RUN   TestAccAWSRoute_IPv6_Update_Target
    === PAUSE TestAccAWSRoute_IPv6_Update_Target
    === CONT  TestAccAWSRoute_IPv6_Update_Target
    --- FAIL: TestAccAWSRoute_IPv6_Update_Target (152.32s)
        testing.go:684: Step 1 error: errors during apply:
    
            Error: Error: more than 1 target specified. Only 1 of gateway_id, egress_only_gateway_id, nat_gateway_id, instance_id, network_interface_id or vpc_peering_connection_id is allowed.
    
              on /tmp/tf-test007003987/main.tf line 131:
              (source code not available)
    
    FAIL
    FAIL	github.com/terraform-providers/terraform-provider-aws/aws	152.371s
    FAIL
    GNUmakefile:26: recipe for target 'testacc' failed
    make: *** [testacc] Error 1
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    5495401 View commit details
    Browse the repository at this point in the history
  28. r/aws_route: Better validation.

    Acceptance test output (failures expected):
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 2 -run=TestAccAWSRoute_ -timeout 120m
    === RUN   TestAccAWSRoute_basic
    === PAUSE TestAccAWSRoute_basic
    === RUN   TestAccAWSRoute_disappears
    === PAUSE TestAccAWSRoute_disappears
    === RUN   TestAccAWSRoute_routeTableDisappears
    === PAUSE TestAccAWSRoute_routeTableDisappears
    === RUN   TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    === PAUSE TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    === RUN   TestAccAWSRoute_IPv6_To_InternetGateway
    === PAUSE TestAccAWSRoute_IPv6_To_InternetGateway
    === RUN   TestAccAWSRoute_IPv6_To_Instance
    === PAUSE TestAccAWSRoute_IPv6_To_Instance
    === RUN   TestAccAWSRoute_IPv6_To_NetworkInterface
    === PAUSE TestAccAWSRoute_IPv6_To_NetworkInterface
    === RUN   TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    === PAUSE TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    === RUN   TestAccAWSRoute_IPv6_To_VpnGateway
    === PAUSE TestAccAWSRoute_IPv6_To_VpnGateway
    === RUN   TestAccAWSRoute_IPv4_To_VpnGateway
    === PAUSE TestAccAWSRoute_IPv4_To_VpnGateway
    === RUN   TestAccAWSRoute_IPv4_To_Instance
    === PAUSE TestAccAWSRoute_IPv4_To_Instance
    === RUN   TestAccAWSRoute_IPv4_To_NetworkInterface
    === PAUSE TestAccAWSRoute_IPv4_To_NetworkInterface
    === RUN   TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    === PAUSE TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    === RUN   TestAccAWSRoute_IPv4_To_NatGateway
    === PAUSE TestAccAWSRoute_IPv4_To_NatGateway
    === RUN   TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    === PAUSE TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    === RUN   TestAccAWSRoute_IPv4_To_TransitGateway
    === PAUSE TestAccAWSRoute_IPv4_To_TransitGateway
    === RUN   TestAccAWSRoute_ConditionalCidrBlock
    === PAUSE TestAccAWSRoute_ConditionalCidrBlock
    === RUN   TestAccAWSRoute_IPv4_Update_Target
    === PAUSE TestAccAWSRoute_IPv4_Update_Target
    === RUN   TestAccAWSRoute_IPv6_Update_Target
    === PAUSE TestAccAWSRoute_IPv6_Update_Target
    === CONT  TestAccAWSRoute_basic
    === CONT  TestAccAWSRoute_IPv6_Update_Target
    --- PASS: TestAccAWSRoute_basic (52.56s)
    === CONT  TestAccAWSRoute_IPv4_Update_Target
    --- FAIL: TestAccAWSRoute_IPv6_Update_Target (101.24s)
        testing.go:684: Step 1 error: errors during apply:
    
            Error: Error: more than 1 target specified. Only 1 of gateway_id, egress_only_gateway_id, nat_gateway_id, instance_id, network_interface_id or vpc_peering_connection_id is allowed.
    
              on /tmp/tf-test041809885/main.tf line 131:
              (source code not available)
    
    === CONT  TestAccAWSRoute_ConditionalCidrBlock
    --- PASS: TestAccAWSRoute_ConditionalCidrBlock (77.26s)
    === CONT  TestAccAWSRoute_IPv4_To_TransitGateway
    --- FAIL: TestAccAWSRoute_IPv4_Update_Target (370.49s)
        testing.go:684: Step 1 error: errors during apply:
    
            Error: Error: more than 1 target specified. Only 1 of gateway_id, egress_only_gateway_id, nat_gateway_id, instance_id, network_interface_id or vpc_peering_connection_id is allowed.
    
              on /tmp/tf-test640007973/main.tf line 153:
              (source code not available)
    
    === CONT  TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    --- PASS: TestAccAWSRoute_DoesNotCrashWithVpcEndpoint (62.59s)
    === CONT  TestAccAWSRoute_IPv4_To_NatGateway
    --- PASS: TestAccAWSRoute_IPv4_To_TransitGateway (357.58s)
    === CONT  TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    --- PASS: TestAccAWSRoute_IPv4_To_VpcPeeringConnection (42.14s)
    === CONT  TestAccAWSRoute_IPv4_To_NetworkInterface
    --- PASS: TestAccAWSRoute_IPv4_To_NetworkInterface (48.03s)
    === CONT  TestAccAWSRoute_IPv4_To_Instance
    --- PASS: TestAccAWSRoute_IPv4_To_NatGateway (205.87s)
    === CONT  TestAccAWSRoute_IPv4_To_VpnGateway
    --- PASS: TestAccAWSRoute_IPv4_To_Instance (97.35s)
    === CONT  TestAccAWSRoute_IPv6_To_VpnGateway
    --- PASS: TestAccAWSRoute_IPv4_To_VpnGateway (53.36s)
    === CONT  TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    --- PASS: TestAccAWSRoute_IPv6_To_VpnGateway (62.11s)
    === CONT  TestAccAWSRoute_IPv6_To_NetworkInterface
    --- PASS: TestAccAWSRoute_IPv6_To_VpcPeeringConnection (41.51s)
    === CONT  TestAccAWSRoute_IPv6_To_Instance
    --- PASS: TestAccAWSRoute_IPv6_To_NetworkInterface (48.70s)
    === CONT  TestAccAWSRoute_IPv6_To_InternetGateway
    --- PASS: TestAccAWSRoute_IPv6_To_InternetGateway (52.58s)
    === CONT  TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    --- PASS: TestAccAWSRoute_IPv6_To_Instance (119.70s)
    === CONT  TestAccAWSRoute_routeTableDisappears
    --- PASS: TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway (60.46s)
    === CONT  TestAccAWSRoute_disappears
    --- PASS: TestAccAWSRoute_routeTableDisappears (48.52s)
    --- PASS: TestAccAWSRoute_disappears (47.95s)
    FAIL
    FAIL	github.com/terraform-providers/terraform-provider-aws/aws	995.477s
    FAIL
    GNUmakefile:26: recipe for target 'testacc' failed
    make: *** [testacc] Error 1
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    363c08d View commit details
    Browse the repository at this point in the history
  29. r/aws_route: Correctly handle route target updates.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_IPv4_Update_Target'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 2 -run=TestAccAWSRoute_IPv4_Update_Target -timeout 120m
    === RUN   TestAccAWSRoute_IPv4_Update_Target
    === PAUSE TestAccAWSRoute_IPv4_Update_Target
    === CONT  TestAccAWSRoute_IPv4_Update_Target
    --- PASS: TestAccAWSRoute_IPv4_Update_Target (495.57s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	495.621s
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_IPv6_Update_Target'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 2 -run=TestAccAWSRoute_IPv6_Update_Target -timeout 120m
    === RUN   TestAccAWSRoute_IPv6_Update_Target
    === PAUSE TestAccAWSRoute_IPv6_Update_Target
    === CONT  TestAccAWSRoute_IPv6_Update_Target
    --- PASS: TestAccAWSRoute_IPv6_Update_Target (246.11s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	246.176s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    2270c2b View commit details
    Browse the repository at this point in the history
  30. r/aws_route: Uncommented 'TestAccAWSRoute_IPv4_To_NetworkInterface_Tw…

    …oAttachments'.
    
    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 2 -run=TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments -timeout 120m
    === RUN   TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments
    === PAUSE TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments
    === CONT  TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments
    --- PASS: TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments (145.48s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	145.537s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    6a2812b View commit details
    Browse the repository at this point in the history
  31. Acceptance test output:

    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 2 -run=TestAccAWSRoute_ -timeout 120m
    === RUN   TestAccAWSRoute_basic
    === PAUSE TestAccAWSRoute_basic
    === RUN   TestAccAWSRoute_disappears
    === PAUSE TestAccAWSRoute_disappears
    === RUN   TestAccAWSRoute_routeTableDisappears
    === PAUSE TestAccAWSRoute_routeTableDisappears
    === RUN   TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    === PAUSE TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    === RUN   TestAccAWSRoute_IPv6_To_InternetGateway
    === PAUSE TestAccAWSRoute_IPv6_To_InternetGateway
    === RUN   TestAccAWSRoute_IPv6_To_Instance
    === PAUSE TestAccAWSRoute_IPv6_To_Instance
    === RUN   TestAccAWSRoute_IPv6_To_NetworkInterface_Unattached
    === PAUSE TestAccAWSRoute_IPv6_To_NetworkInterface_Unattached
    === RUN   TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    === PAUSE TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    === RUN   TestAccAWSRoute_IPv6_To_VpnGateway
    === PAUSE TestAccAWSRoute_IPv6_To_VpnGateway
    === RUN   TestAccAWSRoute_IPv4_To_VpnGateway
    === PAUSE TestAccAWSRoute_IPv4_To_VpnGateway
    === RUN   TestAccAWSRoute_IPv4_To_Instance
    === PAUSE TestAccAWSRoute_IPv4_To_Instance
    === RUN   TestAccAWSRoute_IPv4_To_NetworkInterface_Unattached
    === PAUSE TestAccAWSRoute_IPv4_To_NetworkInterface_Unattached
    === RUN   TestAccAWSRoute_IPv4_To_NetworkInterface_Attached
    === PAUSE TestAccAWSRoute_IPv4_To_NetworkInterface_Attached
    === RUN   TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments
    === PAUSE TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments
    === RUN   TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    === PAUSE TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    === RUN   TestAccAWSRoute_IPv4_To_NatGateway
    === PAUSE TestAccAWSRoute_IPv4_To_NatGateway
    === RUN   TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    === PAUSE TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    === RUN   TestAccAWSRoute_IPv4_To_TransitGateway
    === PAUSE TestAccAWSRoute_IPv4_To_TransitGateway
    === RUN   TestAccAWSRoute_ConditionalCidrBlock
    === PAUSE TestAccAWSRoute_ConditionalCidrBlock
    === RUN   TestAccAWSRoute_IPv4_Update_Target
    === PAUSE TestAccAWSRoute_IPv4_Update_Target
    === RUN   TestAccAWSRoute_IPv6_Update_Target
    === PAUSE TestAccAWSRoute_IPv6_Update_Target
    === CONT  TestAccAWSRoute_disappears
    === CONT  TestAccAWSRoute_IPv6_Update_Target
    --- PASS: TestAccAWSRoute_disappears (48.49s)
    === CONT  TestAccAWSRoute_IPv4_Update_Target
    --- PASS: TestAccAWSRoute_IPv6_Update_Target (266.65s)
    === CONT  TestAccAWSRoute_ConditionalCidrBlock
    --- PASS: TestAccAWSRoute_ConditionalCidrBlock (76.16s)
    === CONT  TestAccAWSRoute_IPv4_To_TransitGateway
    --- PASS: TestAccAWSRoute_IPv4_Update_Target (502.14s)
    === CONT  TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    --- PASS: TestAccAWSRoute_DoesNotCrashWithVpcEndpoint (63.18s)
    === CONT  TestAccAWSRoute_IPv4_To_NatGateway
    --- PASS: TestAccAWSRoute_IPv4_To_TransitGateway (346.35s)
    === CONT  TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    --- PASS: TestAccAWSRoute_IPv4_To_VpcPeeringConnection (42.93s)
    === CONT  TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments
    --- PASS: TestAccAWSRoute_IPv4_To_NatGateway (216.48s)
    === CONT  TestAccAWSRoute_IPv4_To_NetworkInterface_Attached
    --- PASS: TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments (155.89s)
    === CONT  TestAccAWSRoute_IPv4_To_NetworkInterface_Unattached
    --- PASS: TestAccAWSRoute_IPv4_To_NetworkInterface_Unattached (48.44s)
    === CONT  TestAccAWSRoute_IPv4_To_Instance
    --- PASS: TestAccAWSRoute_IPv4_To_NetworkInterface_Attached (146.10s)
    === CONT  TestAccAWSRoute_IPv4_To_VpnGateway
    --- PASS: TestAccAWSRoute_IPv4_To_VpnGateway (59.08s)
    === CONT  TestAccAWSRoute_IPv6_To_VpnGateway
    --- PASS: TestAccAWSRoute_IPv4_To_Instance (139.67s)
    === CONT  TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    --- PASS: TestAccAWSRoute_IPv6_To_VpnGateway (56.31s)
    === CONT  TestAccAWSRoute_IPv6_To_NetworkInterface_Unattached
    --- PASS: TestAccAWSRoute_IPv6_To_VpcPeeringConnection (43.67s)
    === CONT  TestAccAWSRoute_IPv6_To_Instance
    --- PASS: TestAccAWSRoute_IPv6_To_NetworkInterface_Unattached (49.09s)
    === CONT  TestAccAWSRoute_IPv6_To_InternetGateway
    --- PASS: TestAccAWSRoute_IPv6_To_InternetGateway (52.37s)
    === CONT  TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    --- PASS: TestAccAWSRoute_IPv6_To_Instance (131.22s)
    === CONT  TestAccAWSRoute_routeTableDisappears
    --- PASS: TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway (59.16s)
    === CONT  TestAccAWSRoute_basic
    --- PASS: TestAccAWSRoute_routeTableDisappears (48.47s)
    --- PASS: TestAccAWSRoute_basic (50.81s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	1303.322s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    7a3aca3 View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    ea1ec72 View commit details
    Browse the repository at this point in the history
  33. r/aws_route: Add 'TestAccAWSRoute_LocalRoute' to test ability to impo…

    …rt a local route.
    
    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_LocalRoute'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_LocalRoute -timeout 120m
    === RUN   TestAccAWSRoute_LocalRoute
    === PAUSE TestAccAWSRoute_LocalRoute
    === CONT  TestAccAWSRoute_LocalRoute
    --- PASS: TestAccAWSRoute_LocalRoute (38.20s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	38.270s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    bfb4904 View commit details
    Browse the repository at this point in the history
  34. r/aws_route: Add error constants to 'aws/internal/service/ec2'. Tweak…

    … route read function names.
    
    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_basic'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_basic -timeout 120m
    === RUN   TestAccAWSRoute_basic
    === PAUSE TestAccAWSRoute_basic
    === CONT  TestAccAWSRoute_basic
    --- PASS: TestAccAWSRoute_basic (51.24s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	51.288s
     make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_disappears'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_disappears -timeout 120m
    === RUN   TestAccAWSRoute_disappears
    === PAUSE TestAccAWSRoute_disappears
    === CONT  TestAccAWSRoute_disappears
    --- PASS: TestAccAWSRoute_disappears (47.70s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	47.760s
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_disappears'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_disappears -timeout 120m
    === RUN   TestAccAWSRoute_disappears
    === PAUSE TestAccAWSRoute_disappears
    === CONT  TestAccAWSRoute_disappears
    --- PASS: TestAccAWSRoute_disappears (47.70s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	47.760s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    722afda View commit details
    Browse the repository at this point in the history
  35. r/aw3s_route: Move route finders to 'aws/internal/service/ec2/finder'…

    …. Add 'aws/internal/net/cidr.go'.
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    b2b4fc2 View commit details
    Browse the repository at this point in the history
  36. r/aws_route: Add 'createRoute' function.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_basic'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_basic -timeout 120m
    === RUN   TestAccAWSRoute_basic
    === PAUSE TestAccAWSRoute_basic
    === CONT  TestAccAWSRoute_basic
    --- PASS: TestAccAWSRoute_basic (51.48s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	51.542s
    ewbankkit committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    673c8ec View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2020

  1. r/aws_route: Use Amazon NAT instance AMI for instance tests.

    Acceptance test output:
    
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_IPv6_To_Instance'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_IPv6_To_Instance -timeout 120m
    === RUN   TestAccAWSRoute_IPv6_To_Instance
    === PAUSE TestAccAWSRoute_IPv6_To_Instance
    === CONT  TestAccAWSRoute_IPv6_To_Instance
    --- PASS: TestAccAWSRoute_IPv6_To_Instance (128.20s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	128.262s
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_IPv4_To_Instance'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_IPv4_To_Instance -timeout 120m
    === RUN   TestAccAWSRoute_IPv4_To_Instance
    === PAUSE TestAccAWSRoute_IPv4_To_Instance
    === CONT  TestAccAWSRoute_IPv4_To_Instance
    --- PASS: TestAccAWSRoute_IPv4_To_Instance (116.72s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	116.766s
    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_IPv4_To_NetworkInterface_Attached'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSRoute_IPv4_To_NetworkInterface_Attached -timeout 120m
    === RUN   TestAccAWSRoute_IPv4_To_NetworkInterface_Attached
    === PAUSE TestAccAWSRoute_IPv4_To_NetworkInterface_Attached
    === CONT  TestAccAWSRoute_IPv4_To_NetworkInterface_Attached
    --- PASS: TestAccAWSRoute_IPv4_To_NetworkInterface_Attached (330.31s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	330.352s
    ewbankkit committed Jul 15, 2020
    Configuration menu
    Copy the full SHA
    a795a61 View commit details
    Browse the repository at this point in the history
  2. Acceptance test output:

    $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSRoute_'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws/ -v -count 1 -parallel 2 -run=TestAccAWSRoute_ -timeout 120m
    === RUN   TestAccAWSRoute_basic
    === PAUSE TestAccAWSRoute_basic
    === RUN   TestAccAWSRoute_disappears
    === PAUSE TestAccAWSRoute_disappears
    === RUN   TestAccAWSRoute_routeTableDisappears
    === PAUSE TestAccAWSRoute_routeTableDisappears
    === RUN   TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    === PAUSE TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    === RUN   TestAccAWSRoute_IPv6_To_InternetGateway
    === PAUSE TestAccAWSRoute_IPv6_To_InternetGateway
    === RUN   TestAccAWSRoute_IPv6_To_Instance
    === PAUSE TestAccAWSRoute_IPv6_To_Instance
    === RUN   TestAccAWSRoute_IPv6_To_NetworkInterface_Unattached
    === PAUSE TestAccAWSRoute_IPv6_To_NetworkInterface_Unattached
    === RUN   TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    === PAUSE TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    === RUN   TestAccAWSRoute_IPv6_To_VpnGateway
    === PAUSE TestAccAWSRoute_IPv6_To_VpnGateway
    === RUN   TestAccAWSRoute_IPv4_To_VpnGateway
    === PAUSE TestAccAWSRoute_IPv4_To_VpnGateway
    === RUN   TestAccAWSRoute_IPv4_To_Instance
    === PAUSE TestAccAWSRoute_IPv4_To_Instance
    === RUN   TestAccAWSRoute_IPv4_To_NetworkInterface_Unattached
    === PAUSE TestAccAWSRoute_IPv4_To_NetworkInterface_Unattached
    === RUN   TestAccAWSRoute_IPv4_To_NetworkInterface_Attached
    === PAUSE TestAccAWSRoute_IPv4_To_NetworkInterface_Attached
    === RUN   TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments
    === PAUSE TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments
    === RUN   TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    === PAUSE TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    === RUN   TestAccAWSRoute_IPv4_To_NatGateway
    === PAUSE TestAccAWSRoute_IPv4_To_NatGateway
    === RUN   TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    === PAUSE TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    === RUN   TestAccAWSRoute_IPv4_To_TransitGateway
    === PAUSE TestAccAWSRoute_IPv4_To_TransitGateway
    === RUN   TestAccAWSRoute_ConditionalCidrBlock
    === PAUSE TestAccAWSRoute_ConditionalCidrBlock
    === RUN   TestAccAWSRoute_IPv4_Update_Target
    === PAUSE TestAccAWSRoute_IPv4_Update_Target
    === RUN   TestAccAWSRoute_IPv6_Update_Target
    === PAUSE TestAccAWSRoute_IPv6_Update_Target
    === RUN   TestAccAWSRoute_LocalRoute
    === PAUSE TestAccAWSRoute_LocalRoute
    === CONT  TestAccAWSRoute_basic
    === CONT  TestAccAWSRoute_IPv4_To_NetworkInterface_Attached
    --- PASS: TestAccAWSRoute_basic (51.10s)
    === CONT  TestAccAWSRoute_IPv4_To_NetworkInterface_Unattached
    --- PASS: TestAccAWSRoute_IPv4_To_NetworkInterface_Unattached (46.24s)
    === CONT  TestAccAWSRoute_IPv4_To_Instance
    --- PASS: TestAccAWSRoute_IPv4_To_NetworkInterface_Attached (132.44s)
    === CONT  TestAccAWSRoute_IPv4_To_VpnGateway
    --- PASS: TestAccAWSRoute_IPv4_To_VpnGateway (56.29s)
    === CONT  TestAccAWSRoute_IPv6_To_VpnGateway
    --- PASS: TestAccAWSRoute_IPv4_To_Instance (127.96s)
    === CONT  TestAccAWSRoute_IPv6_To_VpcPeeringConnection
    --- PASS: TestAccAWSRoute_IPv6_To_VpnGateway (59.39s)
    === CONT  TestAccAWSRoute_IPv6_To_NetworkInterface_Unattached
    --- PASS: TestAccAWSRoute_IPv6_To_VpcPeeringConnection (41.27s)
    === CONT  TestAccAWSRoute_IPv6_To_Instance
    --- PASS: TestAccAWSRoute_IPv6_To_NetworkInterface_Unattached (46.93s)
    === CONT  TestAccAWSRoute_IPv6_To_InternetGateway
    --- PASS: TestAccAWSRoute_IPv6_To_InternetGateway (51.54s)
    === CONT  TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway
    --- PASS: TestAccAWSRoute_IPv6_To_EgressOnlyInternetGateway (57.61s)
    === CONT  TestAccAWSRoute_routeTableDisappears
    --- PASS: TestAccAWSRoute_routeTableDisappears (47.39s)
    === CONT  TestAccAWSRoute_disappears
    --- PASS: TestAccAWSRoute_disappears (46.70s)
    === CONT  TestAccAWSRoute_IPv4_To_TransitGateway
    --- PASS: TestAccAWSRoute_IPv6_To_Instance (326.82s)
    === CONT  TestAccAWSRoute_LocalRoute
    --- PASS: TestAccAWSRoute_LocalRoute (37.26s)
    === CONT  TestAccAWSRoute_IPv6_Update_Target
    --- PASS: TestAccAWSRoute_IPv4_To_TransitGateway (355.67s)
    === CONT  TestAccAWSRoute_IPv4_Update_Target
    --- PASS: TestAccAWSRoute_IPv6_Update_Target (272.71s)
    === CONT  TestAccAWSRoute_ConditionalCidrBlock
    --- PASS: TestAccAWSRoute_ConditionalCidrBlock (75.84s)
    === CONT  TestAccAWSRoute_IPv4_To_VpcPeeringConnection
    --- PASS: TestAccAWSRoute_IPv4_To_VpcPeeringConnection (41.56s)
    === CONT  TestAccAWSRoute_DoesNotCrashWithVpcEndpoint
    --- PASS: TestAccAWSRoute_DoesNotCrashWithVpcEndpoint (60.36s)
    === CONT  TestAccAWSRoute_IPv4_To_NatGateway
    --- PASS: TestAccAWSRoute_IPv4_To_NatGateway (224.40s)
    === CONT  TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments
    --- PASS: TestAccAWSRoute_IPv4_Update_Target (539.79s)
    --- PASS: TestAccAWSRoute_IPv4_To_NetworkInterface_TwoAttachments (174.29s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	1479.901s
    ewbankkit committed Jul 15, 2020
    Configuration menu
    Copy the full SHA
    22df25c View commit details
    Browse the repository at this point in the history