-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
249 additions
and
86 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
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,113 @@ | ||
name: Format | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
types: [opened, reopened, synchronize] | ||
|
||
jobs: | ||
opentofu-fmt: | ||
name: Format | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: kislerdm/setup-opentofu@main | ||
with: | ||
cli_config_credentials_token: ${{ secrets.APP_TERRAFORM_IO_TOKEN }} | ||
tofu_version: 1.6.0-alpha1 | ||
|
||
- name: Format | ||
run: tofu fmt -recursive | ||
|
||
- name: Upload | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: opentofu-fmt | ||
path: | | ||
./**/*.tf | ||
./**/*.tfvars | ||
opentofu-lock: | ||
name: Lock | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
module: ["github"] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: kislerdm/setup-opentofu@main | ||
with: | ||
cli_config_credentials_token: ${{ secrets.APP_TERRAFORM_IO_TOKEN }} | ||
tofu_version: 1.6.0-alpha1 | ||
|
||
- name: Init | ||
run: tofu init -backend=false | ||
working-directory: ${{ matrix.module }} | ||
|
||
- name: Lock | ||
run: tofu providers lock -platform=linux_arm64 -platform=linux_amd64 -platform=darwin_arm64 -platform=darwin_amd64 | ||
working-directory: ${{ matrix.module }} | ||
|
||
- name: Upload | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: opentofu-lock-${{ matrix.module }} | ||
path: ${{ matrix.module }}/.terraform.lock.hcl | ||
|
||
opentofu-result: | ||
name: Result | ||
runs-on: ubuntu-latest | ||
needs: [opentofu-fmt, opentofu-lock] | ||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- uses: actions/create-github-app-token@v1 | ||
id: create-github-app-token | ||
with: | ||
app-id: ${{ secrets.ACTIONS_PYTHON_CI_APP_ID }} | ||
private-key: ${{ secrets.ACTIONS_PYTHON_CI_PRIVATE_KEY }} | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
token: ${{ steps.create-github-app-token.outputs.token }} | ||
fetch-depth: 0 | ||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.ref || '' }} | ||
|
||
- uses: kislerdm/setup-opentofu@main | ||
with: | ||
cli_config_credentials_token: ${{ secrets.APP_TERRAFORM_IO_TOKEN }} | ||
tofu_version: 1.6.0-alpha1 | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
path: artifacts | ||
|
||
- name: Gather Artifacts | ||
id: gather-artifacts | ||
run: | | ||
find "artifacts/opentofu-fmt" -type f \ | ||
| sed "s|artifacts/opentofu-fmt/||g" \ | ||
| xargs -I{} mv artifacts/opentofu-fmt/{} {} | ||
find "artifacts" -maxdepth 1 -type d \ | ||
| grep "opentofu-lock-" \ | ||
| sed -e "s|.*/opentofu-lock-||g" \ | ||
| xargs -I{} mv artifacts/opentofu-lock-{}/.terraform.lock.hcl {}/.terraform.lock.hcl | ||
if [ -n "$(git status --porcelain)" ]; then | ||
git status --porcelain | ||
git add --all | ||
echo "changed=true" >> "$GITHUB_OUTPUT" | ||
fi | ||
- uses: tyriis/[email protected] | ||
if: ${{ steps.gather-artifacts.outputs.changed == 'true' }} | ||
with: | ||
message: "ci(terraform): Update terraform code" | ||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.ref || '' }} | ||
token: ${{ steps.create-github-app-token.outputs.token }} |
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,9 @@ | ||
config { | ||
module = true | ||
} | ||
|
||
plugin "terraform" { | ||
enabled = true | ||
version = "0.5.0" | ||
source = "github.com/terraform-linters/tflint-ruleset-terraform" | ||
} |
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,2 @@ | ||
AVD-GIT-0001 # Repository is public | ||
AVD-GIT-0004 # Branch protection does not require signed commits |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,16 +1,19 @@ | ||
variable "username" { | ||
type = string | ||
type = string | ||
description = "GitHub username" | ||
} | ||
|
||
variable "organization_role" { | ||
type = string | ||
default = "member" | ||
type = string | ||
default = "member" | ||
description = "GitHub role in organization" | ||
} | ||
|
||
variable "teams" { | ||
type = list(object({ | ||
slug = string | ||
role = string | ||
})) | ||
default = [] | ||
default = [] | ||
description = "GitHub team configurations" | ||
} |
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,7 +1,10 @@ | ||
terraform { | ||
required_version = "~> 1.1" | ||
|
||
required_providers { | ||
github = { | ||
source = "integrations/github" | ||
source = "registry.terraform.io/integrations/github" | ||
version = "~> 5.0" | ||
} | ||
} | ||
} |
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,3 +1,4 @@ | ||
output "github_repository" { | ||
value = github_repository.default | ||
value = github_repository.default | ||
description = "Managed GitHub repository data" | ||
} |
Oops, something went wrong.