-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
39 lines (33 loc) · 1.08 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
variable "policy_name" {
type = string
description = "The name of the policy to create."
}
variable "policy_description" {
type = string
description = "The description of the policy to create."
}
variable "allow_account_management" {
type = string
default = "yes"
description = "Whether the policy should allow modification of account settings. Defaults to 'yes'."
}
variable "allow_payment_method_management" {
type = string
default = "yes"
description = "Whether the policy should allow modification of payment methods. Defaults to 'yes'."
}
variable "allow_billing_management" {
type = string
default = "yes"
description = "Whether the policy should allow modification of billing settings. Defaults to 'yes'."
}
variable "allow_budget_management" {
type = string
default = "yes"
description = "Whether the policy should allow modification of budgets. Defaults to 'yes'."
}
variable "allow_cost_and_usage_report_management" {
type = string
default = "yes"
description = "Whether the policy should allow modification of cost and usage reports. Defaults to 'yes'."
}