일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- crawling
- EC2
- 자동화
- zabbix
- ELK
- ubuntu
- module
- 5.0
- API
- airflow
- powershell
- apt
- 8.0
- MySQL
- tcp
- Automation
- 크롤링
- Selenium
- 시스템자동화
- DB
- elasticsearch
- 데이터 분석
- kibana
- python
- ansible
- Linux
- GCP
- AWS
- GIT
- EKS
Archives
- Today
- Total
목록public cloud (1)
Oops - IT
Terraform Variables
variables.tf Terraform의 변수는 variables.tf를 통해 선언하고 사용한다. 변수 형태는 여러 가지 종류가 있으므로 변수 선언 방식에 대해서 알아보자 ## 기본 변수 variable "project" { type = string } ## 배열 형태 변수 variable "region" { type = list(string) default = ["asia-northeast1", "asia-northeast2", "asia-northeast3"] } ## Object 형태 변수 variable "vpc" { type = object({ vpc_name = string ip_cidr_ragne = string network = string }) } ## Object 형태 변수 - 배열 ..
GCP
2023. 3. 14. 22:13