-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvariables_integrations.tf
33 lines (28 loc) · 1.31 KB
/
variables_integrations.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
################################
# Snowflake
################################
variable "idp_certificate" {
description = "(Optional) The certificate used to verify SAML assertions from the IdP being used with Snowflake. Enter this value as a one-line string with literal new line characters (\\n) specifying the line breaks."
type = string
default = ""
}
variable "idp_sso_login_url" {
description = "(Optional) The IdP SSO URL for the IdP being used with Snowflake."
type = string
default = ""
}
variable "load_balancer_certificate_arn" {
description = "(Optional) ARN of SSL certificate that will be used for client connections to Snowflake."
type = string
default = ""
}
variable "sidecar_public_idp_certificate" {
description = "(Optional) The public certificate used to verify signatures for SAML Assertions generated by the sidecar. Enter this value as a one-line string with literal new line characters (\n) specifying the line breaks."
type = string
default = ""
}
variable "sidecar_private_idp_key" {
description = "(Optional) The private key used to sign SAML Assertions generated by the sidecar. Enter this value as a one-line string with literal new line characters (\n) specifying the line breaks."
type = string
default = ""
}