-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
87 lines (72 loc) · 1.32 KB
/
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
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
# Required variables
variable "subnet_tagname" {
description = "Private subnet tagname to use for MWAA"
}
variable "vpc_id" {
description = "Account VPC to use"
}
variable "prefix" {
description = "Deployment prefix"
}
variable "iam_policy_permissions_boundary_name" {
description = "Permission boundaries"
default = null
}
variable "assume_role_arns" {
type = list(string)
description = "Assume role ARNs (MCP)"
}
# Optional variables
variable "aws_profile" {
description = "AWS profile"
default = null
}
variable "aws_region" {
default = "us-west-2"
}
variable "stage" {
default = "dev"
}
variable "cognito_app_secret" {
type = string
}
variable "workflows_client_secret" {
type = string
}
variable "stac_ingestor_api_url" {
type = string
}
variable "min_workers" {
type = map(number)
default = {
dev = 2
staging = 3
production = 3
}
}
variable "vector_secret_name" {
type = string
}
variable "vector_security_group" {
type = string
}
variable "vector_vpc" {
type = string
default = "null"
}
variable "data_access_role_arn" {
type = string
}
variable "raster_url" {
type = string
}
variable "stac_url" {
type = string
}
variable "workflow_root_path" {
type = string
default = "/api/workflows"
}
variable "cloudfront_id" {
type = string
}