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

ecs: ISO-friendly tagging #22529

Merged
merged 14 commits into from Jan 12, 2022
Merged

ecs: ISO-friendly tagging #22529

merged 14 commits into from Jan 12, 2022

Conversation

YakDriver
Copy link
Member

@YakDriver YakDriver commented Jan 11, 2022

Community Note

  • Please vote on this pull request by adding a 👍 reaction to the original pull request comment to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for pull request followers and do not help prioritize the request

Closes #18134
Relates #18593
Relates #22532

Output from acceptance testing (us-west-2):

% make testacc TESTS=TestAccECSCapacityProvider_ PKG=ecs
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ecs/... -v -count 1 -parallel 20 -run='TestAccECSCapacityProvider_'  -timeout 180m
--- PASS: TestAccECSCapacityProvider_managedScalingPartial (60.22s)
--- PASS: TestAccECSCapacityProvider_basic (62.32s)
--- PASS: TestAccECSCapacityProvider_disappears (70.58s)
--- PASS: TestAccECSCapacityProvider_managedScaling (84.65s)
--- PASS: TestAccECSCapacityProvider_tags (105.94s)
PASS
ok  	github.com/hashicorp/terraform-provider-aws/internal/service/ecs	107.208s
% make testacc TESTS='TestAccECSCluster_|TestAccECSClusterDataSource_' PKG=ecs
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ecs/... -v -count 1 -parallel 20 -run='TestAccECSCluster_|TestAccECSClusterDataSource_'  -timeout 180m
--- PASS: TestAccECSCluster_disappears (24.22s)
--- PASS: TestAccECSClusterDataSource_ecsCluster (26.66s)
--- PASS: TestAccECSClusterDataSource_ecsClusterContainerInsights (26.67s)
--- PASS: TestAccECSCluster_basic (28.62s)
--- PASS: TestAccECSCluster_tags (45.77s)
--- PASS: TestAccECSCluster_capacityProviders (49.19s)
--- PASS: TestAccECSCluster_configuration (53.38s)
--- PASS: TestAccECSCluster_capacityProvidersNoStrategy (56.16s)
--- PASS: TestAccECSCluster_containerInsights (64.45s)
--- PASS: TestAccECSCluster_capacityProvidersUpdate (82.06s)
--- PASS: TestAccECSCluster_singleCapacityProvider (91.91s)
PASS
ok  	github.com/hashicorp/terraform-provider-aws/internal/service/ecs	93.274s
% make testacc TESTS=TestAccECSService_ PKG=ecs
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ecs/... -v -count 1 -parallel 20 -run='TestAccECSService_'  -timeout 180m
--- PASS: TestAccECSService_DaemonSchedulingStrategy_basic (39.38s)
--- PASS: TestAccECSService_DeploymentControllerType_external (72.17s)
--- PASS: TestAccECSService_iamRole (83.27s)
--- PASS: TestAccECSService_deploymentCircuitBreaker (85.96s)
--- PASS: TestAccECSService_Tags_managed (85.98s)
--- PASS: TestAccECSService_DeploymentValues_basic (85.98s)
--- PASS: TestAccECSService_basic (97.08s)
--- PASS: TestAccECSService_executeCommand (99.57s)
--- PASS: TestAccECSService_DeploymentValues_minZeroMaxOneHundred (101.12s)
--- PASS: TestAccECSService_clusterName (101.42s)
--- PASS: TestAccECSService_Tags_basic (124.13s)
--- PASS: TestAccECSService_loadBalancerChanges (125.69s)
--- PASS: TestAccECSService_DaemonSchedulingStrategy_setDeploymentMinimum (26.35s)
--- PASS: TestAccECSService_PlacementStrategy_missing (0.76s)
--- PASS: TestAccECSService_renamedCluster (96.48s)
--- PASS: TestAccECSService_familyAndRevision (98.09s)
--- PASS: TestAccECSService_PlacementStrategy_unnormalized (57.22s)
--- PASS: TestAccECSService_replicaSchedulingStrategy (87.65s)
--- PASS: TestAccECSService_Tags_propagate (204.03s)
--- PASS: TestAccECSService_CapacityProviderStrategy_multiple (122.63s)
--- PASS: TestAccECSService_LaunchTypeEC2_network (115.68s)
--- PASS: TestAccECSService_PlacementConstraints_emptyExpression (87.73s)
--- PASS: TestAccECSService_multipleTargetGroups (237.27s)
--- PASS: TestAccECSService_LaunchTypeFargate_basic (152.36s)
--- PASS: TestAccECSService_LaunchTypeFargate_platformVersion (150.99s)
--- PASS: TestAccECSService_ServiceRegistries_container (168.87s)
--- PASS: TestAccECSService_ServiceRegistries_basic (169.31s)
--- PASS: TestAccECSService_alb (255.31s)
--- PASS: TestAccECSService_DeploymentControllerType_codeDeploy (256.95s)
--- PASS: TestAccECSService_PlacementConstraints_basic (83.23s)
--- PASS: TestAccECSService_basicImport (74.96s)
--- PASS: TestAccECSService_forceNewDeployment (82.01s)
--- PASS: TestAccECSService_PlacementStrategy_basic (71.56s)
--- PASS: TestAccECSService_CapacityProviderStrategy_update (292.41s)
--- PASS: TestAccECSService_disappears (70.90s)
--- PASS: TestAccECSService_LaunchTypeFargate_waitForSteadyState (173.24s)
--- PASS: TestAccECSService_CapacityProviderStrategy_basic (183.78s)
--- PASS: TestAccECSService_CapacityProviderStrategy_forceNewDeployment (154.16s)
--- PASS: TestAccECSService_ServiceRegistries_changes (358.48s)
--- PASS: TestAccECSService_LaunchTypeFargate_updateWaitForSteadyState (195.90s)
--- PASS: TestAccECSService_healthCheckGracePeriodSeconds (366.25s)
--- PASS: TestAccECSService_DeploymentControllerType_codeDeployUpdateDesiredCountAndHealthCheckGracePeriod (406.62s)
PASS
ok  	github.com/hashicorp/terraform-provider-aws/internal/service/ecs	407.952s
% make testacc TESTS=TestAccECSTaskDefinition_ PKG=ecs
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ecs/... -v -count 1 -parallel 20 -run='TestAccECSTaskDefinition_'  -timeout 180m
=== CONT  TestAccECSTaskDefinition_fsxWinFileSystem
--- PASS: TestAccECSTaskDefinition_inferenceAccelerator (37.18s)
--- PASS: TestAccECSTaskDefinition_DockerVolume_taskScoped (37.18s)
--- PASS: TestAccECSTaskDefinition_arrays (37.25s)
--- PASS: TestAccECSTaskDefinition_constraint (38.17s)
--- PASS: TestAccECSTaskDefinition_ipcMode (40.44s)
--- PASS: TestAccECSTaskDefinition_networkMode (40.98s)
--- PASS: TestAccECSTaskDefinition_executionRole (41.14s)
--- PASS: TestAccECSTaskDefinition_taskRoleARN (41.15s)
--- PASS: TestAccECSTaskDefinition_pidMode (41.57s)
--- PASS: TestAccECSTaskDefinition_proxy (50.32s)
--- PASS: TestAccECSTaskDefinition_EFSVolume_minimal (51.29s)
--- PASS: TestAccECSTaskDefinition_EFSVolume_transitEncryption (51.50s)
--- PASS: TestAccECSTaskDefinition_EFSVolume_basic (51.67s)
--- PASS: TestAccECSTaskDefinition_Fargate_basic (52.62s)
--- PASS: TestAccECSTaskDefinition_EFSVolume_accessPoint (56.34s)
--- PASS: TestAccECSTaskDefinition_changeVolumesForcesNewResource (59.41s)
--- PASS: TestAccECSTaskDefinition_basic (59.52s)
--- PASS: TestAccECSTaskDefinition_runtimePlatform (28.67s)
--- PASS: TestAccECSTaskDefinition_Fargate_runtimePlatformWithoutArch (28.67s)
--- PASS: TestAccECSTaskDefinition_Fargate_runtimePlatform (27.79s)
--- PASS: TestAccECSTaskDefinition_DockerVolume_minimal (26.35s)
--- PASS: TestAccECSTaskDefinition_Fargate_ephemeralStorage (27.13s)
--- PASS: TestAccECSTaskDefinition_DockerVolume_basic (27.14s)
--- PASS: TestAccECSTaskDefinition_scratchVolume (27.38s)
--- PASS: TestAccECSTaskDefinition_disappears (38.34s)
--- PASS: TestAccECSTaskDefinition_tags (77.43s)
--- PASS: TestAccECSTaskDefinition_service (134.49s)
% make testacc TESTS=TestAccECSTaskSet_ PKG=ecs
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ecs/... -v -count 1 -parallel 20 -run='TestAccECSTaskSet_'  -timeout 180m
--- PASS: TestAccECSTaskSet_basic (67.75s)
--- PASS: TestAccECSTaskSet_withExternalId (67.88s)
--- PASS: TestAccECSTaskSet_withLaunchTypeFargate (72.10s)
--- PASS: TestAccECSTaskSet_disappears (72.32s)
--- PASS: TestAccECSTaskSet_withMultipleCapacityProviderStrategies (78.61s)
--- PASS: TestAccECSTaskSet_withLaunchTypeFargateAndPlatformVersion (98.70s)
--- PASS: TestAccECSTaskSet_withScale (109.89s)
--- PASS: TestAccECSTaskSet_Tags (119.91s)
--- PASS: TestAccECSTaskSet_withServiceRegistries (142.46s)
--- PASS: TestAccECSTaskSet_withCapacityProviderStrategy (143.92s)
--- PASS: TestAccECSTaskSet_withAlb (226.41s)
PASS
ok  	github.com/hashicorp/terraform-provider-aws/internal/service/ecs	227.898s

