Skip to content

Commit a7d5f1a

Browse files
QSE-157: Remove provider vars (fix)
1 parent c8a52b7 commit a7d5f1a

File tree

1 file changed

+1
-24
lines changed
  • modules/kubernetes-config-map

1 file changed

+1
-24
lines changed

modules/kubernetes-config-map/vars.tf

+1-24
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,11 @@
1-
# ---------------------------------------------------------------------------------------------------------------------
2-
# PROVIDER VARIABLES
3-
# ---------------------------------------------------------------------------------------------------------------------
4-
5-
variable "host" {
6-
description = "The Kubernetes cluster's API endpoint URL."
7-
type = string
8-
}
9-
10-
variable "client_certificate" {
11-
description = "The client certificate (in PEM format) used to authenticate to the Kubernetes cluster."
12-
type = string
13-
}
14-
15-
variable "client_key" {
16-
description = "The client private key (in PEM format) used to encrypt communicates with the Kubernetes cluster."
17-
type = string
18-
}
19-
20-
variable "cluster_ca_certificate" {
21-
description = "The cluster's CA certificate (in PEM format) used to validate remote host identity."
22-
type = string
23-
}
24-
251
# ---------------------------------------------------------------------------------------------------------------------
262
# DEPLOYMENT VARIABLES
273
# ---------------------------------------------------------------------------------------------------------------------
284

295
variable "name" {
306
description = "The name of the config map. Must be unique and cannot be updated."
317
type = string
8+
default = "config-map"
329
}
3310

3411
variable "namespace" {

0 commit comments

Comments
 (0)