Skip to content

Commit

Permalink
restore aws access key
Browse files Browse the repository at this point in the history
  • Loading branch information
Łukasz Paczos committed Apr 26, 2021
1 parent a8fdce3 commit d038dbe
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions cloudformation/ci.template
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
{
"AWSTemplateFormatVersion" : "2010-09-09",
"Outputs": {
"AccessKeyId": {
"Value": { "Ref": "AccessKey" }
},
"SecretAccessKey": {
"Value": { "Fn::GetAtt": ["AccessKey", "SecretAccessKey"] }
}
},
"Resources": {
"AccessKey": {
"Type": "AWS::IAM::AccessKey",
"Properties": {
"UserName": { "Ref": "User" }
}
},
"User": {
"Type": "AWS::IAM::User",
"Properties": {
Expand Down

0 comments on commit d038dbe

Please sign in to comment.