Output from acceptance testing (GovCloud):

% make testacc TESTS='TestAccECSCluster_|TestAccECSClusterDataSource_' PKG=ecs
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ecs/... -v -count 1 -parallel 20 -run='TestAccECSCluster_|TestAccECSClusterDataSource_'  -timeout 180m
--- PASS: TestAccECSCluster_disappears (28.35s)
--- PASS: TestAccECSClusterDataSource_ecsCluster (31.05s)
--- PASS: TestAccECSClusterDataSource_ecsClusterContainerInsights (31.06s)
--- PASS: TestAccECSCluster_basic (33.04s)
--- PASS: TestAccECSCluster_capacityProviders (56.13s)
--- PASS: TestAccECSCluster_tags (56.86s)
--- PASS: TestAccECSCluster_capacityProvidersNoStrategy (60.39s)
--- PASS: TestAccECSCluster_configuration (61.18s)
--- PASS: TestAccECSCluster_containerInsights (74.93s)
--- PASS: TestAccECSCluster_capacityProvidersUpdate (82.22s)
--- PASS: TestAccECSCluster_singleCapacityProvider (83.68s)
PASS
ok  	github.com/hashicorp/terraform-provider-aws/internal/service/ecs	84.985s
% make testacc TESTS=TestAccECSCapacityProvider_ PKG=ecs      
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ecs/... -v -count 1 -parallel 20 -run='TestAccECSCapacityProvider_'  -timeout 180m
--- PASS: TestAccECSCapacityProvider_basic (64.15s)
--- PASS: TestAccECSCapacityProvider_managedScalingPartial (77.52s)
--- PASS: TestAccECSCapacityProvider_disappears (77.98s)
--- PASS: TestAccECSCapacityProvider_tags (109.95s)
--- PASS: TestAccECSCapacityProvider_managedScaling (130.62s)
PASS
ok  	github.com/hashicorp/terraform-provider-aws/internal/service/ecs	132.035s
% make testacc TESTS=TestAccECSService_ PKG=ecs
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ecs/... -v -count 1 -parallel 20 -run='TestAccECSService_'  -timeout 180m
--- PASS: TestAccECSService_PlacementStrategy_missing (3.93s)
--- PASS: TestAccECSService_DaemonSchedulingStrategy_basic (52.38s)
--- PASS: TestAccECSService_iamRole (60.28s)
--- PASS: TestAccECSService_basic (83.24s)
--- PASS: TestAccECSService_PlacementConstraints_emptyExpression (83.52s)
--- PASS: TestAccECSService_replicaSchedulingStrategy (83.53s)
--- PASS: TestAccECSService_ServiceRegistries_basic (94.49s)
--- PASS: TestAccECSService_ServiceRegistries_container (94.70s)
--- PASS: TestAccECSService_renamedCluster (95.62s)
--- PASS: TestAccECSService_forceNewDeployment (98.85s)
--- PASS: TestAccECSService_executeCommand (104.07s)
--- PASS: TestAccECSService_LaunchTypeEC2_network (122.97s)
--- PASS: TestAccECSService_Tags_managed (74.97s)
--- PASS: TestAccECSService_PlacementStrategy_basic (139.89s)
--- PASS: TestAccECSService_PlacementConstraints_basic (60.31s)
--- PASS: TestAccECSService_LaunchTypeFargate_basic (149.25s)
--- PASS: TestAccECSService_PlacementStrategy_unnormalized (74.79s)
--- PASS: TestAccECSService_LaunchTypeFargate_platformVersion (164.54s)
--- PASS: TestAccECSService_DeploymentValues_basic (75.22s)
--- PASS: TestAccECSService_clusterName (74.88s)
--- PASS: TestAccECSService_LaunchTypeFargate_updateWaitForSteadyState (181.34s)
--- PASS: TestAccECSService_LaunchTypeFargate_waitForSteadyState (182.28s)
--- PASS: TestAccECSService_ServiceRegistries_changes (186.19s)
--- PASS: TestAccECSService_Tags_basic (121.25s)
--- PASS: TestAccECSService_DeploymentValues_minZeroMaxOneHundred (74.91s)
--- PASS: TestAccECSService_deploymentCircuitBreaker (95.58s)
--- PASS: TestAccECSService_DaemonSchedulingStrategy_setDeploymentMinimum (44.54s)
--- PASS: TestAccECSService_DeploymentControllerType_external (62.59s)
--- PASS: TestAccECSService_disappears (78.03s)
--- PASS: TestAccECSService_CapacityProviderStrategy_forceNewDeployment (134.02s)
--- PASS: TestAccECSService_familyAndRevision (93.59s)
--- PASS: TestAccECSService_multipleTargetGroups (245.15s)
--- PASS: TestAccECSService_basicImport (65.17s)
--- PASS: TestAccECSService_Tags_propagate (219.97s)
--- PASS: TestAccECSService_CapacityProviderStrategy_basic (187.25s)
--- PASS: TestAccECSService_CapacityProviderStrategy_multiple (110.20s)
--- PASS: TestAccECSService_CapacityProviderStrategy_update (309.64s)
--- PASS: TestAccECSService_loadBalancerChanges (214.15s)
--- PASS: TestAccECSService_healthCheckGracePeriodSeconds (356.37s)
--- PASS: TestAccECSService_alb (273.01s)
--- PASS: TestAccECSService_DeploymentControllerType_codeDeploy (235.58s)
--- PASS: TestAccECSService_DeploymentControllerType_codeDeployUpdateDesiredCountAndHealthCheckGracePeriod (342.68s)
PASS
ok  	github.com/hashicorp/terraform-provider-aws/internal/service/ecs	514.930s
% make testacc TESTS=TestAccECSTaskDefinition_ PKG=ecs
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ecs/... -v -count 1 -parallel 20 -run='TestAccECSTaskDefinition_'  -timeout 180m
--- SKIP: TestAccECSTaskDefinition_fsxWinFileSystem (0.00s)
--- SKIP: TestAccECSTaskDefinition_runtimePlatform (1.42s)
--- SKIP: TestAccECSTaskDefinition_Fargate_runtimePlatformWithoutArch (1.42s)
--- SKIP: TestAccECSTaskDefinition_Fargate_runtimePlatform (0.00s)
--- SKIP: TestAccECSTaskDefinition_inferenceAccelerator (15.21s)
--- PASS: TestAccECSTaskDefinition_DockerVolume_taskScoped (36.91s)
--- PASS: TestAccECSTaskDefinition_arrays (36.95s)
--- PASS: TestAccECSTaskDefinition_Fargate_ephemeralStorage (36.98s)
--- PASS: TestAccECSTaskDefinition_constraint (37.07s)
--- PASS: TestAccECSTaskDefinition_networkMode (43.17s)
--- PASS: TestAccECSTaskDefinition_ipcMode (43.69s)
--- PASS: TestAccECSTaskDefinition_taskRoleARN (43.70s)
--- PASS: TestAccECSTaskDefinition_pidMode (43.75s)
--- PASS: TestAccECSTaskDefinition_executionRole (43.80s)
--- PASS: TestAccECSTaskDefinition_EFSVolume_transitEncryption (47.69s)
--- PASS: TestAccECSTaskDefinition_proxy (49.57s)
--- PASS: TestAccECSTaskDefinition_EFSVolume_accessPoint (50.66s)
--- PASS: TestAccECSTaskDefinition_Fargate_basic (52.44s)
--- PASS: TestAccECSTaskDefinition_disappears (55.07s)
--- PASS: TestAccECSTaskDefinition_EFSVolume_basic (40.73s)
--- PASS: TestAccECSTaskDefinition_basic (58.75s)
--- PASS: TestAccECSTaskDefinition_changeVolumesForcesNewResource (58.87s)
--- PASS: TestAccECSTaskDefinition_scratchVolume (28.32s)
--- PASS: TestAccECSTaskDefinition_DockerVolume_minimal (28.39s)
--- PASS: TestAccECSTaskDefinition_DockerVolume_basic (28.45s)
--- PASS: TestAccECSTaskDefinition_EFSVolume_minimal (68.33s)
--- PASS: TestAccECSTaskDefinition_tags (83.55s)
--- PASS: TestAccECSTaskDefinition_service (132.37s)
PASS
ok  	github.com/hashicorp/terraform-provider-aws/internal/service/ecs	134.283s
% make testacc TESTS=TestAccECSTaskSet_ PKG=ecs
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ecs/... -v -count 1 -parallel 20 -run='TestAccECSTaskSet_'  -timeout 180m
--- PASS: TestAccECSTaskSet_withExternalId (72.01s)
--- PASS: TestAccECSTaskSet_basic (72.07s)
--- PASS: TestAccECSTaskSet_withLaunchTypeFargate (75.85s)
--- PASS: TestAccECSTaskSet_withServiceRegistries (76.37s)
--- PASS: TestAccECSTaskSet_disappears (76.47s)
--- PASS: TestAccECSTaskSet_withScale (101.01s)
--- PASS: TestAccECSTaskSet_Tags (103.49s)
--- PASS: TestAccECSTaskSet_withMultipleCapacityProviderStrategies (105.68s)
--- PASS: TestAccECSTaskSet_withLaunchTypeFargateAndPlatformVersion (120.39s)
--- PASS: TestAccECSTaskSet_withCapacityProviderStrategy (135.02s)
--- PASS: TestAccECSTaskSet_withAlb (263.65s)
PASS
ok  	github.com/hashicorp/terraform-provider-aws/internal/service/ecs	265.305s

