-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
49 lines (41 loc) · 1.19 KB
/
variables.tf
File metadata and controls
49 lines (41 loc) · 1.19 KB
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
variable "prefix" {
description = "Prefix for resources names"
type = string
default = "hashicorp"
}
variable "resource_group_location" {
type = string
default = "francecentral"
}
variable "client_secret" {
description = "client_secret of Azure's Service Principal, see https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/guides/service_principal_client_secret#creating-a-service-principal"
type = string
sensitive = true
}
variable "vault_address" {
description = "Existing Vault's cluster public URL"
type = string
}
variable "vault_ns" {
description = "Vault's namespace to use"
type = string
default = "root"
}
variable "vault_token" {
default = "Vault's token for Terraform"
type = string
sensitive = true
}
variable "vault_sync_destination_name" {
description = "Name given to the destination set in Vault Secrets Sync"
type = string
default = "akv"
}
variable "secret_mount_sync" {
description = "Vault's mount of the KV secret to be synced"
type = string
}
variable "secret_name_sync" {
description = "Vault's name of the KV secret to be synced"
type = string
}