반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 연결리스트 정렬
- KMP알고리즘
- Queue
- 수학
- 유클리드 호제법
- 별 찍기
- LeetCode 83번
- LeetCode 83 c언어
- 해시를 사용한 집합과 맵
- 큰 수 연산
- 다이나믹 프로그래밍
- 구현
- 시뮬레이션
- 문자열제곱
- 문자열
- 사칙연산
- 재귀
- 자료 구조
- 임의 정밀도 / 큰 수 연산
- 스택
- 조합론
- 브루트포스 알고리즘
- 정수론
- LeetCode Remove Duplicates from Sorted List in c
- 이분 탐색
- 큐
- 프로그래머스
- 실패함수
- 정렬
- 연결리스트 중복제거
Archives
- Today
- Total
hahn
[Terraform] 실행 준비, 적용, 삭제 본문
728x90
반응형
terraform init
provider "aws" {
region = "ap-northeast-2"
}
resource "aws_security_group" "example" {
vpc_id = ""
name = "example-security-group"
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}
resource "aws_instance" "example" {
ami = "ami-062cf18d655c0b1e8"
instance_type = "t2.micro"
subnet_id = ""
vpc_security_group_ids = [aws_security_group.example.id]
associate_public_ip_address = true
}
terraform plan
terraform apply
terraform destroy
728x90
반응형
'클라우드 > Terraform' 카테고리의 다른 글
[Terraform] 참조 (0) | 2024.08.06 |
---|---|
[Terraform] helloworld 파일 생성 (0) | 2024.08.06 |
[Terraform] Install on Windows 10 (0) | 2024.08.05 |
[Terraform] Expression Type (0) | 2024.08.05 |
[Terraform]HCL 언어구조 (0) | 2024.08.05 |