-
Notifications
You must be signed in to change notification settings - Fork 0
/
variable.tf
36 lines (30 loc) · 864 Bytes
/
variable.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
variable "app_registration_name" {
default = ""
type = string
description = "New azure App registration name"
}
variable "app_registration_owners" {
type = string
description = "App registration owners"
default = ""
}
variable "app_registration_description" {
type = string
description = "Description for you app"
default = "Azure App registration created using terraform"
}
variable "app_registration_expiry" {
type = string
description = "App registration secret expiration period"
default = "10"
}
variable "azure_keyvalut_name" {
type = string
description = "Azure Keyvault name to store secrets"
default = "ARCHITECTS-KEYVAULT"
}
variable "azure_keyvalut_rg_name" {
type = string
description = "Azure Keyvault Rg"
default = "ARCHITECTS-KEYVAULT-RG"
}