-
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deprecation Notice, Terraform Provider v5 Support (#93)
- Loading branch information
Showing
12 changed files
with
731 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
{ | ||
"extends": [ | ||
"config:base", | ||
":preserveSemverRanges" | ||
":preserveSemverRanges", | ||
":rebaseStalePrs" | ||
], | ||
"baseBranches": ["main", "master", "/^release\\/v\\d{1,2}$/"], | ||
"baseBranches": ["main"], | ||
"labels": ["auto-update"], | ||
"dependencyDashboardAutoclose": true, | ||
"enabledManagers": ["terraform"], | ||
"terraform": { | ||
"ignorePaths": ["**/context.tf", "examples/**"] | ||
"ignorePaths": ["**/context.tf"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ on: | |
- 'docs/**' | ||
- 'examples/**' | ||
- 'test/**' | ||
- 'README.*' | ||
|
||
permissions: | ||
contents: write | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
terraform { | ||
required_version = ">= 1.0" | ||
|
||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 5.0" | ||
} | ||
local = { | ||
source = "hashicorp/local" | ||
version = ">= 1.2" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,28 @@ | ||
module github.com/cloudposse/terraform-aws-s3-website | ||
|
||
go 1.13 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.34.6 // indirect | ||
github.com/gruntwork-io/terratest v0.34.7 | ||
github.com/stretchr/testify v1.6.1 | ||
) | ||
|
||
require ( | ||
github.com/agext/levenshtein v1.2.1 // indirect | ||
github.com/apparentlymart/go-textseg v1.0.0 // indirect | ||
github.com/apparentlymart/go-textseg/v12 v12.0.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/google/uuid v1.1.1 // indirect | ||
github.com/gruntwork-io/terratest v0.16.0 | ||
github.com/pquerna/otp v1.2.0 // indirect | ||
github.com/stretchr/testify v1.5.1 | ||
golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f // indirect | ||
golang.org/x/sys v0.0.0-20190527104216-9cd6430ef91e // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.0 // indirect | ||
github.com/hashicorp/hcl/v2 v2.8.2 // indirect | ||
github.com/hashicorp/terraform-json v0.9.0 // indirect | ||
github.com/jinzhu/copier v0.0.0-20190924061706-b57f9002281a // indirect | ||
github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/zclconf/go-cty v1.2.1 // indirect | ||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect | ||
golang.org/x/net v0.0.0-20201021035429-f5854403a974 // indirect | ||
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f // indirect | ||
golang.org/x/text v0.3.3 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
) |
Oops, something went wrong.