Skip to content
This repository was archived by the owner on Dec 16, 2020. It is now read-only.

Commit c478a7b

Browse files
committed
Update documentation for create_resources
1 parent feb2fb5 commit c478a7b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/k8s-namespace-roles/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ variable "annotations" {
2626
}
2727

2828
variable "create_resources" {
29-
description = "Set to false to have this module create no resources. This weird parameter exists solely because Terraform does not support conditional modules. Therefore, this is a hack to allow you to conditionally decide if the Namespace roles should be created or not."
29+
description = "Set to false to have this module skip creating resources. This weird parameter exists solely because Terraform does not support conditional modules. Therefore, this is a hack to allow you to conditionally decide if the Namespace roles should be created or not."
3030
type = bool
3131
default = true
3232
}

modules/k8s-namespace/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ variable "annotations" {
2626
}
2727

2828
variable "create_resources" {
29-
description = "Set to false to have this module create no resources. This weird parameter exists solely because Terraform does not support conditional modules. Therefore, this is a hack to allow you to conditionally decide if the Namespace should be created or not."
29+
description = "Set to false to have this module skip creating resources. This weird parameter exists solely because Terraform does not support conditional modules. Therefore, this is a hack to allow you to conditionally decide if the Namespace should be created or not."
3030
type = bool
3131
default = true
3232
}

modules/k8s-service-account/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ variable "secrets_for_pods" {
6969
}
7070

7171
variable "create_resources" {
72-
description = "Set to false to have this module create no resources. This weird parameter exists solely because Terraform does not support conditional modules. Therefore, this is a hack to allow you to conditionally decide if the Namespace should be created or not."
72+
description = "Set to false to have this module skip creating resources. This weird parameter exists solely because Terraform does not support conditional modules. Therefore, this is a hack to allow you to conditionally decide if the Namespace should be created or not."
7373
type = bool
7474
default = true
7575
}

0 commit comments

Comments
 (0)