-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinputs.tf
47 lines (40 loc) · 1.25 KB
/
inputs.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 "storage_account_name" {
type = string
description = "The name of the storage account to use for the Terraform state"
default = null
}
variable "resource_group_name" {
type = string
description = "The name of the resource group to use for the Terraform state"
default = "terraform-state"
}
variable "location" {
type = string
description = "The location to use for the Terraform state"
default = "centralus"
}
variable "container_name" {
type = string
description = "The name of the storage container to use for the Terraform state"
default = "terraform-state"
}
variable "client_id" {
type = string
description = "The client ID to use for authenticating to Azure"
default = null
}
variable "subscription_id" {
type = string
description = "The subscription ID to use for the Terraform state"
default = null
}
variable "tenant_id" {
type = string
description = "The tenant ID to use for the Terraform state"
default = null
}
variable "remove_secrets_from_state" {
type = bool
description = "Whether to sanitize tfstate of access keys automatically created on created resources. Keys remain untouched on created assets."
default = true
}