-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf.sample
More file actions
51 lines (42 loc) · 960 Bytes
/
variables.tf.sample
File metadata and controls
51 lines (42 loc) · 960 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
44
45
46
47
48
49
50
51
variable "environment" {
type = string
default = "dev"
}
variable "region" {
type = string
default = "ap-northeast-2"
}
variable "awscli_profile" {
type = string
default = "default"
}
variable "k8s_cluster_version" {
type = string
default = "1.32"
}
variable "container_registry" {
type = string
default = ".dkr.ecr.ap-northeast-2.amazonaws.com"
}
variable "route53_domain" {
type = string
default = "callisto.ddps.cloud"
}
# ap-northeast-2 AL2023 k8s 1.32 ami : ami-00bda0fed08243983
# ap-northeast-2 Bottlerocket k8s 1.32 ami : ami-08265ffabdfd9e267
variable "ami_id" {
type = string
default = "ami-08265ffabdfd9e267"
}
variable "jupyter_api_container_repository" {
type = string
default = "callisto-ddb-jupyter-api"
}
variable "jupyter_api_image_tag" {
type = string
default = "latest"
}
variable "allowed_signup_domain" {
type = string
default = "hanyang.ac.kr,kookmin.ac.kr"
}