Skip to content

Commit d3de577

Browse files
committed
Deploy keys optional
1 parent 9bf4fec commit d3de577

File tree

11 files changed

+161
-132
lines changed

11 files changed

+161
-132
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,4 @@ github/
7676
*.ovpn
7777

7878
*.zip
79+
account-map/

src/CHANGELOG.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
## `aws-eks-argocd` Component PR [#16](https://github.com/cloudposse-terraform-components/aws-eks-argocd/pull/16)
2-
3-
Corrected the spelling of "succeded" to "succeeded" in the `on-deploy-succeded` notification. As a result, the `argocd-repo` component will need to be updated to correct the same spelling in the Argo CD desired state repository application set.
4-
5-
See the [PR for argocd-repo](https://github.com/cloudposse-terraform-components/aws-argocd-github-repo/pull/17)
6-
71
## Components PR [#905](https://github.com/cloudposse/terraform-aws-components/pull/905)
82

93
The `notifications.tf` file has been renamed to `notifications.tf`. Delete `notifications.tf` after vendoring these
@@ -84,7 +78,7 @@ chamber write argocd/github api_key ${PAT}
8478
- `on-deploy-started`
8579
- `app-repo-github-commit-status`
8680
- `argocd-repo-github-commit-status`
87-
- `on-deploy-succeded`
81+
- `on-deploy-succeeded`
8882
- `app-repo-github-commit-status`
8983
- `argocd-repo-github-commit-status`
9084
- `on-deploy-failed`

src/README.md

Lines changed: 33 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/data.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ data "aws_ssm_parameter" "oidc_client_secret" {
2626
}
2727

2828
data "aws_ssm_parameter" "github_deploy_key" {
29-
for_each = local.enabled ? var.argocd_repositories : {}
29+
for_each = local.github_deploy_keys_enabled ? var.argocd_repositories : {}
3030

3131
name = local.enabled ? format(
3232
module.argocd_repo[each.key].outputs.deploy_keys_ssm_path_format,

0 commit comments

Comments
 (0)