Last active
February 16, 2022 18:22
-
-
Save brysontyrrell/20a75ca1c57c19fb02670de7b092b6d9 to your computer and use it in GitHub Desktop.
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
AWSTemplateFormatVersion: 2010-09-09 | |
# This can only be deployed once per account. | |
Resources: | |
GitHubOIDC: | |
Type: AWS::IAM::OIDCProvider | |
Properties: | |
Url: https://token.actions.githubusercontent.com | |
ClientIdList: | |
- sts.amazonaws.com | |
ThumbprintList: | |
- 6938fd4d98bab03faadb97b34396831e3780aea1 | |
Outputs: | |
GitHubOIDCArn: | |
Value: !Ref GitHubOIDC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment