├── .changes ├── 2.2.0.md ├── 2.3.0.md ├── 3.0.0.md ├── 3.0.1.md ├── 4.0.0.md ├── 4.0.1.md ├── 5.0.0.md └── unreleased │ ├── .gitkeep │ └── NOTES-20250414-153308.yaml ├── .changie.yaml ├── .copywrite.hcl ├── .github ├── CODEOWNERS ├── actionlint.yaml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── ci-github-actions.yml │ ├── community.yml │ ├── compliance.yml │ ├── hashicorp.yml │ ├── issue-comment-triage.yml │ ├── lock.yml │ └── release.yml ├── CHANGELOG.md ├── LICENSE ├── META.d └── _summary.yaml └── README.md /.changes/2.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.changes/2.2.0.md -------------------------------------------------------------------------------- /.changes/2.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.changes/2.3.0.md -------------------------------------------------------------------------------- /.changes/3.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.changes/3.0.0.md -------------------------------------------------------------------------------- /.changes/3.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.changes/3.0.1.md -------------------------------------------------------------------------------- /.changes/4.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.changes/4.0.0.md -------------------------------------------------------------------------------- /.changes/4.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.changes/4.0.1.md -------------------------------------------------------------------------------- /.changes/5.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.changes/5.0.0.md -------------------------------------------------------------------------------- /.changes/unreleased/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.changes/unreleased/NOTES-20250414-153308.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.changes/unreleased/NOTES-20250414-153308.yaml -------------------------------------------------------------------------------- /.changie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.changie.yaml -------------------------------------------------------------------------------- /.copywrite.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.copywrite.hcl -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @hashicorp/terraform-core-plugins 2 | -------------------------------------------------------------------------------- /.github/actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.github/actionlint.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci-github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.github/workflows/ci-github-actions.yml -------------------------------------------------------------------------------- /.github/workflows/community.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.github/workflows/community.yml -------------------------------------------------------------------------------- /.github/workflows/compliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.github/workflows/compliance.yml -------------------------------------------------------------------------------- /.github/workflows/hashicorp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.github/workflows/hashicorp.yml -------------------------------------------------------------------------------- /.github/workflows/issue-comment-triage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.github/workflows/issue-comment-triage.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/LICENSE -------------------------------------------------------------------------------- /META.d/_summary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/META.d/_summary.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/ghaction-terraform-provider-release/HEAD/README.md --------------------------------------------------------------------------------