반응형
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알고리즘
- 문자열
- 실패함수
- 유클리드 호제법
- 사칙연산
- 별 찍기
- 큐
- 시뮬레이션
- 스택
- LeetCode Remove Duplicates from Sorted List in c
- 구현
- 문자열제곱
- 연결리스트 중복제거
- 정수론
- 수학
- Queue
- 임의 정밀도 / 큰 수 연산
- 정렬
- 재귀
- LeetCode 83 c언어
- 해시를 사용한 집합과 맵
- 연결리스트 정렬
- LeetCode 83번
Archives
- Today
- Total
hahn
[Terraform] helloworld 파일 생성 본문
728x90
반응형
terraform {
required_providers {
local = {
source = "hashicorp/local"
version = "2.5.1"
}
}
required_version = ">= 1.4"
}
resource "local_file" "test" {
content = "helloworld"
filename = "helloworld.txt"
}
resource "local_file" "test1" {
content = "test"
filename = "test.txt"
}
required_providers : Terraform이 사용할 공급자
resource "local_file" "test" { : 리소스를 정의
test는 리소스의 이름으로 local_file의 구분자
local_file은 공급자에 의해 제공되는 리소스 유형으로 예약된 식별자
local_file | Resources | hashicorp/local | Terraform | Terraform Registry
728x90
반응형
'클라우드 > Terraform' 카테고리의 다른 글
[Terraform] AWS provider 생성 (0) | 2024.08.06 |
---|---|
[Terraform] 참조 (0) | 2024.08.06 |
[Terraform] 실행 준비, 적용, 삭제 (0) | 2024.08.05 |
[Terraform] Install on Windows 10 (0) | 2024.08.05 |
[Terraform] Expression Type (0) | 2024.08.05 |