Skip to content

Instantly share code, notes, and snippets.

@SteveHoggNZ
Created November 24, 2016 23:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SteveHoggNZ/4dd6766415bd3f725e6bb6c466611fce to your computer and use it in GitHub Desktop.
Save SteveHoggNZ/4dd6766415bd3f725e6bb6c466611fce to your computer and use it in GitHub Desktop.
AWS / MFA + CLI / CloudFormation / Example / Company Shared Storage
{
"AWSTemplateFormatVersion": "2010-09-09",
"Resources": {
"CompanySharedBucket": {
"Type": "AWS::S3::Bucket",
"Properties": {
"BucketName" : "h4-company-bucket"
}
},
},
"Outputs": {
"CompanySharedBucket": {
"Value": { "Ref": "CompanySharedBucket" },
"Description": "A shared bucket various company departments",
"Export": {
"Name": {"Fn::Sub": "${AWS::StackName}-Bucket" }
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment