일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- test
- docker
- minikube mac 설치
- 도커컴포즈
- 테라폼 문법
- Shell
- Bash
- customize
- 테라폼 기본 문법
- DynamoDB
- python
- AWS
- terraform
- 도커
- 파이썬
- BIG-O NOTATION
- iterm2 shortcuts
- linux
- 컨테이너
- docker-compose
- Django
- iterm2 단축키
- terraform 문법
- zsh
- server
- minikube 설치 방법
- sftp란
- 빅오노테이션
- zshrc
- nosql
- Today
- Total
목록terraform (2)
sklass의 s-class 프로그래밍 blog
Terraform 문법은 기본적으로 HCL(Hashicorp Configuration Language) 문법을 따르게 됩니다. 아래의 문법을 한번 확인해 보겠습니다. resource "aws_vpc" "main" { cidr_block = var.base_cidr_block } "" "" { # Block body = # Argument } : resource, data, local, variable, output 등과 같은 블록의 타입이 옵니다. : 0개 혹은 1개 이상의 BLOCK LABEL이 올 수 있고, 위의 경우, 첫번째 BLOCK LABEL은 resource의 종류, 두번째 BLOCK LABEL은 resource의 이름이 옵니다. , : 블록내의 argument값으로 key-value 형식으로..
$ touch ~/.bashrc $ terraform -install-autocomplete Terraform을 설치하는데 있어서 OS별로 설치하는 방법이 다 다릅니다. MacOS를 사용한다면, 아래의 링크로 가서 다운받으면됩니다. https://www.terraform.io/downloads Downloads | Terraform by HashiCorp Terraform is an open-source infrastructure as code software tool that enables you to safely and predictably create, change, and improve infrastructure. www.terraform.io Terraform Auto-Complete zsh이나..