-
Notifications
You must be signed in to change notification settings - Fork 513
Expand file tree
/
Copy pathdeprecated_variables.tf
More file actions
31 lines (26 loc) · 1009 Bytes
/
deprecated_variables.tf
File metadata and controls
31 lines (26 loc) · 1009 Bytes
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
# tflint-ignore-file: terraform_standard_module_structure
variable "agents_taints" {
type = list(string)
default = null
description = "DEPRECATED, (Optional) A list of the taints added to new nodes during node pool create and scale. Changing this forces a new resource to be created."
}
variable "api_server_subnet_id" {
type = string
default = null
description = "DEPRECATED, (Optional) The ID of the Subnet where the API server endpoint is delegated to."
}
variable "rbac_aad_client_app_id" {
type = string
default = null
description = "DEPRECATED, The Client ID of an Azure Active Directory Application."
}
variable "rbac_aad_server_app_id" {
type = string
default = null
description = "DEPRECATED, The Server ID of an Azure Active Directory Application."
}
variable "rbac_aad_server_app_secret" {
type = string
default = null
description = "DEPRECATED, The Server Secret of an Azure Active Directory Application."
}