-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathglobal-variables.tf
48 lines (39 loc) · 1.19 KB
/
global-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
# ----------------------------------------------------------------------------------------------------------------------
# Very frequently they deprecate older images, and we need to change this
# terraform is configured to not recreate images if this variable changes
# ----------------------------------------------------------------------------------------------------------------------
variable "image_ubuntu_22" {
default = "71d80b79-f366-4a4b-97f9-b00e51d5a82e"
}
variable "ssh_key_file_v2" {
description = "SSH key used to provision VMs"
default = "../conf/provisioning/ssh/terraform-api.key"
}
variable "ansible_repo" {
default = "[email protected]:openmrs/openmrs-contrib-itsmresources.git"
}
variable "ssh_username_ubuntu_20" {
default = "ubuntu"
}
variable "project_name" {
description = "Project name in Jetstream"
default = "TG-ASC170002"
}
variable "domain_dns" {
description = "DNS domains ID"
default = {
"openmrs.org" = "4712658"
"openmrs.net" = "4714812"
"openmrs.com" = "4714813"
"om.rs" = "4714810"
}
}
variable "main_domain_dns" {
default = "openmrs.org"
}
variable "dme_apikey" {
default = ""
}
variable "dme_secretkey" {
default = ""
}