-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
47 lines (39 loc) · 1.27 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
variable "region" {
type = string
default = "us-east-1"
}
variable "aws_master_billing_account" {
type = number
description = "AWS account number where billing is consolidated."
}
variable "customer_name_slug" {
type = string
description = "A short, lower-case slug that identifies your company, e.g. 'acme-corp'. Duckbill Group will need to know this value, so that we can set up our own infrastructure for you."
}
variable "external_id" {
type = string
description = "Customer Specific External ID string"
}
variable "cur_bucket_name" {
type = string
description = "Name of the S3 bucket in which you are storing Cost and Usage Reports."
}
variable "cur_bucket_name_create" {
type = bool
description = "Set this true when calling the module if you desire bucket to be created"
default = false
}
variable "duckbillgroup_cur_report_name" {
type = string
description = "Name of AWS Cost and Usage report"
default = "SpendReport_Athena"
}
variable "duckbillgroup_cur_report_create" {
type = bool
description = "Set this true when calling the module if you desire report to be created"
default = false
}
variable "duckbillgroup_aws_account" {
type = number
default = "753095100886"
}