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

Go 1.16 Upgrade Followup Items #17685

Closed
4 of 5 tasks
bflad opened this issue Feb 18, 2021 · 2 comments · Fixed by #17822
Closed
4 of 5 tasks

Go 1.16 Upgrade Followup Items #17685

bflad opened this issue Feb 18, 2021 · 2 comments · Fixed by #17822
Assignees
Labels
provider Pertains to the provider itself, rather than any interaction with AWS. technical-debt Addresses areas of the codebase that need refactoring or redesign. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure.
Milestone

Comments

@bflad
Copy link
Contributor

bflad commented Feb 18, 2021

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue 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 issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

Quick checklist from Go 1.16 release notes and any preferred changes in the codebase:

  • Remove manual GO111MODULE environment variable handling from .github/workflows/*.yml
  • Remove manual GO111MODULE environment variable handling from GNUmakefile
  • Remove darwin/arm64 build ignore from .goreleaser.yml
  • Enable darwin/arm64 releases in TeamCity
  • Refactor off deprecated io/ioutil package

References

@bflad bflad added tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure. technical-debt Addresses areas of the codebase that need refactoring or redesign. provider Pertains to the provider itself, rather than any interaction with AWS. labels Feb 18, 2021
@bflad bflad self-assigned this Feb 18, 2021
bflad added a commit that referenced this issue Feb 24, 2021
… impi handling in tools Go module, and update golangci-lint@v1.37.1

Reference: #17743
Reference: #17685
Reference: https://golang.org/doc/go1.16

This change request bundles a few related items around the Go 1.16 upgrade and changes to the `tools` Go module:

* Removes `GO111MODULE=on` environment variable handling in GitHub Actions and GNUmakefile as that is now the default behavior in Go 1.16
* Adds missing `impi` into `tools/main.go` so it shows as needing to be versions
* Upgrades `golangci-lint` in `tools` since dependabot has been having trouble with this change for some reason
* Runs `go mod tidy` in `tools` with Go 1.16, which is the majority of the automatic updates in `tools/go.sum`

Now with Go 1.16, we can use `go install PACKAGE@VERSION` if we no longer want to use the `tools` Go module strategy, however that will also remove dependabot pinging us on tooling updates.
bflad added a commit that referenced this issue Feb 25, 2021
… impi handling in tools Go module, and update golangci-lint@v1.37.1 (#17795)

Reference: #17743
Reference: #17685
Reference: https://golang.org/doc/go1.16

This change request bundles a few related items around the Go 1.16 upgrade and changes to the `tools` Go module:

* Removes `GO111MODULE=on` environment variable handling in GitHub Actions and GNUmakefile as that is now the default behavior in Go 1.16
* Adds missing `impi` into `tools/main.go` so it shows as needing to be versions
* Upgrades `golangci-lint` in `tools` since dependabot has been having trouble with this change for some reason
* Runs `go mod tidy` in `tools` with Go 1.16, which is the majority of the automatic updates in `tools/go.sum`

Now with Go 1.16, we can use `go install PACKAGE@VERSION` if we no longer want to use the `tools` Go module strategy, however that will also remove dependabot pinging us on tooling updates.
bflad added a commit that referenced this issue Feb 25, 2021
Reference: https://golang.org/doc/go1.16#ioutil
Reference: #17685

> The io/ioutil package has turned out to be a poorly defined and hard to understand collection of things. All functionality provided by the package has been moved to other packages. The io/ioutil package remains and will continue to work as before, but we encourage new code to use the new definitions in the io and os packages. Here is a list of the new locations of the names exported by io/ioutil:
>
> Discard => io.Discard
> NopCloser => io.NopCloser
> ReadAll => io.ReadAll
> ReadDir => os.ReadDir (note: returns a slice of os.DirEntry rather than a slice of fs.FileInfo)
> ReadFile => os.ReadFile
> TempDir => os.MkdirTemp
> TempFile => os.CreateTemp
> WriteFile => os.WriteFile

Output from acceptance testing in AWS Commercial:

```
--- PASS: TestAccAWSEksClusterAuthDataSource_basic (22.94s)
--- PASS: TestAccAWSEMRCluster_additionalInfo (397.35s)
--- PASS: TestAccAWSEMRCluster_basic (417.79s)
--- PASS: TestAccAWSEMRCluster_bootstrap_ordering (1219.90s)
--- PASS: TestAccAWSEMRCluster_configurationsJson (712.72s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_AutoscalingPolicy (554.33s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_BidPrice (1053.30s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_InstanceCount (502.10s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_InstanceType (930.50s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_Name (874.76s)
--- PASS: TestAccAWSEMRCluster_custom_ami_id (561.57s)
--- PASS: TestAccAWSEMRCluster_disappears (411.63s)
--- PASS: TestAccAWSEMRCluster_ebs_config (468.45s)
--- PASS: TestAccAWSEMRCluster_Ec2Attributes_DefaultManagedSecurityGroups (855.75s)
--- PASS: TestAccAWSEMRCluster_instance_fleet (541.93s)
--- PASS: TestAccAWSEMRCluster_instance_fleet_master_only (456.74s)
--- PASS: TestAccAWSEMRCluster_keepJob (427.24s)
--- PASS: TestAccAWSEMRCluster_Kerberos_ClusterDedicatedKdc (419.55s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_BidPrice (982.40s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_InstanceCount (1108.12s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_InstanceType (796.95s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_Name (824.90s)
--- PASS: TestAccAWSEMRCluster_root_volume_size (858.33s)
--- PASS: TestAccAWSEMRCluster_s3Logging (530.64s)
--- PASS: TestAccAWSEMRCluster_security_config (488.98s)
--- PASS: TestAccAWSEMRCluster_Step_Basic (418.55s)
--- PASS: TestAccAWSEMRCluster_step_concurrency_level (468.54s)
--- PASS: TestAccAWSEMRCluster_Step_ConfigMode (867.38s)
--- PASS: TestAccAWSEMRCluster_Step_Multiple (429.61s)
--- PASS: TestAccAWSEMRCluster_tags (778.27s)
--- PASS: TestAccAWSEMRCluster_terminationProtected (466.76s)
--- PASS: TestAccAWSEMRCluster_visibleToAllUsers (681.14s)

--- PASS: TestAccAWSIPRanges_basic (8.32s)
--- PASS: TestAccAWSIPRanges_Url (8.11s)

--- PASS: TestAccAWSLambdaFunction_basic (834.98s)
--- PASS: TestAccAWSLambdaFunction_codeSigningConfig (1041.09s)
--- PASS: TestAccAWSLambdaFunction_concurrency (61.96s)
--- PASS: TestAccAWSLambdaFunction_concurrencyCycle (833.61s)
--- PASS: TestAccAWSLambdaFunction_DeadLetterConfig (723.36s)
--- PASS: TestAccAWSLambdaFunction_DeadLetterConfigUpdated (825.62s)
--- PASS: TestAccAWSLambdaFunction_disablePublish (1030.44s)
--- PASS: TestAccAWSLambdaFunction_disappears (987.71s)
--- PASS: TestAccAWSLambdaFunction_EmptyVpcConfig (248.82s)
--- PASS: TestAccAWSLambdaFunction_enablePublish (1061.19s)
--- PASS: TestAccAWSLambdaFunction_encryptedEnvVariables (1032.39s)
--- PASS: TestAccAWSLambdaFunction_Environment_Variables_NoValue (829.61s)
--- PASS: TestAccAWSLambdaFunction_envVariables (897.91s)
--- PASS: TestAccAWSLambdaFunction_expectFilenameAndS3Attributes (15.36s)
--- PASS: TestAccAWSLambdaFunction_FileSystemConfig (2800.62s)
--- PASS: TestAccAWSLambdaFunction_KmsKeyArn_NoEnvironmentVariables (375.38s)
--- PASS: TestAccAWSLambdaFunction_Layers (382.02s)
--- PASS: TestAccAWSLambdaFunction_LayersUpdate (409.94s)
--- PASS: TestAccAWSLambdaFunction_localUpdate (1230.66s)
--- PASS: TestAccAWSLambdaFunction_localUpdate_nameOnly (273.09s)
--- PASS: TestAccAWSLambdaFunction_nilDeadLetterConfig (1054.40s)
--- PASS: TestAccAWSLambdaFunction_runtimes (488.91s)
--- PASS: TestAccAWSLambdaFunction_s3 (58.10s)
--- PASS: TestAccAWSLambdaFunction_s3Update_basic (101.92s)
--- PASS: TestAccAWSLambdaFunction_s3Update_unversioned (100.67s)
--- PASS: TestAccAWSLambdaFunction_tags (136.46s)
--- PASS: TestAccAWSLambdaFunction_tracingConfig (403.51s)
--- PASS: TestAccAWSLambdaFunction_UnpublishedCodeUpdate (865.58s)
--- PASS: TestAccAWSLambdaFunction_versioned (80.38s)
--- PASS: TestAccAWSLambdaFunction_versionedUpdate (1180.44s)
--- PASS: TestAccAWSLambdaFunction_VPC (404.37s)
--- PASS: TestAccAWSLambdaFunction_VPC_withInvocation (897.65s)
--- PASS: TestAccAWSLambdaFunction_VpcConfig_ProperIamDependencies (746.66s)
--- PASS: TestAccAWSLambdaFunction_VPCRemoval (288.91s)
--- PASS: TestAccAWSLambdaFunction_VPCUpdate (2372.42s)
--- SKIP: TestAccAWSLambdaFunction_imageConfig (0.00s)

--- PASS: TestAccAWSS3BucketObject_acl (118.19s)
--- PASS: TestAccAWSS3BucketObject_content (34.71s)
--- PASS: TestAccAWSS3BucketObject_contentBase64 (46.29s)
--- PASS: TestAccAWSS3BucketObject_defaultBucketSSE (52.28s)
--- PASS: TestAccAWSS3BucketObject_empty (46.48s)
--- PASS: TestAccAWSS3BucketObject_etagEncryption (34.17s)
--- PASS: TestAccAWSS3BucketObject_ignoreTags (86.02s)
--- PASS: TestAccAWSS3BucketObject_kms (47.67s)
--- PASS: TestAccAWSS3BucketObject_metadata (116.27s)
--- PASS: TestAccAWSS3BucketObject_noNameNoKey (8.51s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockLegalHoldStartWithNone (109.88s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockLegalHoldStartWithOn (86.04s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockRetentionStartWithNone (75.78s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockRetentionStartWithSet (133.43s)
--- PASS: TestAccAWSS3BucketObject_source (44.71s)
--- PASS: TestAccAWSS3BucketObject_sse (43.06s)
--- PASS: TestAccAWSS3BucketObject_storageClass (107.25s)
--- PASS: TestAccAWSS3BucketObject_tags (120.07s)
--- PASS: TestAccAWSS3BucketObject_tagsLeadingMultipleSlashes (147.00s)
--- PASS: TestAccAWSS3BucketObject_tagsLeadingSingleSlash (118.44s)
--- PASS: TestAccAWSS3BucketObject_tagsMultipleSlashes (129.75s)
--- PASS: TestAccAWSS3BucketObject_updates (86.05s)
--- PASS: TestAccAWSS3BucketObject_updateSameFile (56.79s)
--- PASS: TestAccAWSS3BucketObject_updatesWithVersioning (55.94s)
--- PASS: TestAccAWSS3BucketObject_updatesWithVersioningViaAccessPoint (54.03s)
--- PASS: TestAccAWSS3BucketObject_withContentCharacteristics (47.14s)
--- SKIP: TestAccAWSS3BucketObject_NonVersioned (0.70s)

--- PASS: TestAccAWSUser_basic (18.29s)
--- PASS: TestAccAWSUser_disappears (7.90s)
--- PASS: TestAccAWSUser_ForceDestroy_AccessKey (11.06s)
--- PASS: TestAccAWSUser_ForceDestroy_LoginProfile (19.05s)
--- PASS: TestAccAWSUser_ForceDestroy_MFADevice (11.01s)
--- PASS: TestAccAWSUser_ForceDestroy_SigningCertificate (11.95s)
--- PASS: TestAccAWSUser_ForceDestroy_SSHKey (10.68s)
--- PASS: TestAccAWSUser_nameChange (16.99s)
--- PASS: TestAccAWSUser_pathChange (17.62s)
--- PASS: TestAccAWSUser_permissionsBoundary (39.55s)
--- PASS: TestAccAWSUser_tags (17.68s)
```

Output from acceptance testing in AWS GovCloud (US):

```
--- PASS: TestAccAWSEksClusterAuthDataSource_basic (28.16s)

--- FAIL: TestAccAWSEMRCluster_bootstrap_ordering (264.97s) # #15608
--- FAIL: TestAccAWSEMRCluster_instance_fleet (309.15s) # #15608
--- FAIL: TestAccAWSEMRCluster_instance_fleet_master_only (291.43s) # #15608
--- PASS: TestAccAWSEMRCluster_additionalInfo (425.04s)
--- PASS: TestAccAWSEMRCluster_basic (356.09s)
--- PASS: TestAccAWSEMRCluster_configurationsJson (370.54s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_AutoscalingPolicy (563.88s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_BidPrice (867.74s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_InstanceCount (497.50s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_InstanceType (826.05s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_Name (759.99s)
--- PASS: TestAccAWSEMRCluster_custom_ami_id (434.39s)
--- PASS: TestAccAWSEMRCluster_disappears (478.53s)
--- PASS: TestAccAWSEMRCluster_ebs_config (458.88s)
--- PASS: TestAccAWSEMRCluster_Ec2Attributes_DefaultManagedSecurityGroups (759.17s)
--- PASS: TestAccAWSEMRCluster_keepJob (362.22s)
--- PASS: TestAccAWSEMRCluster_Kerberos_ClusterDedicatedKdc (387.79s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_BidPrice (715.21s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_InstanceCount (1181.25s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_InstanceType (725.58s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_Name (796.99s)
--- PASS: TestAccAWSEMRCluster_root_volume_size (729.93s)
--- PASS: TestAccAWSEMRCluster_s3Logging (518.49s)
--- PASS: TestAccAWSEMRCluster_security_config (453.30s)
--- PASS: TestAccAWSEMRCluster_Step_Basic (387.80s)
--- PASS: TestAccAWSEMRCluster_step_concurrency_level (424.42s)
--- PASS: TestAccAWSEMRCluster_Step_ConfigMode (865.86s)
--- PASS: TestAccAWSEMRCluster_Step_Multiple (395.99s)
--- PASS: TestAccAWSEMRCluster_tags (708.44s)
--- PASS: TestAccAWSEMRCluster_terminationProtected (356.26s)
--- PASS: TestAccAWSEMRCluster_visibleToAllUsers (675.16s)

--- PASS: TestAccAWSIPRanges_basic (12.75s)
--- PASS: TestAccAWSIPRanges_Url (12.92s)

--- PASS: TestAccAWSLambdaFunction_basic (68.18s)
--- PASS: TestAccAWSLambdaFunction_concurrency (107.17s)
--- PASS: TestAccAWSLambdaFunction_concurrencyCycle (156.84s)
--- PASS: TestAccAWSLambdaFunction_DeadLetterConfig (131.64s)
--- PASS: TestAccAWSLambdaFunction_DeadLetterConfigUpdated (132.90s)
--- PASS: TestAccAWSLambdaFunction_disablePublish (157.57s)
--- PASS: TestAccAWSLambdaFunction_disappears (70.26s)
--- PASS: TestAccAWSLambdaFunction_EmptyVpcConfig (143.29s)
--- PASS: TestAccAWSLambdaFunction_enablePublish (151.67s)
--- PASS: TestAccAWSLambdaFunction_encryptedEnvVariables (133.97s)
--- PASS: TestAccAWSLambdaFunction_Environment_Variables_NoValue (75.02s)
--- PASS: TestAccAWSLambdaFunction_envVariables (193.79s)
--- PASS: TestAccAWSLambdaFunction_expectFilenameAndS3Attributes (35.54s)
--- PASS: TestAccAWSLambdaFunction_FileSystemConfig (827.55s)
--- PASS: TestAccAWSLambdaFunction_KmsKeyArn_NoEnvironmentVariables (156.53s)
--- PASS: TestAccAWSLambdaFunction_Layers (155.57s)
--- PASS: TestAccAWSLambdaFunction_LayersUpdate (214.20s)
--- PASS: TestAccAWSLambdaFunction_localUpdate (523.98s)
--- PASS: TestAccAWSLambdaFunction_localUpdate_nameOnly (529.79s)
--- PASS: TestAccAWSLambdaFunction_nilDeadLetterConfig (109.03s)
--- PASS: TestAccAWSLambdaFunction_runtimes (580.88s)
--- PASS: TestAccAWSLambdaFunction_s3 (35.21s)
--- PASS: TestAccAWSLambdaFunction_s3Update_basic (60.72s)
--- PASS: TestAccAWSLambdaFunction_s3Update_unversioned (61.89s)
--- PASS: TestAccAWSLambdaFunction_tags (199.60s)
--- PASS: TestAccAWSLambdaFunction_UnpublishedCodeUpdate (97.62s)
--- PASS: TestAccAWSLambdaFunction_versioned (111.62s)
--- PASS: TestAccAWSLambdaFunction_versionedUpdate (205.20s)
--- PASS: TestAccAWSLambdaFunction_VPC (386.34s)
--- PASS: TestAccAWSLambdaFunction_VPC_withInvocation (553.55s)
--- PASS: TestAccAWSLambdaFunction_VpcConfig_ProperIamDependencies (256.43s)
--- PASS: TestAccAWSLambdaFunction_VPCRemoval (383.17s)
--- PASS: TestAccAWSLambdaFunction_VPCUpdate (1930.81s)
--- SKIP: TestAccAWSLambdaFunction_codeSigningConfig (0.75s)
--- SKIP: TestAccAWSLambdaFunction_imageConfig (0.00s)

--- PASS: TestAccAWSS3BucketObject_acl (78.44s)
--- PASS: TestAccAWSS3BucketObject_content (47.36s)
--- PASS: TestAccAWSS3BucketObject_contentBase64 (47.06s)
--- PASS: TestAccAWSS3BucketObject_defaultBucketSSE (40.35s)
--- PASS: TestAccAWSS3BucketObject_empty (47.45s)
--- PASS: TestAccAWSS3BucketObject_etagEncryption (47.13s)
--- PASS: TestAccAWSS3BucketObject_ignoreTags (69.26s)
--- PASS: TestAccAWSS3BucketObject_kms (31.34s)
--- PASS: TestAccAWSS3BucketObject_metadata (113.98s)
--- PASS: TestAccAWSS3BucketObject_noNameNoKey (2.18s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockLegalHoldStartWithNone (115.61s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockLegalHoldStartWithOn (77.40s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockRetentionStartWithNone (114.51s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockRetentionStartWithSet (139.11s)
--- PASS: TestAccAWSS3BucketObject_source (47.21s)
--- PASS: TestAccAWSS3BucketObject_sse (29.40s)
--- PASS: TestAccAWSS3BucketObject_storageClass (161.13s)
--- PASS: TestAccAWSS3BucketObject_tags (158.09s)
--- PASS: TestAccAWSS3BucketObject_tagsLeadingMultipleSlashes (162.01s)
--- PASS: TestAccAWSS3BucketObject_tagsLeadingSingleSlash (162.35s)
--- PASS: TestAccAWSS3BucketObject_tagsMultipleSlashes (161.07s)
--- PASS: TestAccAWSS3BucketObject_updates (93.23s)
--- PASS: TestAccAWSS3BucketObject_updateSameFile (52.71s)
--- PASS: TestAccAWSS3BucketObject_updatesWithVersioning (52.29s)
--- PASS: TestAccAWSS3BucketObject_updatesWithVersioningViaAccessPoint (56.95s)
--- PASS: TestAccAWSS3BucketObject_withContentCharacteristics (46.56s)
--- SKIP: TestAccAWSS3BucketObject_NonVersioned (1.58s)

--- PASS: TestAccAWSUser_basic (30.14s)
--- PASS: TestAccAWSUser_disappears (11.79s)
--- PASS: TestAccAWSUser_ForceDestroy_AccessKey (19.10s)
--- PASS: TestAccAWSUser_ForceDestroy_LoginProfile (18.86s)
--- PASS: TestAccAWSUser_ForceDestroy_MFADevice (19.94s)
--- PASS: TestAccAWSUser_ForceDestroy_SigningCertificate (20.78s)
--- PASS: TestAccAWSUser_ForceDestroy_SSHKey (19.72s)
--- PASS: TestAccAWSUser_nameChange (28.31s)
--- PASS: TestAccAWSUser_pathChange (48.94s)
--- PASS: TestAccAWSUser_permissionsBoundary (100.25s)
--- PASS: TestAccAWSUser_tags (68.49s)
```
bflad added a commit that referenced this issue Mar 8, 2021
Reference: https://golang.org/doc/go1.16#ioutil
Reference: #17685

> The io/ioutil package has turned out to be a poorly defined and hard to understand collection of things. All functionality provided by the package has been moved to other packages. The io/ioutil package remains and will continue to work as before, but we encourage new code to use the new definitions in the io and os packages. Here is a list of the new locations of the names exported by io/ioutil:
>
> Discard => io.Discard
> NopCloser => io.NopCloser
> ReadAll => io.ReadAll
> ReadDir => os.ReadDir (note: returns a slice of os.DirEntry rather than a slice of fs.FileInfo)
> ReadFile => os.ReadFile
> TempDir => os.MkdirTemp
> TempFile => os.CreateTemp
> WriteFile => os.WriteFile

Output from acceptance testing in AWS Commercial:

```
--- PASS: TestAccAWSEksClusterAuthDataSource_basic (22.94s)
--- PASS: TestAccAWSEMRCluster_additionalInfo (397.35s)
--- PASS: TestAccAWSEMRCluster_basic (417.79s)
--- PASS: TestAccAWSEMRCluster_bootstrap_ordering (1219.90s)
--- PASS: TestAccAWSEMRCluster_configurationsJson (712.72s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_AutoscalingPolicy (554.33s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_BidPrice (1053.30s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_InstanceCount (502.10s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_InstanceType (930.50s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_Name (874.76s)
--- PASS: TestAccAWSEMRCluster_custom_ami_id (561.57s)
--- PASS: TestAccAWSEMRCluster_disappears (411.63s)
--- PASS: TestAccAWSEMRCluster_ebs_config (468.45s)
--- PASS: TestAccAWSEMRCluster_Ec2Attributes_DefaultManagedSecurityGroups (855.75s)
--- PASS: TestAccAWSEMRCluster_instance_fleet (541.93s)
--- PASS: TestAccAWSEMRCluster_instance_fleet_master_only (456.74s)
--- PASS: TestAccAWSEMRCluster_keepJob (427.24s)
--- PASS: TestAccAWSEMRCluster_Kerberos_ClusterDedicatedKdc (419.55s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_BidPrice (982.40s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_InstanceCount (1108.12s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_InstanceType (796.95s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_Name (824.90s)
--- PASS: TestAccAWSEMRCluster_root_volume_size (858.33s)
--- PASS: TestAccAWSEMRCluster_s3Logging (530.64s)
--- PASS: TestAccAWSEMRCluster_security_config (488.98s)
--- PASS: TestAccAWSEMRCluster_Step_Basic (418.55s)
--- PASS: TestAccAWSEMRCluster_step_concurrency_level (468.54s)
--- PASS: TestAccAWSEMRCluster_Step_ConfigMode (867.38s)
--- PASS: TestAccAWSEMRCluster_Step_Multiple (429.61s)
--- PASS: TestAccAWSEMRCluster_tags (778.27s)
--- PASS: TestAccAWSEMRCluster_terminationProtected (466.76s)
--- PASS: TestAccAWSEMRCluster_visibleToAllUsers (681.14s)

--- PASS: TestAccAWSIPRanges_basic (8.32s)
--- PASS: TestAccAWSIPRanges_Url (8.11s)

--- PASS: TestAccAWSLambdaFunction_basic (834.98s)
--- PASS: TestAccAWSLambdaFunction_codeSigningConfig (1041.09s)
--- PASS: TestAccAWSLambdaFunction_concurrency (61.96s)
--- PASS: TestAccAWSLambdaFunction_concurrencyCycle (833.61s)
--- PASS: TestAccAWSLambdaFunction_DeadLetterConfig (723.36s)
--- PASS: TestAccAWSLambdaFunction_DeadLetterConfigUpdated (825.62s)
--- PASS: TestAccAWSLambdaFunction_disablePublish (1030.44s)
--- PASS: TestAccAWSLambdaFunction_disappears (987.71s)
--- PASS: TestAccAWSLambdaFunction_EmptyVpcConfig (248.82s)
--- PASS: TestAccAWSLambdaFunction_enablePublish (1061.19s)
--- PASS: TestAccAWSLambdaFunction_encryptedEnvVariables (1032.39s)
--- PASS: TestAccAWSLambdaFunction_Environment_Variables_NoValue (829.61s)
--- PASS: TestAccAWSLambdaFunction_envVariables (897.91s)
--- PASS: TestAccAWSLambdaFunction_expectFilenameAndS3Attributes (15.36s)
--- PASS: TestAccAWSLambdaFunction_FileSystemConfig (2800.62s)
--- PASS: TestAccAWSLambdaFunction_KmsKeyArn_NoEnvironmentVariables (375.38s)
--- PASS: TestAccAWSLambdaFunction_Layers (382.02s)
--- PASS: TestAccAWSLambdaFunction_LayersUpdate (409.94s)
--- PASS: TestAccAWSLambdaFunction_localUpdate (1230.66s)
--- PASS: TestAccAWSLambdaFunction_localUpdate_nameOnly (273.09s)
--- PASS: TestAccAWSLambdaFunction_nilDeadLetterConfig (1054.40s)
--- PASS: TestAccAWSLambdaFunction_runtimes (488.91s)
--- PASS: TestAccAWSLambdaFunction_s3 (58.10s)
--- PASS: TestAccAWSLambdaFunction_s3Update_basic (101.92s)
--- PASS: TestAccAWSLambdaFunction_s3Update_unversioned (100.67s)
--- PASS: TestAccAWSLambdaFunction_tags (136.46s)
--- PASS: TestAccAWSLambdaFunction_tracingConfig (403.51s)
--- PASS: TestAccAWSLambdaFunction_UnpublishedCodeUpdate (865.58s)
--- PASS: TestAccAWSLambdaFunction_versioned (80.38s)
--- PASS: TestAccAWSLambdaFunction_versionedUpdate (1180.44s)
--- PASS: TestAccAWSLambdaFunction_VPC (404.37s)
--- PASS: TestAccAWSLambdaFunction_VPC_withInvocation (897.65s)
--- PASS: TestAccAWSLambdaFunction_VpcConfig_ProperIamDependencies (746.66s)
--- PASS: TestAccAWSLambdaFunction_VPCRemoval (288.91s)
--- PASS: TestAccAWSLambdaFunction_VPCUpdate (2372.42s)
--- SKIP: TestAccAWSLambdaFunction_imageConfig (0.00s)

--- PASS: TestAccAWSS3BucketObject_acl (118.19s)
--- PASS: TestAccAWSS3BucketObject_content (34.71s)
--- PASS: TestAccAWSS3BucketObject_contentBase64 (46.29s)
--- PASS: TestAccAWSS3BucketObject_defaultBucketSSE (52.28s)
--- PASS: TestAccAWSS3BucketObject_empty (46.48s)
--- PASS: TestAccAWSS3BucketObject_etagEncryption (34.17s)
--- PASS: TestAccAWSS3BucketObject_ignoreTags (86.02s)
--- PASS: TestAccAWSS3BucketObject_kms (47.67s)
--- PASS: TestAccAWSS3BucketObject_metadata (116.27s)
--- PASS: TestAccAWSS3BucketObject_noNameNoKey (8.51s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockLegalHoldStartWithNone (109.88s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockLegalHoldStartWithOn (86.04s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockRetentionStartWithNone (75.78s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockRetentionStartWithSet (133.43s)
--- PASS: TestAccAWSS3BucketObject_source (44.71s)
--- PASS: TestAccAWSS3BucketObject_sse (43.06s)
--- PASS: TestAccAWSS3BucketObject_storageClass (107.25s)
--- PASS: TestAccAWSS3BucketObject_tags (120.07s)
--- PASS: TestAccAWSS3BucketObject_tagsLeadingMultipleSlashes (147.00s)
--- PASS: TestAccAWSS3BucketObject_tagsLeadingSingleSlash (118.44s)
--- PASS: TestAccAWSS3BucketObject_tagsMultipleSlashes (129.75s)
--- PASS: TestAccAWSS3BucketObject_updates (86.05s)
--- PASS: TestAccAWSS3BucketObject_updateSameFile (56.79s)
--- PASS: TestAccAWSS3BucketObject_updatesWithVersioning (55.94s)
--- PASS: TestAccAWSS3BucketObject_updatesWithVersioningViaAccessPoint (54.03s)
--- PASS: TestAccAWSS3BucketObject_withContentCharacteristics (47.14s)
--- SKIP: TestAccAWSS3BucketObject_NonVersioned (0.70s)

--- PASS: TestAccAWSUser_basic (18.29s)
--- PASS: TestAccAWSUser_disappears (7.90s)
--- PASS: TestAccAWSUser_ForceDestroy_AccessKey (11.06s)
--- PASS: TestAccAWSUser_ForceDestroy_LoginProfile (19.05s)
--- PASS: TestAccAWSUser_ForceDestroy_MFADevice (11.01s)
--- PASS: TestAccAWSUser_ForceDestroy_SigningCertificate (11.95s)
--- PASS: TestAccAWSUser_ForceDestroy_SSHKey (10.68s)
--- PASS: TestAccAWSUser_nameChange (16.99s)
--- PASS: TestAccAWSUser_pathChange (17.62s)
--- PASS: TestAccAWSUser_permissionsBoundary (39.55s)
--- PASS: TestAccAWSUser_tags (17.68s)
```

Output from acceptance testing in AWS GovCloud (US):

```
--- PASS: TestAccAWSEksClusterAuthDataSource_basic (28.16s)

--- FAIL: TestAccAWSEMRCluster_bootstrap_ordering (264.97s) # #15608
--- FAIL: TestAccAWSEMRCluster_instance_fleet (309.15s) # #15608
--- FAIL: TestAccAWSEMRCluster_instance_fleet_master_only (291.43s) # #15608
--- PASS: TestAccAWSEMRCluster_additionalInfo (425.04s)
--- PASS: TestAccAWSEMRCluster_basic (356.09s)
--- PASS: TestAccAWSEMRCluster_configurationsJson (370.54s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_AutoscalingPolicy (563.88s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_BidPrice (867.74s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_InstanceCount (497.50s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_InstanceType (826.05s)
--- PASS: TestAccAWSEMRCluster_CoreInstanceGroup_Name (759.99s)
--- PASS: TestAccAWSEMRCluster_custom_ami_id (434.39s)
--- PASS: TestAccAWSEMRCluster_disappears (478.53s)
--- PASS: TestAccAWSEMRCluster_ebs_config (458.88s)
--- PASS: TestAccAWSEMRCluster_Ec2Attributes_DefaultManagedSecurityGroups (759.17s)
--- PASS: TestAccAWSEMRCluster_keepJob (362.22s)
--- PASS: TestAccAWSEMRCluster_Kerberos_ClusterDedicatedKdc (387.79s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_BidPrice (715.21s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_InstanceCount (1181.25s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_InstanceType (725.58s)
--- PASS: TestAccAWSEMRCluster_MasterInstanceGroup_Name (796.99s)
--- PASS: TestAccAWSEMRCluster_root_volume_size (729.93s)
--- PASS: TestAccAWSEMRCluster_s3Logging (518.49s)
--- PASS: TestAccAWSEMRCluster_security_config (453.30s)
--- PASS: TestAccAWSEMRCluster_Step_Basic (387.80s)
--- PASS: TestAccAWSEMRCluster_step_concurrency_level (424.42s)
--- PASS: TestAccAWSEMRCluster_Step_ConfigMode (865.86s)
--- PASS: TestAccAWSEMRCluster_Step_Multiple (395.99s)
--- PASS: TestAccAWSEMRCluster_tags (708.44s)
--- PASS: TestAccAWSEMRCluster_terminationProtected (356.26s)
--- PASS: TestAccAWSEMRCluster_visibleToAllUsers (675.16s)

--- PASS: TestAccAWSIPRanges_basic (12.75s)
--- PASS: TestAccAWSIPRanges_Url (12.92s)

--- PASS: TestAccAWSLambdaFunction_basic (68.18s)
--- PASS: TestAccAWSLambdaFunction_concurrency (107.17s)
--- PASS: TestAccAWSLambdaFunction_concurrencyCycle (156.84s)
--- PASS: TestAccAWSLambdaFunction_DeadLetterConfig (131.64s)
--- PASS: TestAccAWSLambdaFunction_DeadLetterConfigUpdated (132.90s)
--- PASS: TestAccAWSLambdaFunction_disablePublish (157.57s)
--- PASS: TestAccAWSLambdaFunction_disappears (70.26s)
--- PASS: TestAccAWSLambdaFunction_EmptyVpcConfig (143.29s)
--- PASS: TestAccAWSLambdaFunction_enablePublish (151.67s)
--- PASS: TestAccAWSLambdaFunction_encryptedEnvVariables (133.97s)
--- PASS: TestAccAWSLambdaFunction_Environment_Variables_NoValue (75.02s)
--- PASS: TestAccAWSLambdaFunction_envVariables (193.79s)
--- PASS: TestAccAWSLambdaFunction_expectFilenameAndS3Attributes (35.54s)
--- PASS: TestAccAWSLambdaFunction_FileSystemConfig (827.55s)
--- PASS: TestAccAWSLambdaFunction_KmsKeyArn_NoEnvironmentVariables (156.53s)
--- PASS: TestAccAWSLambdaFunction_Layers (155.57s)
--- PASS: TestAccAWSLambdaFunction_LayersUpdate (214.20s)
--- PASS: TestAccAWSLambdaFunction_localUpdate (523.98s)
--- PASS: TestAccAWSLambdaFunction_localUpdate_nameOnly (529.79s)
--- PASS: TestAccAWSLambdaFunction_nilDeadLetterConfig (109.03s)
--- PASS: TestAccAWSLambdaFunction_runtimes (580.88s)
--- PASS: TestAccAWSLambdaFunction_s3 (35.21s)
--- PASS: TestAccAWSLambdaFunction_s3Update_basic (60.72s)
--- PASS: TestAccAWSLambdaFunction_s3Update_unversioned (61.89s)
--- PASS: TestAccAWSLambdaFunction_tags (199.60s)
--- PASS: TestAccAWSLambdaFunction_UnpublishedCodeUpdate (97.62s)
--- PASS: TestAccAWSLambdaFunction_versioned (111.62s)
--- PASS: TestAccAWSLambdaFunction_versionedUpdate (205.20s)
--- PASS: TestAccAWSLambdaFunction_VPC (386.34s)
--- PASS: TestAccAWSLambdaFunction_VPC_withInvocation (553.55s)
--- PASS: TestAccAWSLambdaFunction_VpcConfig_ProperIamDependencies (256.43s)
--- PASS: TestAccAWSLambdaFunction_VPCRemoval (383.17s)
--- PASS: TestAccAWSLambdaFunction_VPCUpdate (1930.81s)
--- SKIP: TestAccAWSLambdaFunction_codeSigningConfig (0.75s)
--- SKIP: TestAccAWSLambdaFunction_imageConfig (0.00s)

--- PASS: TestAccAWSS3BucketObject_acl (78.44s)
--- PASS: TestAccAWSS3BucketObject_content (47.36s)
--- PASS: TestAccAWSS3BucketObject_contentBase64 (47.06s)
--- PASS: TestAccAWSS3BucketObject_defaultBucketSSE (40.35s)
--- PASS: TestAccAWSS3BucketObject_empty (47.45s)
--- PASS: TestAccAWSS3BucketObject_etagEncryption (47.13s)
--- PASS: TestAccAWSS3BucketObject_ignoreTags (69.26s)
--- PASS: TestAccAWSS3BucketObject_kms (31.34s)
--- PASS: TestAccAWSS3BucketObject_metadata (113.98s)
--- PASS: TestAccAWSS3BucketObject_noNameNoKey (2.18s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockLegalHoldStartWithNone (115.61s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockLegalHoldStartWithOn (77.40s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockRetentionStartWithNone (114.51s)
--- PASS: TestAccAWSS3BucketObject_ObjectLockRetentionStartWithSet (139.11s)
--- PASS: TestAccAWSS3BucketObject_source (47.21s)
--- PASS: TestAccAWSS3BucketObject_sse (29.40s)
--- PASS: TestAccAWSS3BucketObject_storageClass (161.13s)
--- PASS: TestAccAWSS3BucketObject_tags (158.09s)
--- PASS: TestAccAWSS3BucketObject_tagsLeadingMultipleSlashes (162.01s)
--- PASS: TestAccAWSS3BucketObject_tagsLeadingSingleSlash (162.35s)
--- PASS: TestAccAWSS3BucketObject_tagsMultipleSlashes (161.07s)
--- PASS: TestAccAWSS3BucketObject_updates (93.23s)
--- PASS: TestAccAWSS3BucketObject_updateSameFile (52.71s)
--- PASS: TestAccAWSS3BucketObject_updatesWithVersioning (52.29s)
--- PASS: TestAccAWSS3BucketObject_updatesWithVersioningViaAccessPoint (56.95s)
--- PASS: TestAccAWSS3BucketObject_withContentCharacteristics (46.56s)
--- SKIP: TestAccAWSS3BucketObject_NonVersioned (1.58s)

--- PASS: TestAccAWSUser_basic (30.14s)
--- PASS: TestAccAWSUser_disappears (11.79s)
--- PASS: TestAccAWSUser_ForceDestroy_AccessKey (19.10s)
--- PASS: TestAccAWSUser_ForceDestroy_LoginProfile (18.86s)
--- PASS: TestAccAWSUser_ForceDestroy_MFADevice (19.94s)
--- PASS: TestAccAWSUser_ForceDestroy_SigningCertificate (20.78s)
--- PASS: TestAccAWSUser_ForceDestroy_SSHKey (19.72s)
--- PASS: TestAccAWSUser_nameChange (28.31s)
--- PASS: TestAccAWSUser_pathChange (48.94s)
--- PASS: TestAccAWSUser_permissionsBoundary (100.25s)
--- PASS: TestAccAWSUser_tags (68.49s)
```
@github-actions github-actions bot added this to the v3.32.0 milestone Mar 8, 2021
@ghost
Copy link

ghost commented Mar 12, 2021

This has been released in version 3.32.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 for triage. Thanks!

@ghost
Copy link

ghost commented Apr 8, 2021

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

If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!

@ghost ghost locked as resolved and limited conversation to collaborators Apr 8, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
provider Pertains to the provider itself, rather than any interaction with AWS. technical-debt Addresses areas of the codebase that need refactoring or redesign. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant