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

Add Fargate support to Batch compute environments #16819

Merged

Commits on Apr 21, 2021

  1. Add FARGATE and FARGATE_SPOT types

    gmazelier authored and ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    a49c404 View commit details
    Browse the repository at this point in the history
  2. instance_type is now optional

    gmazelier authored and ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    aa363ff View commit details
    Browse the repository at this point in the history
  3. instance_role is now optional

    gmazelier authored and ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    015d97e View commit details
    Browse the repository at this point in the history
  4. min_vcpus is now optional

    gmazelier authored and ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    17538b1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b8191ed View commit details
    Browse the repository at this point in the history
  6. Create FARGATE environment test

    gmazelier authored and ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    4890c7b View commit details
    Browse the repository at this point in the history
  7. Create FARGATE_SPOT environment test

    gmazelier authored and ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    5a538fa View commit details
    Browse the repository at this point in the history
  8. Fix warnings

    gmazelier authored and ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    e4bdcc0 View commit details
    Browse the repository at this point in the history
  9. Update documentation

    gmazelier authored and ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    ee6312c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d079373 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    06a55d7 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    ab04c52 View commit details
    Browse the repository at this point in the history
  13. Add CHANGELOG entry.

    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    02bb788 View commit details
    Browse the repository at this point in the history
  14. r/aws_batch_compute_environment: Add and use internal waiter package.

    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_createEc2' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_createEc2 -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_createEc2
    === PAUSE TestAccAWSBatchComputeEnvironment_createEc2
    === RUN   TestAccAWSBatchComputeEnvironment_createEc2WithTags
    === PAUSE TestAccAWSBatchComputeEnvironment_createEc2WithTags
    === RUN   TestAccAWSBatchComputeEnvironment_createEc2WithoutComputeResources
    === PAUSE TestAccAWSBatchComputeEnvironment_createEc2WithoutComputeResources
    === CONT  TestAccAWSBatchComputeEnvironment_createEc2
    === CONT  TestAccAWSBatchComputeEnvironment_createEc2WithoutComputeResources
    === CONT  TestAccAWSBatchComputeEnvironment_createEc2WithTags
    --- PASS: TestAccAWSBatchComputeEnvironment_createEc2WithoutComputeResources (15.82s)
    --- PASS: TestAccAWSBatchComputeEnvironment_createEc2 (35.68s)
    --- PASS: TestAccAWSBatchComputeEnvironment_createEc2WithTags (47.66s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	50.527s
    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    c348531 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    0dfcdc9 View commit details
    Browse the repository at this point in the history
  16. r/aws_batch_compute_environment: Use internal naming package.

    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_createWithNamePrefix' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_createWithNamePrefix -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_createWithNamePrefix
    === PAUSE TestAccAWSBatchComputeEnvironment_createWithNamePrefix
    === CONT  TestAccAWSBatchComputeEnvironment_createWithNamePrefix
    --- PASS: TestAccAWSBatchComputeEnvironment_createWithNamePrefix (31.51s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	34.599s
    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    643b920 View commit details
    Browse the repository at this point in the history
  17. Fix terrafmt errors.

    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    f4696b5 View commit details
    Browse the repository at this point in the history
  18. r/aws_batch_compute_environment: Add name generation tests.

    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_Name' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_Name -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_NameGenerated
    === PAUSE TestAccAWSBatchComputeEnvironment_NameGenerated
    === RUN   TestAccAWSBatchComputeEnvironment_NamePrefix
    === PAUSE TestAccAWSBatchComputeEnvironment_NamePrefix
    === CONT  TestAccAWSBatchComputeEnvironment_NameGenerated
    === CONT  TestAccAWSBatchComputeEnvironment_NamePrefix
    --- PASS: TestAccAWSBatchComputeEnvironment_NameGenerated (35.37s)
    --- PASS: TestAccAWSBatchComputeEnvironment_NamePrefix (38.20s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	41.533s
    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    2b3a037 View commit details
    Browse the repository at this point in the history
  19. r/aws_batch_compute_environment: Add 'TestAccAWSBatchComputeEnvironme…

    …nt_basic'.
    
    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_basic\|TestAccAWSBatchComputeEnvironment_disappears' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_basic\|TestAccAWSBatchComputeEnvironment_disappears -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_basic
    === PAUSE TestAccAWSBatchComputeEnvironment_basic
    === RUN   TestAccAWSBatchComputeEnvironment_disappears
    === PAUSE TestAccAWSBatchComputeEnvironment_disappears
    === CONT  TestAccAWSBatchComputeEnvironment_basic
    === CONT  TestAccAWSBatchComputeEnvironment_disappears
    --- PASS: TestAccAWSBatchComputeEnvironment_basic (45.31s)
    --- PASS: TestAccAWSBatchComputeEnvironment_disappears (45.94s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	49.617s
    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    d1e7bf7 View commit details
    Browse the repository at this point in the history
  20. r/aws_batch_compute_environment: Check all attributes in 'TestAccAWSB…

    …atchComputeEnvironment_createEc2'.
    
    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_createEc2' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_createEc2 -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_createEc2
    === PAUSE TestAccAWSBatchComputeEnvironment_createEc2
    === RUN   TestAccAWSBatchComputeEnvironment_createEc2WithoutComputeResources
    === PAUSE TestAccAWSBatchComputeEnvironment_createEc2WithoutComputeResources
    === CONT  TestAccAWSBatchComputeEnvironment_createEc2
    === CONT  TestAccAWSBatchComputeEnvironment_createEc2WithoutComputeResources
    --- PASS: TestAccAWSBatchComputeEnvironment_createEc2WithoutComputeResources (15.93s)
    --- PASS: TestAccAWSBatchComputeEnvironment_createEc2 (41.39s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	44.466s
    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    a6fdab9 View commit details
    Browse the repository at this point in the history
  21. r/aws_batch_compute_environment: Check all attributes in 'TestAccAWSB…

    …atchComputeEnvironment_createFargate'.
    
    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_createFargate' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_createFargate -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_createFargate
    === PAUSE TestAccAWSBatchComputeEnvironment_createFargate
    === RUN   TestAccAWSBatchComputeEnvironment_createFargateSpot
    === PAUSE TestAccAWSBatchComputeEnvironment_createFargateSpot
    === CONT  TestAccAWSBatchComputeEnvironment_createFargate
    === CONT  TestAccAWSBatchComputeEnvironment_createFargateSpot
    --- PASS: TestAccAWSBatchComputeEnvironment_createFargate (37.82s)
    --- PASS: TestAccAWSBatchComputeEnvironment_createFargateSpot (37.89s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	41.373s
    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    50086ba View commit details
    Browse the repository at this point in the history
  22. r/aws_batch_compute_environment: Check all attributes in 'TestAccAWSB…

    …atchComputeEnvironment_createSpot'.
    
    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_createSpot' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_createSpot -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_createSpot
    === PAUSE TestAccAWSBatchComputeEnvironment_createSpot
    === RUN   TestAccAWSBatchComputeEnvironment_createSpotWithAllocationStrategy
    === PAUSE TestAccAWSBatchComputeEnvironment_createSpotWithAllocationStrategy
    === RUN   TestAccAWSBatchComputeEnvironment_createSpotWithoutBidPercentage
    === PAUSE TestAccAWSBatchComputeEnvironment_createSpotWithoutBidPercentage
    === CONT  TestAccAWSBatchComputeEnvironment_createSpot
    === CONT  TestAccAWSBatchComputeEnvironment_createSpotWithoutBidPercentage
    === CONT  TestAccAWSBatchComputeEnvironment_createSpotWithAllocationStrategy
    --- PASS: TestAccAWSBatchComputeEnvironment_createSpotWithoutBidPercentage (16.19s)
    --- PASS: TestAccAWSBatchComputeEnvironment_createSpotWithAllocationStrategy (39.25s)
    --- PASS: TestAccAWSBatchComputeEnvironment_createSpot (451.34s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	454.712s
    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    6fee2eb View commit details
    Browse the repository at this point in the history
  23. r/aws_batch_compute_environment: Add 'TestAccAWSBatchComputeEnvironme…

    …nt_createEc2_DesiredVcpus_ComputeResourcesTags'.
    
    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_ComputeResourcesTags' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_ComputeResourcesTags -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_ComputeResourcesTags
    === PAUSE TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_ComputeResourcesTags
    === CONT  TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_ComputeResourcesTags
    --- PASS: TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_ComputeResourcesTags (72.85s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	75.936s
    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    88967c1 View commit details
    Browse the repository at this point in the history
  24. r/aws_batch_compute_environment: Add 'TestAccAWSBatchComputeEnvironme…

    …nt_updateServiceRole'.
    
    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_updateServiceRole' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_updateServiceRole -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_updateServiceRole
    === PAUSE TestAccAWSBatchComputeEnvironment_updateServiceRole
    === CONT  TestAccAWSBatchComputeEnvironment_updateServiceRole
    --- PASS: TestAccAWSBatchComputeEnvironment_updateServiceRole (64.70s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	67.804s
    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    fc394ac View commit details
    Browse the repository at this point in the history
  25. r/aws_batch_compute_environment: Rename 'TestAccAWSBatchComputeEnviro…

    …nment_createEc2_DesiredVcpus_ComputeResourcesTags' to 'TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_Ec2KeyPair_ImageId_ComputeResourcesTags'.
    
    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_Ec2KeyPair_ImageId_ComputeResourcesTags' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_Ec2KeyPair_ImageId_ComputeResourcesTags -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_Ec2KeyPair_ImageId_ComputeResourcesTags
    === PAUSE TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_Ec2KeyPair_ImageId_ComputeResourcesTags
    === CONT  TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_Ec2KeyPair_ImageId_ComputeResourcesTags
    --- PASS: TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_Ec2KeyPair_ImageId_ComputeResourcesTags (126.28s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	129.281s
    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    4efb3b2 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    56a2351 View commit details
    Browse the repository at this point in the history
  27. r/aws_batch_compute_environment: Check all attributes in 'TestAccAWSB…

    …atchComputeEnvironment_ComputeResources_MaxVcpus' and 'TestAccAWSBatchComputeEnvironment_ComputeResources_MinVcpus'.
    
    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_ComputeResources_' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_ComputeResources_ -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_ComputeResources_MinVcpus
    === PAUSE TestAccAWSBatchComputeEnvironment_ComputeResources_MinVcpus
    === RUN   TestAccAWSBatchComputeEnvironment_ComputeResources_MaxVcpus
    === PAUSE TestAccAWSBatchComputeEnvironment_ComputeResources_MaxVcpus
    === CONT  TestAccAWSBatchComputeEnvironment_ComputeResources_MinVcpus
    === CONT  TestAccAWSBatchComputeEnvironment_ComputeResources_MaxVcpus
    --- PASS: TestAccAWSBatchComputeEnvironment_ComputeResources_MaxVcpus (83.56s)
    --- PASS: TestAccAWSBatchComputeEnvironment_ComputeResources_MinVcpus (219.32s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	222.771s
    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    102a1de View commit details
    Browse the repository at this point in the history
  28. r/aws_batch_compute_environment: Check all attributes in 'TestAccAWSB…

    …atchComputeEnvironment_launchTemplate'.
    
    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_launchTemplate' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_launchTemplate -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_launchTemplate
    === PAUSE TestAccAWSBatchComputeEnvironment_launchTemplate
    === CONT  TestAccAWSBatchComputeEnvironment_launchTemplate
    --- PASS: TestAccAWSBatchComputeEnvironment_launchTemplate (39.96s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	43.510s
    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    5725b2d View commit details
    Browse the repository at this point in the history
  29. r/aws_batch_compute_environment: Check all attributes in 'TestAccAWSB…

    …atchComputeEnvironment_UpdateLaunchTemplate'.
    
    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_UpdateLaunchTemplate' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_UpdateLaunchTemplate -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_UpdateLaunchTemplate
    === PAUSE TestAccAWSBatchComputeEnvironment_UpdateLaunchTemplate
    === CONT  TestAccAWSBatchComputeEnvironment_UpdateLaunchTemplate
    --- PASS: TestAccAWSBatchComputeEnvironment_UpdateLaunchTemplate (61.35s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	66.500s
    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    4e3ea24 View commit details
    Browse the repository at this point in the history
  30. r/aws_batch_compute_environment: Check all attributes in 'TestAccAWSB…

    …atchComputeEnvironment_createUnmanagedWithComputeResources'.
    
    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_createUnmanagedWithComputeResources' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_createUnmanagedWithComputeResources -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_createUnmanagedWithComputeResources
    === PAUSE TestAccAWSBatchComputeEnvironment_createUnmanagedWithComputeResources
    === CONT  TestAccAWSBatchComputeEnvironment_createUnmanagedWithComputeResources
    --- PASS: TestAccAWSBatchComputeEnvironment_createUnmanagedWithComputeResources (36.32s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	39.467s
    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    a880e91 View commit details
    Browse the repository at this point in the history
  31. Fix terrafmt errors.

    ewbankkit committed Apr 21, 2021
    Configuration menu
    Copy the full SHA
    200f312 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2021

  1. Finder tweak.

    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_disappears\|TestAccAWSBatchJobDefinition_disappears' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_disappears\|TestAccAWSBatchJobDefinition_disappears -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_disappears
    === PAUSE TestAccAWSBatchComputeEnvironment_disappears
    === RUN   TestAccAWSBatchJobDefinition_disappears
    === PAUSE TestAccAWSBatchJobDefinition_disappears
    === CONT  TestAccAWSBatchComputeEnvironment_disappears
    === CONT  TestAccAWSBatchJobDefinition_disappears
    --- PASS: TestAccAWSBatchJobDefinition_disappears (9.66s)
    --- PASS: TestAccAWSBatchComputeEnvironment_disappears (46.07s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	49.143s
    ewbankkit committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    e154ba1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0fa2c89 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7a3b1a6 View commit details
    Browse the repository at this point in the history
  4. r/aws_batch_compute_environment: Security Group IDs and Subnets can b…

    …e updated for Fargate compute resources.
    
    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSBatchComputeEnvironment_' ACCTEST_PARALLELISM=4
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 4 -run=TestAccAWSBatchComputeEnvironment_ -timeout 180m
    === RUN   TestAccAWSBatchComputeEnvironment_basic
    === PAUSE TestAccAWSBatchComputeEnvironment_basic
    === RUN   TestAccAWSBatchComputeEnvironment_disappears
    === PAUSE TestAccAWSBatchComputeEnvironment_disappears
    === RUN   TestAccAWSBatchComputeEnvironment_NameGenerated
    === PAUSE TestAccAWSBatchComputeEnvironment_NameGenerated
    === RUN   TestAccAWSBatchComputeEnvironment_NamePrefix
    === PAUSE TestAccAWSBatchComputeEnvironment_NamePrefix
    === RUN   TestAccAWSBatchComputeEnvironment_createEc2
    === PAUSE TestAccAWSBatchComputeEnvironment_createEc2
    === RUN   TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_Ec2KeyPair_ImageId_ComputeResourcesTags
    === PAUSE TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_Ec2KeyPair_ImageId_ComputeResourcesTags
    === RUN   TestAccAWSBatchComputeEnvironment_createSpot
    === PAUSE TestAccAWSBatchComputeEnvironment_createSpot
    === RUN   TestAccAWSBatchComputeEnvironment_createSpot_AllocationStrategy_BidPercentage
    === PAUSE TestAccAWSBatchComputeEnvironment_createSpot_AllocationStrategy_BidPercentage
    === RUN   TestAccAWSBatchComputeEnvironment_createFargate
    === PAUSE TestAccAWSBatchComputeEnvironment_createFargate
    === RUN   TestAccAWSBatchComputeEnvironment_createFargateSpot
    === PAUSE TestAccAWSBatchComputeEnvironment_createFargateSpot
    === RUN   TestAccAWSBatchComputeEnvironment_updateState
    === PAUSE TestAccAWSBatchComputeEnvironment_updateState
    === RUN   TestAccAWSBatchComputeEnvironment_updateServiceRole
    === PAUSE TestAccAWSBatchComputeEnvironment_updateServiceRole
    === RUN   TestAccAWSBatchComputeEnvironment_ComputeResources_MinVcpus
    === PAUSE TestAccAWSBatchComputeEnvironment_ComputeResources_MinVcpus
    === RUN   TestAccAWSBatchComputeEnvironment_ComputeResources_MaxVcpus
    === PAUSE TestAccAWSBatchComputeEnvironment_ComputeResources_MaxVcpus
    === RUN   TestAccAWSBatchComputeEnvironment_launchTemplate
    === PAUSE TestAccAWSBatchComputeEnvironment_launchTemplate
    === RUN   TestAccAWSBatchComputeEnvironment_UpdateLaunchTemplate
    === PAUSE TestAccAWSBatchComputeEnvironment_UpdateLaunchTemplate
    === RUN   TestAccAWSBatchComputeEnvironment_UpdateSecurityGroupsAndSubnets_Fargate
    === PAUSE TestAccAWSBatchComputeEnvironment_UpdateSecurityGroupsAndSubnets_Fargate
    === RUN   TestAccAWSBatchComputeEnvironment_Tags
    === PAUSE TestAccAWSBatchComputeEnvironment_Tags
    === RUN   TestAccAWSBatchComputeEnvironment_createUnmanagedWithComputeResources
    === PAUSE TestAccAWSBatchComputeEnvironment_createUnmanagedWithComputeResources
    === RUN   TestAccAWSBatchComputeEnvironment_createEc2WithoutComputeResources
    === PAUSE TestAccAWSBatchComputeEnvironment_createEc2WithoutComputeResources
    === RUN   TestAccAWSBatchComputeEnvironment_createSpotWithoutIamFleetRole
    === PAUSE TestAccAWSBatchComputeEnvironment_createSpotWithoutIamFleetRole
    === CONT  TestAccAWSBatchComputeEnvironment_basic
    === CONT  TestAccAWSBatchComputeEnvironment_Tags
    === CONT  TestAccAWSBatchComputeEnvironment_createSpotWithoutIamFleetRole
    === CONT  TestAccAWSBatchComputeEnvironment_createFargateSpot
    --- PASS: TestAccAWSBatchComputeEnvironment_createSpotWithoutIamFleetRole (17.63s)
    === CONT  TestAccAWSBatchComputeEnvironment_createEc2WithoutComputeResources
    --- PASS: TestAccAWSBatchComputeEnvironment_createEc2WithoutComputeResources (14.25s)
    === CONT  TestAccAWSBatchComputeEnvironment_createUnmanagedWithComputeResources
    --- PASS: TestAccAWSBatchComputeEnvironment_createFargateSpot (40.50s)
    === CONT  TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_Ec2KeyPair_ImageId_ComputeResourcesTags
    --- PASS: TestAccAWSBatchComputeEnvironment_basic (46.63s)
    === CONT  TestAccAWSBatchComputeEnvironment_createFargate
    --- PASS: TestAccAWSBatchComputeEnvironment_createUnmanagedWithComputeResources (31.85s)
    === CONT  TestAccAWSBatchComputeEnvironment_createSpot_AllocationStrategy_BidPercentage
    --- PASS: TestAccAWSBatchComputeEnvironment_createFargate (35.11s)
    === CONT  TestAccAWSBatchComputeEnvironment_createSpot
    --- PASS: TestAccAWSBatchComputeEnvironment_Tags (82.20s)
    === CONT  TestAccAWSBatchComputeEnvironment_NamePrefix
    --- PASS: TestAccAWSBatchComputeEnvironment_createSpot_AllocationStrategy_BidPercentage (36.36s)
    === CONT  TestAccAWSBatchComputeEnvironment_createEc2
    --- PASS: TestAccAWSBatchComputeEnvironment_createEc2 (34.87s)
    === CONT  TestAccAWSBatchComputeEnvironment_NameGenerated
    --- PASS: TestAccAWSBatchComputeEnvironment_NamePrefix (64.30s)
    === CONT  TestAccAWSBatchComputeEnvironment_disappears
    --- PASS: TestAccAWSBatchComputeEnvironment_NameGenerated (45.19s)
    === CONT  TestAccAWSBatchComputeEnvironment_ComputeResources_MaxVcpus
    --- PASS: TestAccAWSBatchComputeEnvironment_disappears (35.02s)
    === CONT  TestAccAWSBatchComputeEnvironment_UpdateSecurityGroupsAndSubnets_Fargate
    --- PASS: TestAccAWSBatchComputeEnvironment_createEc2_DesiredVcpus_Ec2KeyPair_ImageId_ComputeResourcesTags (149.31s)
    === CONT  TestAccAWSBatchComputeEnvironment_UpdateLaunchTemplate
    --- PASS: TestAccAWSBatchComputeEnvironment_UpdateSecurityGroupsAndSubnets_Fargate (55.25s)
    === CONT  TestAccAWSBatchComputeEnvironment_launchTemplate
    --- PASS: TestAccAWSBatchComputeEnvironment_UpdateLaunchTemplate (60.60s)
    === CONT  TestAccAWSBatchComputeEnvironment_updateServiceRole
    --- PASS: TestAccAWSBatchComputeEnvironment_ComputeResources_MaxVcpus (71.12s)
    === CONT  TestAccAWSBatchComputeEnvironment_ComputeResources_MinVcpus
    --- PASS: TestAccAWSBatchComputeEnvironment_launchTemplate (36.67s)
    === CONT  TestAccAWSBatchComputeEnvironment_updateState
    --- PASS: TestAccAWSBatchComputeEnvironment_updateServiceRole (63.10s)
    --- PASS: TestAccAWSBatchComputeEnvironment_updateState (51.28s)
    --- PASS: TestAccAWSBatchComputeEnvironment_ComputeResources_MinVcpus (194.12s)
    --- PASS: TestAccAWSBatchComputeEnvironment_createSpot (459.77s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	544.574s
    ewbankkit committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    2e66c98 View commit details
    Browse the repository at this point in the history
  5. Fix terrafmt errors.

    ewbankkit committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    88bfc1a View commit details
    Browse the repository at this point in the history
  6. CHANGELOG additions.

    ewbankkit committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    f91de7c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    bd79808 View commit details
    Browse the repository at this point in the history