docs: Update security group additional rules description for sourcing created security groups (#1860)

Co-authored-by: Anton Babenko <anton@antonbabenko.com>
This commit is contained in:
Janosch Maier
2022-02-09 13:54:38 +01:00
committed by GitHub
parent d0e831b535
commit 6a30b73fe4
2 changed files with 4 additions and 4 deletions

View File

@@ -164,7 +164,7 @@ variable "cluster_security_group_description" {
}
variable "cluster_security_group_additional_rules" {
description = "List of additional security group rules to add to the cluster security group created"
description = "List of additional security group rules to add to the cluster security group created. Set `source_node_security_group = true` inside rules to set the `node_security_group` as source"
type = any
default = {}
}
@@ -220,7 +220,7 @@ variable "node_security_group_description" {
}
variable "node_security_group_additional_rules" {
description = "List of additional security group rules to add to the node security group created"
description = "List of additional security group rules to add to the node security group created. Set `source_cluster_security_group = true` inside rules to set the `cluster_security_group` as source"
type = any
default = {}
}