forked from chanzuckerberg/fogg
-
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.
feat: Use aws_iam_role_name field for GitHub Actions fogg apply job (#84
) * feat: Use github_actions_ci aws_iam_role_name field aws_iam_role_name was unused for fogg apply GitHub action, add support for it in template (also add aws_region). * chore: Run make update-golden-files
- Loading branch information
1 parent
47611cc
commit eccc952
Showing
34 changed files
with
787 additions
and
4 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
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
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 @@ | ||
undefined-pre+undefined.dirty |
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,8 @@ | ||
fogg.tf linguist-generated | ||
remote-states.tf linguist-generated | ||
Makefile linguist-generated | ||
atlantis.yaml linguist-generated | ||
.travis.yml linguist-generated | ||
.circleci/config.yml linguist-generated | ||
.terraformignore linguist-generated | ||
.github/workflows/fogg_ci.yml linguist-generated |
126 changes: 126 additions & 0 deletions
126
testdata/github_actions_with_iam_role/.github/workflows/fogg_ci.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Auto-generated by fogg. Do not edit | ||
# Make improvements in fogg, so that everyone can benefit. | ||
|
||
# Compiled files | ||
*.tfstate | ||
*.tfstate.*.backup | ||
*.tfstate.backup | ||
*tfvars | ||
.terraform.lock.hcl | ||
|
||
# Module directory | ||
.terraform/ | ||
|
||
# Pycharm folder | ||
.idea | ||
|
||
# Editor Swap Files | ||
*.swp | ||
*.swo | ||
*.swn | ||
*.swm | ||
*.swl | ||
*.swk | ||
|
||
.fogg | ||
/terraform.d/plugins | ||
/terraform.d/modules | ||
|
||
.DS_Store | ||
.vscode | ||
.envrc | ||
|
||
# Scala language server | ||
.metals | ||
|
||
buildevents.plan | ||
check-plan.output | ||
|
||
venv |
5 changes: 5 additions & 0 deletions
5
testdata/github_actions_with_iam_role/.terraform.d/plugin-cache/.gitignore
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,5 @@ | ||
# Auto-generated by fogg. Do not edit | ||
# Make improvements in fogg, so that everyone can benefit. | ||
|
||
* | ||
!.gitignore |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
config { | ||
# only report problems | ||
force = true | ||
format = "compact" | ||
} | ||
|
||
plugin "terraform" { | ||
enabled = true | ||
preset = "recommended" | ||
} | ||
|
||
plugin "aws" { | ||
enabled = true | ||
version = "0.19.0" | ||
source = "github.com/terraform-linters/tflint-ruleset-aws" | ||
} |
Oops, something went wrong.