-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
47 lines (39 loc) · 1.49 KB
/
variables.tf
File metadata and controls
47 lines (39 loc) · 1.49 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
variable "aws_profile" {
description = "The name of the AWS profile whose credentials you'll use with Terraform."
type = string
}
variable "aws_region" {
description = "The name of the AWS region where your AMI Connect infrastructure will live."
type = string
default = "us-west-2"
}
variable "airflow_db_password" {
description = "The password for the Airflow metastore database."
type = string
sensitive = true
}
variable "airflow_hostname" {
description = "The host name you'd like for your Airflow website. This should already be a Route 53 instance. Ex: cadc-ami-connect.com"
type = string
}
variable "ami_connect_airflow_server_instance_size" {
description = "EC2 instance size for the server that runs Airflow and our DAG tasks."
type = string
}
variable "ami_connect_s3_bucket_name" {
description = "Name for S3 bucket used for intermediate task outputs. Must be a globally unique name, so include your org name, e.g. my-company-ami-connect-bucket."
type = string
}
variable "ami_connect_canaries_s3_bucket_name" {
description = "Name for S3 bucket used for CloudWatch canaries, e.g. for site down alerting."
type = string
}
variable "ami_connect_tag" {
description = "AWS tag used on all resources for this project."
type = string
default = "ami-connect"
}
variable "alert_emails" {
description = "List of emails to subscribe to the Airflow SNS topic for Aiflow alerts"
type = list(string)
}