generated from libre-devops/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
21 lines (21 loc) · 1.11 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
variable "search_services" {
description = "The search services to make"
type = list(object({
name = string
rg_name = string
location = optional(string, "uksouth")
tags = map(string)
sku = string
allowed_ips = optional(list(string))
authentication_failure_mode = optional(string, "http403")
customer_managed_key_enforcement_enabled = optional(bool)
hosting_mode = optional(string, "default")
identity_ids = optional(list(string))
identity_type = optional(string)
local_authentication_enabled = optional(bool)
partition_count = optional(number)
public_network_access_enabled = optional(bool)
replica_count = optional(number)
semantic_search_sku = optional(string)
}))
}