@github-actions github-actions bot added service/ecs Issues and PRs that pertain to the ecs service. size/S Managed by automation to categorize the size of a PR. labels Jan 11, 2022
@github-actions github-actions bot added tags Pertains to resource tagging. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure. size/XL Managed by automation to categorize the size of a PR. and removed size/S Managed by automation to categorize the size of a PR. labels Jan 11, 2022
@YakDriver YakDriver mentioned this pull request Jan 11, 2022
27 tasks
Copy link
Contributor

@ewbankkit ewbankkit left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 🚀.

% make testacc TESTARGS='-run=TestAccECSTaskSet_\|TestAccECSTaskDefinition_\|TestAccECSService_\|TestAccECSCapacityProvider_\|TestAccECSCluster_\|TestAccECSClusterDataSource_' PKG=ecs ACCTEST_PARALLELISM=5
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ecs/... -v -count 1 -parallel 5  -run=TestAccECSTaskSet_\|TestAccECSTaskDefinition_\|TestAccECSService_\|TestAccECSCapacityProvider_\|TestAccECSCluster_\|TestAccECSClusterDataSource_ -timeout 180m
=== RUN   TestAccECSCapacityProvider_basic
=== PAUSE TestAccECSCapacityProvider_basic
=== RUN   TestAccECSCapacityProvider_disappears
=== PAUSE TestAccECSCapacityProvider_disappears
=== RUN   TestAccECSCapacityProvider_managedScaling
=== PAUSE TestAccECSCapacityProvider_managedScaling
=== RUN   TestAccECSCapacityProvider_managedScalingPartial
=== PAUSE TestAccECSCapacityProvider_managedScalingPartial
=== RUN   TestAccECSCapacityProvider_tags
=== PAUSE TestAccECSCapacityProvider_tags
=== RUN   TestAccECSClusterDataSource_ecsCluster
=== PAUSE TestAccECSClusterDataSource_ecsCluster
=== RUN   TestAccECSClusterDataSource_ecsClusterContainerInsights
=== PAUSE TestAccECSClusterDataSource_ecsClusterContainerInsights
=== RUN   TestAccECSCluster_basic
=== PAUSE TestAccECSCluster_basic
=== RUN   TestAccECSCluster_disappears
=== PAUSE TestAccECSCluster_disappears
=== RUN   TestAccECSCluster_tags
=== PAUSE TestAccECSCluster_tags
=== RUN   TestAccECSCluster_singleCapacityProvider
=== PAUSE TestAccECSCluster_singleCapacityProvider
=== RUN   TestAccECSCluster_capacityProviders
=== PAUSE TestAccECSCluster_capacityProviders
=== RUN   TestAccECSCluster_capacityProvidersUpdate
=== PAUSE TestAccECSCluster_capacityProvidersUpdate
=== RUN   TestAccECSCluster_capacityProvidersNoStrategy
=== PAUSE TestAccECSCluster_capacityProvidersNoStrategy
=== RUN   TestAccECSCluster_containerInsights
=== PAUSE TestAccECSCluster_containerInsights
=== RUN   TestAccECSCluster_configuration
=== PAUSE TestAccECSCluster_configuration
=== RUN   TestAccECSService_basic
=== PAUSE TestAccECSService_basic
=== RUN   TestAccECSService_basicImport
=== PAUSE TestAccECSService_basicImport
=== RUN   TestAccECSService_disappears
=== PAUSE TestAccECSService_disappears
=== RUN   TestAccECSService_PlacementStrategy_unnormalized
=== PAUSE TestAccECSService_PlacementStrategy_unnormalized
=== RUN   TestAccECSService_CapacityProviderStrategy_basic
=== PAUSE TestAccECSService_CapacityProviderStrategy_basic
=== RUN   TestAccECSService_CapacityProviderStrategy_forceNewDeployment
=== PAUSE TestAccECSService_CapacityProviderStrategy_forceNewDeployment
=== RUN   TestAccECSService_CapacityProviderStrategy_update
=== PAUSE TestAccECSService_CapacityProviderStrategy_update
=== RUN   TestAccECSService_CapacityProviderStrategy_multiple
=== PAUSE TestAccECSService_CapacityProviderStrategy_multiple
=== RUN   TestAccECSService_familyAndRevision
=== PAUSE TestAccECSService_familyAndRevision
=== RUN   TestAccECSService_renamedCluster
=== PAUSE TestAccECSService_renamedCluster
=== RUN   TestAccECSService_healthCheckGracePeriodSeconds
=== PAUSE TestAccECSService_healthCheckGracePeriodSeconds
=== RUN   TestAccECSService_iamRole
=== PAUSE TestAccECSService_iamRole
=== RUN   TestAccECSService_DeploymentControllerType_codeDeploy
=== PAUSE TestAccECSService_DeploymentControllerType_codeDeploy
=== RUN   TestAccECSService_DeploymentControllerType_codeDeployUpdateDesiredCountAndHealthCheckGracePeriod
=== PAUSE TestAccECSService_DeploymentControllerType_codeDeployUpdateDesiredCountAndHealthCheckGracePeriod
=== RUN   TestAccECSService_DeploymentControllerType_external
=== PAUSE TestAccECSService_DeploymentControllerType_external
=== RUN   TestAccECSService_DeploymentValues_basic
=== PAUSE TestAccECSService_DeploymentValues_basic
=== RUN   TestAccECSService_DeploymentValues_minZeroMaxOneHundred
=== PAUSE TestAccECSService_DeploymentValues_minZeroMaxOneHundred
=== RUN   TestAccECSService_deploymentCircuitBreaker
=== PAUSE TestAccECSService_deploymentCircuitBreaker
=== RUN   TestAccECSService_loadBalancerChanges
=== PAUSE TestAccECSService_loadBalancerChanges
=== RUN   TestAccECSService_clusterName
=== PAUSE TestAccECSService_clusterName
=== RUN   TestAccECSService_alb
=== PAUSE TestAccECSService_alb
=== RUN   TestAccECSService_multipleTargetGroups
=== PAUSE TestAccECSService_multipleTargetGroups
=== RUN   TestAccECSService_forceNewDeployment
=== PAUSE TestAccECSService_forceNewDeployment
=== RUN   TestAccECSService_PlacementStrategy_basic
=== PAUSE TestAccECSService_PlacementStrategy_basic
=== RUN   TestAccECSService_PlacementStrategy_missing
=== PAUSE TestAccECSService_PlacementStrategy_missing
=== RUN   TestAccECSService_PlacementConstraints_basic
=== PAUSE TestAccECSService_PlacementConstraints_basic
=== RUN   TestAccECSService_PlacementConstraints_emptyExpression
=== PAUSE TestAccECSService_PlacementConstraints_emptyExpression
=== RUN   TestAccECSService_LaunchTypeFargate_basic
=== PAUSE TestAccECSService_LaunchTypeFargate_basic
=== RUN   TestAccECSService_LaunchTypeFargate_platformVersion
=== PAUSE TestAccECSService_LaunchTypeFargate_platformVersion
=== RUN   TestAccECSService_LaunchTypeFargate_waitForSteadyState
=== PAUSE TestAccECSService_LaunchTypeFargate_waitForSteadyState
=== RUN   TestAccECSService_LaunchTypeFargate_updateWaitForSteadyState
=== PAUSE TestAccECSService_LaunchTypeFargate_updateWaitForSteadyState
=== RUN   TestAccECSService_LaunchTypeEC2_network
=== PAUSE TestAccECSService_LaunchTypeEC2_network
=== RUN   TestAccECSService_DaemonSchedulingStrategy_basic
=== PAUSE TestAccECSService_DaemonSchedulingStrategy_basic
=== RUN   TestAccECSService_DaemonSchedulingStrategy_setDeploymentMinimum
=== PAUSE TestAccECSService_DaemonSchedulingStrategy_setDeploymentMinimum
=== RUN   TestAccECSService_replicaSchedulingStrategy
=== PAUSE TestAccECSService_replicaSchedulingStrategy
=== RUN   TestAccECSService_ServiceRegistries_basic
=== PAUSE TestAccECSService_ServiceRegistries_basic
=== RUN   TestAccECSService_ServiceRegistries_container
=== PAUSE TestAccECSService_ServiceRegistries_container
=== RUN   TestAccECSService_ServiceRegistries_changes
=== PAUSE TestAccECSService_ServiceRegistries_changes
=== RUN   TestAccECSService_Tags_basic
=== PAUSE TestAccECSService_Tags_basic
=== RUN   TestAccECSService_Tags_managed
=== PAUSE TestAccECSService_Tags_managed
=== RUN   TestAccECSService_Tags_propagate
=== PAUSE TestAccECSService_Tags_propagate
=== RUN   TestAccECSService_executeCommand
=== PAUSE TestAccECSService_executeCommand
=== RUN   TestAccECSTaskDefinition_basic
=== PAUSE TestAccECSTaskDefinition_basic
=== RUN   TestAccECSTaskDefinition_scratchVolume
=== PAUSE TestAccECSTaskDefinition_scratchVolume
=== RUN   TestAccECSTaskDefinition_DockerVolume_basic
=== PAUSE TestAccECSTaskDefinition_DockerVolume_basic
=== RUN   TestAccECSTaskDefinition_DockerVolume_minimal
=== PAUSE TestAccECSTaskDefinition_DockerVolume_minimal
=== RUN   TestAccECSTaskDefinition_runtimePlatform
=== PAUSE TestAccECSTaskDefinition_runtimePlatform
=== RUN   TestAccECSTaskDefinition_Fargate_runtimePlatform
=== PAUSE TestAccECSTaskDefinition_Fargate_runtimePlatform
=== RUN   TestAccECSTaskDefinition_Fargate_runtimePlatformWithoutArch
=== PAUSE TestAccECSTaskDefinition_Fargate_runtimePlatformWithoutArch
=== RUN   TestAccECSTaskDefinition_EFSVolume_minimal
=== PAUSE TestAccECSTaskDefinition_EFSVolume_minimal
=== RUN   TestAccECSTaskDefinition_EFSVolume_basic
=== PAUSE TestAccECSTaskDefinition_EFSVolume_basic
=== RUN   TestAccECSTaskDefinition_EFSVolume_transitEncryption
=== PAUSE TestAccECSTaskDefinition_EFSVolume_transitEncryption
=== RUN   TestAccECSTaskDefinition_EFSVolume_accessPoint
=== PAUSE TestAccECSTaskDefinition_EFSVolume_accessPoint
=== RUN   TestAccECSTaskDefinition_fsxWinFileSystem
=== PAUSE TestAccECSTaskDefinition_fsxWinFileSystem
=== RUN   TestAccECSTaskDefinition_DockerVolume_taskScoped
=== PAUSE TestAccECSTaskDefinition_DockerVolume_taskScoped
=== RUN   TestAccECSTaskDefinition_service
=== PAUSE TestAccECSTaskDefinition_service
=== RUN   TestAccECSTaskDefinition_taskRoleARN
=== PAUSE TestAccECSTaskDefinition_taskRoleARN
=== RUN   TestAccECSTaskDefinition_networkMode
=== PAUSE TestAccECSTaskDefinition_networkMode
=== RUN   TestAccECSTaskDefinition_ipcMode
=== PAUSE TestAccECSTaskDefinition_ipcMode
=== RUN   TestAccECSTaskDefinition_pidMode
=== PAUSE TestAccECSTaskDefinition_pidMode
=== RUN   TestAccECSTaskDefinition_constraint
=== PAUSE TestAccECSTaskDefinition_constraint
=== RUN   TestAccECSTaskDefinition_changeVolumesForcesNewResource
=== PAUSE TestAccECSTaskDefinition_changeVolumesForcesNewResource
=== RUN   TestAccECSTaskDefinition_arrays
=== PAUSE TestAccECSTaskDefinition_arrays
=== RUN   TestAccECSTaskDefinition_Fargate_basic
=== PAUSE TestAccECSTaskDefinition_Fargate_basic
=== RUN   TestAccECSTaskDefinition_Fargate_ephemeralStorage
=== PAUSE TestAccECSTaskDefinition_Fargate_ephemeralStorage
=== RUN   TestAccECSTaskDefinition_executionRole
=== PAUSE TestAccECSTaskDefinition_executionRole
=== RUN   TestAccECSTaskDefinition_disappears
=== PAUSE TestAccECSTaskDefinition_disappears
=== RUN   TestAccECSTaskDefinition_tags
=== PAUSE TestAccECSTaskDefinition_tags
=== RUN   TestAccECSTaskDefinition_proxy
=== PAUSE TestAccECSTaskDefinition_proxy
=== RUN   TestAccECSTaskDefinition_inferenceAccelerator
=== PAUSE TestAccECSTaskDefinition_inferenceAccelerator
=== RUN   TestAccECSTaskSet_basic
=== PAUSE TestAccECSTaskSet_basic
=== RUN   TestAccECSTaskSet_withExternalId
=== PAUSE TestAccECSTaskSet_withExternalId
=== RUN   TestAccECSTaskSet_withScale
=== PAUSE TestAccECSTaskSet_withScale
=== RUN   TestAccECSTaskSet_disappears
=== PAUSE TestAccECSTaskSet_disappears
=== RUN   TestAccECSTaskSet_withCapacityProviderStrategy
=== PAUSE TestAccECSTaskSet_withCapacityProviderStrategy
=== RUN   TestAccECSTaskSet_withMultipleCapacityProviderStrategies
=== PAUSE TestAccECSTaskSet_withMultipleCapacityProviderStrategies
=== RUN   TestAccECSTaskSet_withAlb
=== PAUSE TestAccECSTaskSet_withAlb
=== RUN   TestAccECSTaskSet_withLaunchTypeFargate
=== PAUSE TestAccECSTaskSet_withLaunchTypeFargate
=== RUN   TestAccECSTaskSet_withLaunchTypeFargateAndPlatformVersion
=== PAUSE TestAccECSTaskSet_withLaunchTypeFargateAndPlatformVersion
=== RUN   TestAccECSTaskSet_withServiceRegistries
=== PAUSE TestAccECSTaskSet_withServiceRegistries
=== RUN   TestAccECSTaskSet_Tags
=== PAUSE TestAccECSTaskSet_Tags
=== CONT  TestAccECSCapacityProvider_basic
=== CONT  TestAccECSService_DaemonSchedulingStrategy_setDeploymentMinimum
=== CONT  TestAccECSTaskDefinition_ipcMode
=== CONT  TestAccECSTaskSet_Tags
=== CONT  TestAccECSTaskSet_withServiceRegistries
--- PASS: TestAccECSTaskDefinition_ipcMode (21.61s)
=== CONT  TestAccECSTaskSet_withLaunchTypeFargateAndPlatformVersion
--- PASS: TestAccECSService_DaemonSchedulingStrategy_setDeploymentMinimum (43.78s)
=== CONT  TestAccECSTaskDefinition_tags
--- PASS: TestAccECSTaskSet_Tags (71.12s)
=== CONT  TestAccECSTaskDefinition_disappears
--- PASS: TestAccECSCapacityProvider_basic (78.73s)
=== CONT  TestAccECSTaskDefinition_executionRole
--- PASS: TestAccECSTaskDefinition_tags (44.24s)
=== CONT  TestAccECSTaskDefinition_Fargate_ephemeralStorage
--- PASS: TestAccECSTaskDefinition_disappears (22.74s)
=== CONT  TestAccECSTaskDefinition_Fargate_basic
--- PASS: TestAccECSTaskDefinition_executionRole (21.08s)
=== CONT  TestAccECSTaskDefinition_arrays
--- PASS: TestAccECSTaskDefinition_Fargate_ephemeralStorage (13.25s)
=== CONT  TestAccECSTaskDefinition_changeVolumesForcesNewResource
--- PASS: TestAccECSTaskDefinition_Fargate_basic (19.14s)
=== CONT  TestAccECSTaskDefinition_constraint
--- PASS: TestAccECSTaskDefinition_arrays (13.47s)
=== CONT  TestAccECSTaskDefinition_pidMode
--- PASS: TestAccECSTaskDefinition_changeVolumesForcesNewResource (22.94s)
=== CONT  TestAccECSService_renamedCluster
--- PASS: TestAccECSTaskSet_withLaunchTypeFargateAndPlatformVersion (105.04s)
=== CONT  TestAccECSService_DaemonSchedulingStrategy_basic
--- PASS: TestAccECSTaskDefinition_constraint (15.23s)
=== CONT  TestAccECSTaskDefinition_proxy
--- PASS: TestAccECSTaskSet_withServiceRegistries (142.53s)
=== CONT  TestAccECSTaskSet_withLaunchTypeFargate
--- PASS: TestAccECSTaskDefinition_proxy (24.06s)
=== CONT  TestAccECSTaskSet_withAlb
--- PASS: TestAccECSTaskDefinition_pidMode (46.80s)
=== CONT  TestAccECSTaskSet_withMultipleCapacityProviderStrategies
--- PASS: TestAccECSService_DaemonSchedulingStrategy_basic (41.17s)
=== CONT  TestAccECSService_LaunchTypeEC2_network
--- PASS: TestAccECSTaskSet_withLaunchTypeFargate (60.70s)
=== CONT  TestAccECSTaskSet_withCapacityProviderStrategy
--- PASS: TestAccECSService_renamedCluster (81.10s)
=== CONT  TestAccECSService_LaunchTypeFargate_updateWaitForSteadyState
--- PASS: TestAccECSTaskSet_withMultipleCapacityProviderStrategies (79.31s)
=== CONT  TestAccECSTaskSet_disappears
--- PASS: TestAccECSService_LaunchTypeEC2_network (114.11s)
=== CONT  TestAccECSService_LaunchTypeFargate_waitForSteadyState
--- PASS: TestAccECSTaskSet_disappears (46.67s)
=== CONT  TestAccECSService_LaunchTypeFargate_platformVersion
--- PASS: TestAccECSTaskSet_withAlb (201.94s)
=== CONT  TestAccECSService_LaunchTypeFargate_basic
--- PASS: TestAccECSTaskSet_withCapacityProviderStrategy (156.75s)
=== CONT  TestAccECSService_PlacementConstraints_emptyExpression
--- PASS: TestAccECSService_LaunchTypeFargate_updateWaitForSteadyState (183.99s)
=== CONT  TestAccECSService_PlacementConstraints_basic
--- PASS: TestAccECSService_LaunchTypeFargate_platformVersion (150.39s)
=== CONT  TestAccECSService_DeploymentValues_minZeroMaxOneHundred
--- PASS: TestAccECSService_PlacementConstraints_emptyExpression (91.78s)
=== CONT  TestAccECSService_DeploymentValues_basic
--- PASS: TestAccECSService_LaunchTypeFargate_waitForSteadyState (176.37s)
=== CONT  TestAccECSTaskSet_withScale
--- PASS: TestAccECSService_PlacementConstraints_basic (83.95s)
=== CONT  TestAccECSService_DeploymentControllerType_external
--- PASS: TestAccECSService_DeploymentControllerType_external (44.57s)
=== CONT  TestAccECSTaskSet_withExternalId
--- PASS: TestAccECSTaskSet_withScale (60.44s)
=== CONT  TestAccECSService_DeploymentControllerType_codeDeployUpdateDesiredCountAndHealthCheckGracePeriod
--- PASS: TestAccECSService_DeploymentValues_minZeroMaxOneHundred (89.03s)
=== CONT  TestAccECSService_DeploymentControllerType_codeDeploy
--- PASS: TestAccECSService_DeploymentValues_basic (87.31s)
=== CONT  TestAccECSTaskSet_basic
--- PASS: TestAccECSTaskSet_withExternalId (71.10s)
=== CONT  TestAccECSService_iamRole
--- PASS: TestAccECSTaskSet_basic (54.80s)
=== CONT  TestAccECSService_healthCheckGracePeriodSeconds
--- PASS: TestAccECSService_iamRole (55.16s)
=== CONT  TestAccECSTaskDefinition_runtimePlatform
--- PASS: TestAccECSTaskDefinition_runtimePlatform (13.45s)
=== CONT  TestAccECSTaskDefinition_networkMode
--- PASS: TestAccECSTaskDefinition_networkMode (15.87s)
=== CONT  TestAccECSTaskDefinition_inferenceAccelerator
--- PASS: TestAccECSTaskDefinition_inferenceAccelerator (15.14s)
=== CONT  TestAccECSTaskDefinition_taskRoleARN
--- PASS: TestAccECSTaskDefinition_taskRoleARN (15.50s)
=== CONT  TestAccECSTaskDefinition_service
--- PASS: TestAccECSService_LaunchTypeFargate_basic (364.86s)
=== CONT  TestAccECSService_Tags_propagate
--- PASS: TestAccECSService_DeploymentControllerType_codeDeploy (263.33s)
=== CONT  TestAccECSTaskDefinition_DockerVolume_minimal
--- PASS: TestAccECSTaskDefinition_service (87.23s)
=== CONT  TestAccECSTaskDefinition_DockerVolume_basic
--- PASS: TestAccECSTaskDefinition_DockerVolume_minimal (15.03s)
=== CONT  TestAccECSTaskDefinition_scratchVolume
--- PASS: TestAccECSTaskDefinition_DockerVolume_basic (15.27s)
=== CONT  TestAccECSTaskDefinition_basic
--- PASS: TestAccECSTaskDefinition_scratchVolume (13.29s)
=== CONT  TestAccECSService_executeCommand
--- PASS: TestAccECSTaskDefinition_basic (23.12s)
=== CONT  TestAccECSService_multipleTargetGroups
--- PASS: TestAccECSService_executeCommand (94.65s)
=== CONT  TestAccECSTaskDefinition_DockerVolume_taskScoped
--- PASS: TestAccECSService_DeploymentControllerType_codeDeployUpdateDesiredCountAndHealthCheckGracePeriod (407.03s)
=== CONT  TestAccECSService_PlacementStrategy_missing
--- PASS: TestAccECSService_PlacementStrategy_missing (0.77s)
=== CONT  TestAccECSTaskDefinition_fsxWinFileSystem
--- PASS: TestAccECSTaskDefinition_DockerVolume_taskScoped (15.32s)
=== CONT  TestAccECSTaskDefinition_EFSVolume_accessPoint
--- PASS: TestAccECSService_healthCheckGracePeriodSeconds (356.29s)
=== CONT  TestAccECSTaskDefinition_EFSVolume_transitEncryption
--- PASS: TestAccECSTaskDefinition_EFSVolume_accessPoint (29.36s)
=== CONT  TestAccECSTaskDefinition_EFSVolume_basic
--- PASS: TestAccECSService_Tags_propagate (237.75s)
=== CONT  TestAccECSTaskDefinition_EFSVolume_minimal
--- PASS: TestAccECSTaskDefinition_EFSVolume_transitEncryption (24.23s)
=== CONT  TestAccECSTaskDefinition_Fargate_runtimePlatformWithoutArch
--- PASS: TestAccECSTaskDefinition_EFSVolume_basic (24.51s)
=== CONT  TestAccECSTaskDefinition_Fargate_runtimePlatform
--- PASS: TestAccECSTaskDefinition_EFSVolume_minimal (25.65s)
=== CONT  TestAccECSService_PlacementStrategy_basic
--- PASS: TestAccECSTaskDefinition_Fargate_runtimePlatformWithoutArch (15.38s)
=== CONT  TestAccECSService_forceNewDeployment
--- PASS: TestAccECSTaskDefinition_Fargate_runtimePlatform (14.21s)
=== CONT  TestAccECSService_clusterName
--- PASS: TestAccECSService_clusterName (56.13s)
=== CONT  TestAccECSService_alb
--- PASS: TestAccECSService_multipleTargetGroups (238.65s)
=== CONT  TestAccECSCluster_capacityProvidersNoStrategy
--- PASS: TestAccECSService_forceNewDeployment (82.22s)
=== CONT  TestAccECSService_loadBalancerChanges
--- PASS: TestAccECSService_PlacementStrategy_basic (103.83s)
=== CONT  TestAccECSCluster_basic
--- PASS: TestAccECSCluster_basic (37.19s)
=== CONT  TestAccECSCluster_capacityProvidersUpdate
--- PASS: TestAccECSCluster_capacityProvidersNoStrategy (55.24s)
=== CONT  TestAccECSService_familyAndRevision
--- PASS: TestAccECSCluster_capacityProvidersUpdate (80.87s)
=== CONT  TestAccECSService_CapacityProviderStrategy_multiple
--- PASS: TestAccECSService_familyAndRevision (81.54s)
=== CONT  TestAccECSService_CapacityProviderStrategy_update
--- PASS: TestAccECSService_loadBalancerChanges (134.35s)
=== CONT  TestAccECSService_CapacityProviderStrategy_forceNewDeployment
--- PASS: TestAccECSService_alb (254.63s)
=== CONT  TestAccECSService_CapacityProviderStrategy_basic
--- PASS: TestAccECSService_CapacityProviderStrategy_multiple (124.55s)
=== CONT  TestAccECSService_deploymentCircuitBreaker
--- PASS: TestAccECSService_CapacityProviderStrategy_forceNewDeployment (170.69s)
=== CONT  TestAccECSCluster_tags
--- PASS: TestAccECSService_deploymentCircuitBreaker (73.78s)
=== CONT  TestAccECSCluster_capacityProviders
--- PASS: TestAccECSCluster_tags (44.07s)
=== CONT  TestAccECSCapacityProvider_tags
--- PASS: TestAccECSCluster_capacityProviders (46.08s)
=== CONT  TestAccECSClusterDataSource_ecsClusterContainerInsights
--- PASS: TestAccECSClusterDataSource_ecsClusterContainerInsights (24.62s)
=== CONT  TestAccECSService_PlacementStrategy_unnormalized
--- PASS: TestAccECSService_CapacityProviderStrategy_update (320.83s)
=== CONT  TestAccECSService_disappears
--- PASS: TestAccECSService_CapacityProviderStrategy_basic (221.31s)
=== CONT  TestAccECSService_basicImport
--- PASS: TestAccECSService_PlacementStrategy_unnormalized (71.33s)
=== CONT  TestAccECSService_basic
--- PASS: TestAccECSCapacityProvider_tags (144.85s)
=== CONT  TestAccECSCluster_singleCapacityProvider
--- PASS: TestAccECSService_basic (51.50s)
=== CONT  TestAccECSCluster_containerInsights
--- PASS: TestAccECSService_disappears (71.75s)
=== CONT  TestAccECSService_ServiceRegistries_changes
--- PASS: TestAccECSService_basicImport (90.71s)
=== CONT  TestAccECSService_Tags_managed
--- PASS: TestAccECSCluster_containerInsights (61.05s)
=== CONT  TestAccECSService_Tags_basic
--- PASS: TestAccECSCluster_singleCapacityProvider (103.15s)
=== CONT  TestAccECSCapacityProvider_managedScaling
--- PASS: TestAccECSService_Tags_managed (87.84s)
=== CONT  TestAccECSCluster_configuration
--- PASS: TestAccECSService_Tags_basic (93.90s)
=== CONT  TestAccECSCapacityProvider_disappears
--- PASS: TestAccECSCluster_configuration (51.38s)
=== CONT  TestAccECSClusterDataSource_ecsCluster
--- PASS: TestAccECSClusterDataSource_ecsCluster (23.05s)
=== CONT  TestAccECSService_replicaSchedulingStrategy
--- PASS: TestAccECSCapacityProvider_managedScaling (116.40s)
=== CONT  TestAccECSService_ServiceRegistries_basic
--- PASS: TestAccECSCapacityProvider_disappears (76.23s)
=== CONT  TestAccECSCapacityProvider_managedScalingPartial
--- PASS: TestAccECSService_replicaSchedulingStrategy (72.17s)
=== CONT  TestAccECSService_ServiceRegistries_container
--- PASS: TestAccECSCapacityProvider_managedScalingPartial (75.26s)
=== CONT  TestAccECSCluster_disappears
--- PASS: TestAccECSCluster_disappears (20.69s)
--- PASS: TestAccECSService_ServiceRegistries_changes (351.16s)
--- PASS: TestAccECSService_ServiceRegistries_basic (169.23s)
--- PASS: TestAccECSService_ServiceRegistries_container (183.74s)
--- PASS: TestAccECSTaskDefinition_fsxWinFileSystem (3080.76s)
PASS
ok  	github.com/hashicorp/terraform-provider-aws/internal/service/ecs	4011.096s

@YakDriver YakDriver merged commit 203b2f8 into main Jan 12, 2022
@YakDriver YakDriver deleted the f-iso-tagging-ecs branch January 12, 2022 18:43
@github-actions github-actions bot added this to the v3.72.0 milestone Jan 12, 2022
github-actions bot pushed a commit that referenced this pull request Jan 12, 2022
@github-actions
Copy link

This functionality has been released in v3.72.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.

For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you!

@github-actions
Copy link

I'm going to lock this pull request 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 related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators May 28, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
service/ecs Issues and PRs that pertain to the ecs service. size/XL Managed by automation to categorize the size of a PR. tags Pertains to resource tagging. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Tag error for ECS in iso partitions
2 participants