We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 853b485 commit 6731e82Copy full SHA for 6731e82
integration.tf
@@ -26,4 +26,5 @@ module "firefly_integrate" {
26
client_secret = azuread_service_principal_password.current.value
27
directory_domain = var.directory_domain
28
auto_discover_enabled = var.auto_discover_enabled
29
+ is_prod = var.is_prod
30
}
vars.tf
@@ -94,6 +94,11 @@ variable "auto_discover_enabled" {
94
default = true
95
96
97
+variable "is_prod" {
98
+ type = bool
99
+ default = false
100
+}
101
+
102
variable "client_id" {
103
type = string
104
0 commit comments