Skip to content

Commit

Permalink
Merge pull request #37776 from hashicorp/go-mod-tidy
Browse files Browse the repository at this point in the history
go mod tidy
  • Loading branch information
YakDriver committed May 30, 2024
2 parents 5690023 + d6c5ad1 commit 008c8a1
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions docs/makefile-cheat-sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ Variables are often defined before the `make` call on the same line, such as `MY

## Cheat Sheet

* **Target** Use as a subcommand to `make`, such as `make gen`.
* **Target** Use as a subcommand to `make`, such as `make gen`. [Meta and dependent targets](#meta-targets-and-dependent-targets) are marked with <sup>M</sup> and <sup>D</sup> respectively.
* **Description** When CI related, this aligns with the name of the check as seen on GitHub.
* **CI?** Whether the target is equivalent or largely equivalent to a check run on the GitHub repository for a pull request. See [continuous integration](continuous-integration.md) for more details.
* **Legacy** Whether the target is a legacy holdover. Use caution with a legacy target! It may not work, or may perform a check or fixes that do _not_ align with current practices. At a future date, this target should be removed, modernized, or verified to still have value.
* **Vars** [Variables](#variables) that you can set when calling `make`, such as `MY_VAR=42 make my-target`.
* **Legacy?** Whether the target is a legacy holdover. Use caution with a legacy target! It may not work, or may perform a check or fixes that do _not_ align with current practices. At a future date, this target should be removed, modernized, or verified to still have value.
* **Vars** [Variables](#variables) that you can set when using the target, such as `MY_VAR=42 make my-target`. [Meta and dependent targets](#meta-targets-and-dependent-targets) run other targets that may not respect the same variables.

| Target | Description | CI? | Legacy? | Vars |
| --- | --- | --- | --- | --- |
Expand Down
12 changes: 6 additions & 6 deletions tools/tfsdk2fw/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ require (
github.com/agext/levenshtein v1.2.3 // indirect
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
github.com/armon/go-radix v1.0.0 // indirect
github.com/aws/aws-sdk-go v1.53.11 // indirect
github.com/aws/aws-sdk-go v1.53.12 // indirect
github.com/aws/aws-sdk-go-v2 v1.27.0 // indirect
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 // indirect
github.com/aws/aws-sdk-go-v2/config v1.27.16 // indirect
Expand All @@ -44,7 +44,7 @@ require (
github.com/aws/aws-sdk-go-v2/service/applicationautoscaling v1.27.8 // indirect
github.com/aws/aws-sdk-go-v2/service/apprunner v1.28.8 // indirect
github.com/aws/aws-sdk-go-v2/service/appstream v1.34.8 // indirect
github.com/aws/aws-sdk-go-v2/service/athena v1.40.8 // indirect
github.com/aws/aws-sdk-go-v2/service/athena v1.41.0 // indirect
github.com/aws/aws-sdk-go-v2/service/auditmanager v1.32.8 // indirect
github.com/aws/aws-sdk-go-v2/service/autoscaling v1.40.9 // indirect
github.com/aws/aws-sdk-go-v2/service/autoscalingplans v1.20.9 // indirect
Expand All @@ -68,7 +68,7 @@ require (
github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.38.4 // indirect
github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.35.5 // indirect
github.com/aws/aws-sdk-go-v2/service/codeartifact v1.27.4 // indirect
github.com/aws/aws-sdk-go-v2/service/codebuild v1.36.1 // indirect
github.com/aws/aws-sdk-go-v2/service/codebuild v1.37.0 // indirect
github.com/aws/aws-sdk-go-v2/service/codecatalyst v1.13.5 // indirect
github.com/aws/aws-sdk-go-v2/service/codecommit v1.22.8 // indirect
github.com/aws/aws-sdk-go-v2/service/codedeploy v1.25.8 // indirect
Expand Down Expand Up @@ -163,7 +163,7 @@ require (
github.com/aws/aws-sdk-go-v2/service/rds v1.79.2 // indirect
github.com/aws/aws-sdk-go-v2/service/redshift v1.44.4 // indirect
github.com/aws/aws-sdk-go-v2/service/redshiftdata v1.25.8 // indirect
github.com/aws/aws-sdk-go-v2/service/redshiftserverless v1.18.4 // indirect
github.com/aws/aws-sdk-go-v2/service/redshiftserverless v1.18.5 // indirect
github.com/aws/aws-sdk-go-v2/service/rekognition v1.40.4 // indirect
github.com/aws/aws-sdk-go-v2/service/resourceexplorer2 v1.10.9 // indirect
github.com/aws/aws-sdk-go-v2/service/resourcegroups v1.22.4 // indirect
Expand All @@ -176,7 +176,7 @@ require (
github.com/aws/aws-sdk-go-v2/service/s3control v1.44.11 // indirect
github.com/aws/aws-sdk-go-v2/service/scheduler v1.8.8 // indirect
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.29.1 // indirect
github.com/aws/aws-sdk-go-v2/service/securityhub v1.48.4 // indirect
github.com/aws/aws-sdk-go-v2/service/securityhub v1.49.0 // indirect
github.com/aws/aws-sdk-go-v2/service/securitylake v1.13.7 // indirect
github.com/aws/aws-sdk-go-v2/service/servicecatalogappregistry v1.26.8 // indirect
github.com/aws/aws-sdk-go-v2/service/servicequotas v1.21.8 // indirect
Expand Down Expand Up @@ -234,7 +234,7 @@ require (
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-plugin v1.6.0 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/go-version v1.7.0 // indirect
github.com/hashicorp/hc-install v0.6.4 // indirect
github.com/hashicorp/hcl/v2 v2.20.1 // indirect
github.com/hashicorp/logutils v1.0.0 // indirect
Expand Down
24 changes: 12 additions & 12 deletions tools/tfsdk2fw/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ github.com/apparentlymart/go-textseg/v15 v15.0.0 h1:uYvfpb3DyLSCGWnctWKGj857c6ew
github.com/apparentlymart/go-textseg/v15 v15.0.0/go.mod h1:K8XmNZdhEBkdlyDdvbmmsvpAG721bKi0joRfFdHIWJ4=
github.com/armon/go-radix v1.0.0 h1:F4z6KzEeeQIMeLFa97iZU6vupzoecKdU5TX24SNppXI=
github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8=
github.com/aws/aws-sdk-go v1.53.11 h1:KcmduYvX15rRqt4ZU/7jKkmDxU/G87LJ9MUI0yQJh00=
github.com/aws/aws-sdk-go v1.53.11/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk=
github.com/aws/aws-sdk-go v1.53.12 h1:8f8K+YaTy2qwtGwVIo2Ftq22UCH96xQAX7Q0lyZKDiA=
github.com/aws/aws-sdk-go v1.53.12/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk=
github.com/aws/aws-sdk-go-v2 v1.27.0 h1:7bZWKoXhzI+mMR/HjdMx8ZCC5+6fY0lS5tr0bbgiLlo=
github.com/aws/aws-sdk-go-v2 v1.27.0/go.mod h1:ffIFB97e2yNsv4aTSGkqtHnppsIJzw7G7BReUZ3jCXM=
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 h1:x6xsQXGSmW6frevwDA+vi/wqhp1ct18mVXYN08/93to=
Expand Down Expand Up @@ -74,8 +74,8 @@ github.com/aws/aws-sdk-go-v2/service/apprunner v1.28.8 h1:vTSRA431Gi6tQcUDfCTF1P
github.com/aws/aws-sdk-go-v2/service/apprunner v1.28.8/go.mod h1:0ClIRoMxROYgDXb/kSvAsZSO41p4j9p4xkquAFzNEjM=
github.com/aws/aws-sdk-go-v2/service/appstream v1.34.8 h1:DaWVzDS0ah55wHuclYNMfi/cOIfxlC1K0K5tE5nterE=
github.com/aws/aws-sdk-go-v2/service/appstream v1.34.8/go.mod h1:4shIB9yHtGN/5G39m2vd25u9LwO5YxxbyiZScFMWsVE=
github.com/aws/aws-sdk-go-v2/service/athena v1.40.8 h1:LDEjTqFmS+ww2sLXM8pEuLWZcu5ecW26Y09pL0hjA3s=
github.com/aws/aws-sdk-go-v2/service/athena v1.40.8/go.mod h1:7O3gJgWuWCMAUTmCOno9aEmx2rC7Ial0tuMckcYB+UQ=
github.com/aws/aws-sdk-go-v2/service/athena v1.41.0 h1:d1gJCasYsFuPtZkmfUgC5xWGoAehKixt86AN5mmIDk8=
github.com/aws/aws-sdk-go-v2/service/athena v1.41.0/go.mod h1:7O3gJgWuWCMAUTmCOno9aEmx2rC7Ial0tuMckcYB+UQ=
github.com/aws/aws-sdk-go-v2/service/auditmanager v1.32.8 h1:Ew7HlAfZ8BolNi1/a963W/EVwLMLbE7CRogqnb43RUo=
github.com/aws/aws-sdk-go-v2/service/auditmanager v1.32.8/go.mod h1:CS0FcTu2e1numcEJjSy3EU5IlJ1a08p5ltC0JzbKmBs=
github.com/aws/aws-sdk-go-v2/service/autoscaling v1.40.9 h1:xcVQU7CdcjOdYZyIpPJx/DELxUH5j81ztG1s68HXCaQ=
Expand Down Expand Up @@ -122,8 +122,8 @@ github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.35.5 h1:UsJC9BCSLG9tamquk
github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.35.5/go.mod h1:OfO65DNsDX+wgWmjljN55I+Dzo4nbhWNlNFuco5AAgw=
github.com/aws/aws-sdk-go-v2/service/codeartifact v1.27.4 h1:BuJ1D4XDSgrd3cmqeAXcfVe5l972J0CzKFjr5QCP50E=
github.com/aws/aws-sdk-go-v2/service/codeartifact v1.27.4/go.mod h1:6ofvB7xH04L3tslvrKIckEayydcw52FRr/d+RNQbt3A=
github.com/aws/aws-sdk-go-v2/service/codebuild v1.36.1 h1:5r9mPhcjeBjSFLpsmrh3xGh4EdLkhTCeZiVTqAkL6XE=
github.com/aws/aws-sdk-go-v2/service/codebuild v1.36.1/go.mod h1:kl7VOsqjQLonGktvC5qbi8fm6ZMzsTosxUpG0OM8nko=
github.com/aws/aws-sdk-go-v2/service/codebuild v1.37.0 h1:mu4Xs/xDVEijCVdQoV0gXCgEJJxd3GxPAPrrYBdiG2c=
github.com/aws/aws-sdk-go-v2/service/codebuild v1.37.0/go.mod h1:kl7VOsqjQLonGktvC5qbi8fm6ZMzsTosxUpG0OM8nko=
github.com/aws/aws-sdk-go-v2/service/codecatalyst v1.13.5 h1:NjOGDXzyUEBEqSw9b8yXw16BspfeErqutMagu65hhgM=
github.com/aws/aws-sdk-go-v2/service/codecatalyst v1.13.5/go.mod h1:/CJo+lxY1pAJ/nJq7JUU6CX/bJs0XZ6Z4vwlniSOyiI=
github.com/aws/aws-sdk-go-v2/service/codecommit v1.22.8 h1:ChpkxPYDXw228EbSz+8HXoO1igpIFGf7TiePR8R1yFE=
Expand Down Expand Up @@ -312,8 +312,8 @@ github.com/aws/aws-sdk-go-v2/service/redshift v1.44.4 h1:8z7lzXoKaQZbalU3UCZcgI1
github.com/aws/aws-sdk-go-v2/service/redshift v1.44.4/go.mod h1:RBdqRNcEwsnGm/wzAllf6XwHX5xUB4Cl6H7UiSNqHqs=
github.com/aws/aws-sdk-go-v2/service/redshiftdata v1.25.8 h1:n1Uz0fNJlm4GQ2BMe/CkIWPsgbFvz19U0hYidik8U1k=
github.com/aws/aws-sdk-go-v2/service/redshiftdata v1.25.8/go.mod h1:pQhhoLWIg8JpA9LKC3Nd8IsFMrTSYS6DT06Tf/rT0hg=
github.com/aws/aws-sdk-go-v2/service/redshiftserverless v1.18.4 h1:eXKmEVOxRN69CxL3+/OI+wQp98cOo2RuzzdGJJ6alms=
github.com/aws/aws-sdk-go-v2/service/redshiftserverless v1.18.4/go.mod h1:E9qW3bK8dfB37zHY+iCjHjIOkBRKdLDCtVLiaQgLkrg=
github.com/aws/aws-sdk-go-v2/service/redshiftserverless v1.18.5 h1:+0LCUlbLCAZhq1QvRhCWW9LkVSkmX7n/4EkijZdSdnA=
github.com/aws/aws-sdk-go-v2/service/redshiftserverless v1.18.5/go.mod h1:E9qW3bK8dfB37zHY+iCjHjIOkBRKdLDCtVLiaQgLkrg=
github.com/aws/aws-sdk-go-v2/service/rekognition v1.40.4 h1:rbgEl5Gsq/bfsZRJTR9Rm7PChlF9TwaCtKhQ+uSpaNk=
github.com/aws/aws-sdk-go-v2/service/rekognition v1.40.4/go.mod h1:2FPAnAa3YzcYKurNNINNAZ9o/gz2FTk2EwVIwng6E3E=
github.com/aws/aws-sdk-go-v2/service/resourceexplorer2 v1.10.9 h1:2Ei5pKICPJl25oFH5F/x2/UVEZdgrIEFcp3gvi6ODnI=
Expand All @@ -338,8 +338,8 @@ github.com/aws/aws-sdk-go-v2/service/scheduler v1.8.8 h1:0JlMMgtgydlichQOArHBRgk
github.com/aws/aws-sdk-go-v2/service/scheduler v1.8.8/go.mod h1:XIhMBVV65pl4sdT0SB6CnI/F3AUQ7yPNRdaCVG47ZHo=
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.29.1 h1:NSWsFzdHN41mJ5I/DOFzxgkKSYNHQADHn7Mu+lU/AKw=
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.29.1/go.mod h1:5mMk0DgUgaHlcqtN65fNyZI0ZDX3i9Cw+nwq75HKB3U=
github.com/aws/aws-sdk-go-v2/service/securityhub v1.48.4 h1:J/5XSSUxCUIy6Ya/1qBe7SIKdf117mo2vzyVXK/OoFo=
github.com/aws/aws-sdk-go-v2/service/securityhub v1.48.4/go.mod h1:Ypax6FsjjJFd0fojZ85aErP+hwfVaXW4gsInyTbwL6Q=
github.com/aws/aws-sdk-go-v2/service/securityhub v1.49.0 h1:oyVcPJziEqHmdXn731I8FF2sloS+QSwJ3tTqljUSaDo=
github.com/aws/aws-sdk-go-v2/service/securityhub v1.49.0/go.mod h1:Ypax6FsjjJFd0fojZ85aErP+hwfVaXW4gsInyTbwL6Q=
github.com/aws/aws-sdk-go-v2/service/securitylake v1.13.7 h1:DY0wAgtXW0Pxv0+BYLsewwyFIo0r0bv34TfYmSmukhE=
github.com/aws/aws-sdk-go-v2/service/securitylake v1.13.7/go.mod h1:uVbkykXPH6641vCwYsAppi82csvG9gjF8M0KN4aHjz8=
github.com/aws/aws-sdk-go-v2/service/servicecatalogappregistry v1.26.8 h1:tEpoy6yO8fFsUG/idcwOhq3cUSrgFpWV7S1F4pv6KgE=
Expand Down Expand Up @@ -491,8 +491,8 @@ github.com/hashicorp/go-plugin v1.6.0/go.mod h1:lBS5MtSSBZk0SHc66KACcjjlU6WzEVP/
github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=
github.com/hashicorp/go-uuid v1.0.3 h1:2gKiV6YVmrJ1i2CKKa9obLvRieoRGviZFL26PcT/Co8=
github.com/hashicorp/go-uuid v1.0.3/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=
github.com/hashicorp/go-version v1.6.0 h1:feTTfFNnjP967rlCxM/I9g701jU+RN74YKx2mOkIeek=
github.com/hashicorp/go-version v1.6.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA=
github.com/hashicorp/go-version v1.7.0 h1:5tqGy27NaOTB8yJKUZELlFAS/LTKJkrmONwQKeRZfjY=
github.com/hashicorp/go-version v1.7.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA=
github.com/hashicorp/hc-install v0.6.4 h1:QLqlM56/+SIIGvGcfFiwMY3z5WGXT066suo/v9Km8e0=
github.com/hashicorp/hc-install v0.6.4/go.mod h1:05LWLy8TD842OtgcfBbOT0WMoInBMUSHjmDx10zuBIA=
github.com/hashicorp/hcl/v2 v2.20.1 h1:M6hgdyz7HYt1UN9e61j+qKJBqR3orTWbI1HKBJEdxtc=
Expand Down

0 comments on commit 008c8a1

Please sign in to comment.