Skip to main content

22A. CloudFormation ํ…œํ”Œ๋ฆฟ ๊ธฐ๋ณธ ๊ตฌ์กฐ

2014๋…„ 9์›” 30์ผLess than 1 minuteAWScrashcoursepyrasisawsamazon-web-services

22A. CloudFormation ํ…œํ”Œ๋ฆฟ ๊ธฐ๋ณธ ๊ตฌ์กฐ ๊ด€๋ จ

๋ชฉ์ฐจ

์•„๋งˆ์กด ์›น ์„œ๋น„์Šค๋ฅผ ๋‹ค๋ฃจ๋Š” ๊ธฐ์ˆ 

22์žฅ - 1. CloudFormation ํ…œํ”Œ๋ฆฟ ๊ธฐ๋ณธ ๊ตฌ์กฐ

์•„๋งˆ์กด ์›น ์„œ๋น„์Šค๋ฅผ ๋‹ค๋ฃจ๋Š” ๊ธฐ์ˆ 

์•ž์„œ ์„ค๋ช…ํ•œ๋Œ€๋กœ CloudFormation ํ…œํ”Œ๋ฆฟ์€ JSON ํ˜•ํƒœ๋กœ ์ž‘์„ฑํ•ฉ๋‹ˆ๋‹ค. ๋‹ค์Œ์€ CloudFormation ํ…œํ”Œ๋ฆฟ์˜ ๊ฐ€์žฅ ๊ธฐ๋ณธ์ ์ธ ํ˜•ํƒœ์ž…๋‹ˆ๋‹ค.

CloudFormation ๊ธฐ๋ณธ ํ…œํ”Œ๋ฆฟ

{
  "Description" : "A text description for the template usage",
  "Parameters": {
    // A set of inputs used to customize the template per deployment
  },
  "Resources" : {
    // The set of AWS resources and relationships between them
  },
  "Outputs" : {
    // A set of values to be made visible to the stack creator
  },
  "AWSTemplateFormatVersion" : "2010-09-09"
}