This file contains hidden or 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
{ | |
"window.zoomLevel": 0, | |
"editor.renderWhitespace": "all", | |
"editor.tabSize": 2, | |
"git.autofetch": true, | |
"git.confirmSync": false, | |
"liveshare.featureSet": "stable", | |
"workbench.activityBar.visible": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"workbench.colorTheme": "Shades of Purple", |
This file contains hidden or 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
# Check if OIDC provider exists | |
data "aws_iam_openid_connect_provider" "existing_github" { | |
count = 1 | |
url = "https://token.actions.githubusercontent.com" | |
} | |
# Use existing provider ARN | |
locals { | |
github_oidc_provider_arn = "arn:aws:iam::**********:oidc-provider/token.actions.githubusercontent.com" | |
} |
OlderNewer