-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge main into db-migration-step-1 (#1150)
* Update infrastructure_version.txt (#1136) * VPN Internal DNS (#1133) * The beginning of internal DNS for VPN * conditional parameter group name (#1138) * conditional parameter group name * Update aws/rds/rds.tf Co-authored-by: Steve Astels <[email protected]> --------- Co-authored-by: Steve Astels <[email protected]> * Worker node update (#1139) * Fixing double mock outputs (#1141) * Prod dns cfg path (#1142) * Fixing double mock outputs * adding config path --------- Co-authored-by: Jumana B <[email protected]> * Release 2.5.8 (#1140) * Release 2.5.8 * Update infrastructure_version.txt * Update infrastructure_version.txt * chore: synced local '.github/workflows/ossf-scorecard.yml' with remote 'tools/sre_file_sync/ossf-scorecard.yml' (#1137) Co-authored-by: sre-read-write[bot] <92993749+sre-read-write[bot]@users.noreply.github.com> * Adding account id to secret (#1144) * K8s upgraded to 1.29 (#1143) * K8s upgraded to 1.29 * Fixing prod hcl * chore(deps): update all minor dependencies (#555) * chore(deps): update all minor dependencies * changes for new version of rds_proxy --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Stephen Astels <[email protected]> Co-authored-by: Ben Larabie <[email protected]> * chore(deps): lock file maintenance (#594) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update all non-major github action dependencies (#597) * chore(deps): update all non-major github action dependencies * use tfsec v1.28.1 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Stephen Astels <[email protected]> Co-authored-by: Ben Larabie <[email protected]> * release 2.5.15 (#1145) * Adding internal HTTP ingress/egress to eks SG (#1146) * Refresh all QuickSight datasets (#1132) * refresh all the things * order refresh by dependancies --------- Co-authored-by: Jumana B <[email protected]> Co-authored-by: Ben Larabie <[email protected]> Co-authored-by: sre-read-write[bot] <92993749+sre-read-write[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information
1 parent
2d2e985
commit 0c35dcf
Showing
105 changed files
with
3,754 additions
and
1,705 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 +1 @@ | ||
2.5.2 | ||
2.5.15 |
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 |
---|---|---|
|
@@ -63,7 +63,7 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | ||
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | ||
with: | ||
# Fetches entire history, so we can analyze commits since last tag | ||
fetch-depth: 0 | ||
|
@@ -183,7 +183,7 @@ jobs: | |
- name: Bump version and push tag | ||
if: github.event_name != 'workflow_dispatch' # We don't want to tag new versions when launched via workflow_dispatch since only environment variables changed | ||
uses: mathieudutour/[email protected] | ||
uses: mathieudutour/github-tag-action@bcb832838e1612ff92089d914bccc0fd39458223 # v4.6 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
release_branches: main | ||
|
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,8 @@ | ||
resource "aws_secretsmanager_secret" "aws_account_id" { | ||
name = "AWS_ACCOUNT_ID" | ||
} | ||
|
||
resource "aws_secretsmanager_secret_version" "aws_account_id" { | ||
secret_id = aws_secretsmanager_secret.aws_account_id.id | ||
secret_string = var.account_id | ||
} |
Oops, something went wrong.