-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
60 lines (51 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
variable "resource_group_name" {
description = "Name of the resource group."
type = string
default = "terraform"
}
variable "storage_account_name" {
description = "Storage account name. Re-used for the service principal, workspace, etc."
type = string
}
variable "container_name" {
description = "Name for the container used to store tfstate files."
type = string
default = "tfstate"
}
variable "location" {
description = "Azure region to deploy the launchpad in the short form."
type = string
default = ""
}
variable "tags" {
description = "Optional map of key:value tags."
type = map(any)
default = {}
}
variable "terraform_state_aad_group" {
description = "Name of the optional AAD security group for managing Terraform state and key vault secrets."
type = string
default = ""
}
variable "service_principal_name" {
description = "Name for the terraform state service principal. Defaults to the storage account name"
type = string
default = ""
}
variable "service_principal_rbac_assignments" {
description = "Optional list of additional roles and scopes for the service principal."
type = list(object({
role = string,
scope = string
}))
default = []
}
variable "azurerm_version_constraint" {
description = "Specify the azurerm version constraint to be used in the generated azurerm_provider.tf file."
type = string
default = "~> 2.0"
}
variable "key_vault_soft_delete_retention" {
description = "Specify the number of days that a secret should be retained in key vault's soft deletion. (7-90)"
default = 90
}