forked from outerbounds/terraform-aws-metaflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
41 lines (34 loc) · 1.04 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
variable "active" {
default = false
description = "When true step function infrastructure is provisioned."
type = bool
}
variable "batch_job_queue_arn" {
type = string
description = "Batch job queue arn"
}
variable "iam_partition" {
type = string
default = "aws"
description = "IAM Partition (Select aws-us-gov for AWS GovCloud, otherwise leave as is)"
}
variable "resource_prefix" {
type = string
description = "Prefix given to all AWS resources to differentiate between applications"
}
variable "resource_suffix" {
type = string
description = "Suffix given to all AWS resources to differentiate between environment and workspace"
}
variable "s3_bucket_arn" {
type = string
description = "arn of the metaflow datastore s3 bucket"
}
variable "s3_bucket_kms_arn" {
type = string
description = "arn of the metaflow datastore s3 bucket's kms key"
}
variable "standard_tags" {
type = map(string)
description = "The standard tags to apply to every AWS resource."
}