-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
33 lines (30 loc) · 852 Bytes
/
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
variable "name_tag" {
description = "Value of the Name tag for the EC2 instance"
type = string
default = "CIROH-FIM"
}
variable "project_tag" {
description = "Value of the Project tag for the EC2 instance"
type = string
default = "CIROH-FIM"
}
variable "aws_region" {
description = "The AWS region to deploy resources into"
type = string
default = "us-east-1"
}
variable "aws_account_id" {
description = "The AWS account ID"
type = string
default = ""
}
variable "exp_bucket_name" {
description = "The name of the experimental catalog S3 bucket"
type = string
default = "wpn-exp-cat-test"
}
variable "bucket_users_account_id" {
description = "account id of the NWC AWS account that will be writing data to the bucket"
type = string
default = ""
}