-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables-common.tf
68 lines (57 loc) · 1.87 KB
/
variables-common.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
data "aws_caller_identity" "current" {}
data "aws_region" "current" {}
variable "epfl_cidr" {
type = string
default = "128.178.0.0/15"
description = "CIDR of the network range used by EPFL"
sensitive = false
}
variable "bbp_dmz_cidr" {
type = string
default = "192.33.211.0/26"
description = "CIDR of the BBP DMZ, containing bbpproxy, bbpssh bastion host and the proxy for SauceLabs"
sensitive = false
}
variable "bb5_login_nodes_cidr" {
type = string
default = "192.33.194.8/29"
description = "CIDR of the network range used by BB5 Login Nodes (bbpv1, bbpv2)"
sensitive = false
}
variable "bbpssh_cidr" {
type = string
default = "192.33.211.12/32"
description = "CIDR of the network range used by SSH Bastion host (BBP SSH Jumphost)"
sensitive = false
}
variable "sbo_https_test_hostname" {
default = "sbo-https-test.shapes-registry.org"
type = string
description = "The default endpoint for the application load balancer"
sensitive = false
}
### Virtual Lab Manager service ###
variable "virtual_lab_manager_base_path" {
default = "/api/virtual-lab-manager"
type = string
description = "The base path for the virtual lab manager"
sensitive = false
}
variable "virtual_lab_manager_log_group_name" {
default = "virtual_lab_manager"
type = string
description = "The log name within cloudwatch for the virtual lab manager"
sensitive = false
}
variable "virtual_lab_manager_docker_image_url" {
default = "bluebrain/obp-virtual-lab-api:latest"
type = string
description = "docker image for the virtual lab manager"
sensitive = false
}
### Nexus ###
variable "nise_dockerhub_password" {
type = string
description = "Password for the NISE dockerhub access. Set via TF_VAR_nise_dockerhub_password variable."
sensitive = true
}