-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
74 lines (61 loc) · 1.55 KB
/
variables.tf
File metadata and controls
74 lines (61 loc) · 1.55 KB
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
variable "main_zone_id" {
type = string
description = "main zone id for apigateway domain"
default = null
}
variable "unique_name" {
type = string
description = "A unique name for this application (e.g. org-team-name)"
}
variable "subdomain_name" {
type = string
description = "A unique name for subdomain (e.g. org-team-name)"
}
variable "tags" {
type = map(string)
default = {}
description = "AWS Tags common to all the resources created"
}
variable "vpc_id" {
type = string
description = "AWS VPC to deploy this"
}
variable "integration_uri" {
type = string
description = "What this proxy integrate to (e.g. load_balancer_listener_arn)"
}
variable "service_subnet_ids" {
type = list(string)
description = "List of subnets where the service will be deployed"
}
variable "oauth2_client_id" {
type = string
description = "oauth2 client id"
}
variable "oauth2_audience" {
type = string
description = "oauth2 audience"
}
variable "oauth2_issuer" {
type = string
description = "oauth2 issuer"
}
variable "oauth2_scope" {
type = string
description = "oauth2 scope"
}
variable "oauth2_authorization_endpoint" {
type = string
description = "authorization endpoint"
default = null
}
variable "oauth2_token_endpoint" {
type = string
description = "token endpoint"
default = null
}
variable "service_log_retention_in_days" {
type = number
description = "cloudwatch log retention in days"
default = 7
}