-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvariables.tf
More file actions
43 lines (36 loc) · 899 Bytes
/
variables.tf
File metadata and controls
43 lines (36 loc) · 899 Bytes
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
variable "prefix" {
description = "Prefix for all resources"
default = "dev"
}
variable "region" {
description = "NCP region"
default = "KR"
}
variable "zone" {
description = "NCP zone"
default = "KR-1"
}
variable "access_key" {
description = "NCP API Access Key"
type = string
sensitive = true
}
variable "secret_key" {
description = "NCP API Secret Key"
type = string
sensitive = true
}
variable "login_key_name" {
description = "Name of the SSH key pair"
type = string
}
variable "server_image_product_code" {
description = "Server image product code"
type = string
default = "SW.VSVR.OS.LNX64.UBNTU.SVR2004.B050" # Ubuntu 20.04
}
variable "server_product_code" {
description = "Server product code"
type = string
default = "SVR.VSVR.STAND.C002.M008.NET.HDD.B050.G002" # 2vCPU, 8GB RAM
}