-
Notifications
You must be signed in to change notification settings - Fork 0
/
params.tf
109 lines (93 loc) · 2.27 KB
/
params.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
variable "env" {
description = "Environment value (e.g. dev, test, prod)"
type = string
}
variable "service_name" {
type = string
}
variable "org" {
description = "Organization code (e.g. org1, org2)"
type = string
}
variable "availability_zone" {
description = "Availability zone (e.g. us-east-1a)"
type = string
}
variable "blueprint_id" {
description = "Blueprint ID (e.g. ubuntu_18_04)"
type = string
}
variable "bundle_id" {
description = "Bundle ID (e.g. nano_2_0, micro_2_0, medium_2_0, large_2_0)"
type = string
}
variable "aws_access_key_id" {
description = "AWS access key ID"
type = string
}
variable "aws_secret_access_key" {
description = "AWS secret access key"
type = string
}
variable "region" {
description = "AWS region (e.g. us-east-1)"
type = string
}
variable "domain_root" {
description = "Domain root (e.g. myapp.com without any leading prefix)"
type = string
}
variable "s3_bucket_name" {
description = "Name of S3 bucket containing 'letsencrypt/domain_root.com' folder"
type = string
}
variable "static_ip_name" {
description = "Name of AWS lightsail static IP address"
type = string
}
variable "pre_service_start_script" {
description = "Script to run before `docker-compose up`"
type = string
}
variable "keycloak_version" {
description = "Keycloak version"
type = string
}
variable "keycloak_admin_password" {
description = "Password for Keycloak admin user"
type = string
}
variable "iam_role" {
description = "IAM role for Keycloak"
type = string
}
variable "lets_encrypt_contact_email_address" {
description = "Email address for Let's Encrypt contact"
type = string
}
# Keycloak db config
variable "db_address" {
description = "Database address"
type = string
}
variable "db_port" {
description = "Database port"
type = string
}
variable "db_username" {
description = "Database username"
type = string
}
variable "db_password" {
description = "Database password"
type = string
}
variable "db_url" {
description = "Database URL"
type = string
}
variable "db_type" {
description = "Database type"
type = string
default = "postgres"
}