-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
68 lines (56 loc) · 1.32 KB
/
variables.tf
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# AWS 계정의 액세스 키 ID
variable "access_key" {
description = "AWS accesskey"
type = string
}
# AWS 계정의 시크릿 액세스 키 ID
variable "secret_key" {
description = "AWS accesskey"
type = string
}
# AWS region
variable "region" {
description = "AWS region"
default = "ap-northeast-2"
}
# 리소스명에 참조될 region의 별명 설정
variable "region_name" {
description = "AWS region name"
default = "apne2"
}
# 리소스명에 참조될 terraform의 별명(서비스명) 설정
variable "terraform_name" {
default = "pennyway"
}
# 리소스명에 참조될 env의 별명 설정
variable "env_name_dev" {
default = "dev"
}
# 네트워크 환경 설정에 사용되는 cidr block 설정
variable "cidr_block" {
type = string
}
# bastion 서버에 접속하기 위해 사용되는 IP 주소
variable "remote_ip" {
type = string
}
# AWS EC2 인스턴스에 SSH 접속을 위해 사용되는 키 쌍
variable "keypair" {
type = string
}
# 구매한 도메인
variable "domain" {
type = string
}
# GitHub Repository에 접근하기 위한 GitHub 계정의 Access Token
variable "github_access_token" {
type = string
}
# DB 접근을 위한 username
variable "db_username" {
type = string
}
# DB 접근을 위한 password
variable "db_password" {
type = string
}