-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathterraform.tfvars
32 lines (27 loc) · 1009 Bytes
/
terraform.tfvars
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
#* General Variables
prefix = ""
registry_name = ""
image_name = "juice-shop"
image_version = "v1"
subnet_cidr = "10.0.1.0/24"
vnet_cidr = "10.0.0.0/16"
service_cidr = "10.1.0.0/16"
dns_service_ip = "10.1.0.10"
docker_bridge_cidr = "172.17.0.1/16"
#* GCP Variables
gcp_project_id = ""
gcp_region = "europe-west1"
gcp_zone = "europe-west1-a"
#* Azure Variables
azure_subscription_id = "SUBSCRIPTION_ID"
azure_client_id = "CLIENT_ID"
azure_client_secret = "CLIENT_SECRET"
azure_tenant_id = "TENANT_ID"
azure_region = "westeurope"
#* K8s Variables
azure_kubeconfig = "~/.kube/azure_aks_config"
azure_juice_shop_manifest = "Modules/manifests/azure/juice-shop.yaml"
azure_pygoat_manifest = "Modules/manifests/azure/pygoat.yaml"
gcp_kubeconfig = "~/.kube/gcp_gke_config"
gcp_juice_shop_manifest = "Modules/manifests/gcp/juice-shop.yaml"
gcp_pygoat_manifest = "Modules/manifests/gcp/pygoat.yaml"