Created
August 15, 2017 14:46
-
-
Save munazo/7bd48a17f9949fda38f95c3476c682bf to your computer and use it in GitHub Desktop.
8章1節 スタックの作成
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
| aws cloudformation create-stack --stack-name FeedSampleStack \ | |
| --template-url https://s3-ap-northeast-1.amazonaws.com/cf-templates-ajzvzrbywi3f-ap-northeast-1/2017226bWK-FeedSampleStackTemplate1017ntov7v5h \ | |
| --tags Key=Name,Value=FeedSample \ | |
| --parameters ParameterKey=DBName,ParameterValue=FeedSample \ | |
| ParameterKey=DBPassword,ParameterValue=[任意のパスワード] \ | |
| ParameterKey=DBRootPassword,ParameterValue=[任意のパスワード] \ | |
| ParameterKey=DBUser,ParameterValue=admin \ | |
| ParameterKey=InstanceType,ParameterValue=t2.micro \ | |
| ParameterKey=KeyName,ParameterValue=[ご自身のキーペア名] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment