Skip to content

Commit c105646

Browse files
authored
Merge pull request #82 from emalloy/feature/docfix/clarify_var_desc
clarify the descriptions of vars ip_range_pods and ip_range_services
2 parents c8369b8 + fd21f65 commit c105646

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ Then perform the following commands on the root folder:
101101
| http\_load\_balancing | Enable httpload balancer addon | string | `"true"` | no |
102102
| ip\_masq\_link\_local | Whether to masquerade traffic to the link-local prefix (169.254.0.0/16). | string | `"false"` | no |
103103
| ip\_masq\_resync\_interval | The interval at which the agent attempts to sync its ConfigMap file from the disk. | string | `"60s"` | no |
104-
| ip\_range\_pods | The secondary ip range to use for pods | string | n/a | yes |
105-
| ip\_range\_services | The secondary ip range to use for pods | string | n/a | yes |
104+
| ip\_range\_pods | The _name_ of the secondary subnet ip range to use for pods | string | - | yes |
105+
| ip\_range\_services | The _name_ of the secondary subnet ip range to use for services | string | - | yes |
106106
| kubernetes\_dashboard | Enable kubernetes dashboard addon | string | `"false"` | no |
107107
| kubernetes\_version | The Kubernetes version of the masters. If set to 'latest' it will pull latest available version in the selected region. | string | `"latest"` | no |
108108
| logging\_service | The logging service that the cluster should write logs to. Available options include logging.googleapis.com, logging.googleapis.com/kubernetes (beta), and none | string | `"logging.googleapis.com"` | no |

autogen/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,11 @@ variable "maintenance_start_time" {
112112
}
113113

114114
variable "ip_range_pods" {
115-
description = "The secondary ip range to use for pods"
115+
description = "The _name_ of the secondary subnet ip range to use for pods"
116116
}
117117

118118
variable "ip_range_services" {
119-
description = "The secondary ip range to use for pods"
119+
description = "The _name_ of the secondary subnet range to use for services"
120120
}
121121

122122
variable "remove_default_node_pool" {

modules/private-cluster/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,11 @@ variable "maintenance_start_time" {
112112
}
113113

114114
variable "ip_range_pods" {
115-
description = "The secondary ip range to use for pods"
115+
description = "The _name_ of the secondary subnet ip range to use for pods"
116116
}
117117

118118
variable "ip_range_services" {
119-
description = "The secondary ip range to use for pods"
119+
description = "The _name_ of the secondary subnet ip range to use for services"
120120
}
121121

122122
variable "remove_default_node_pool" {

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,11 @@ variable "maintenance_start_time" {
112112
}
113113

114114
variable "ip_range_pods" {
115-
description = "The secondary ip range to use for pods"
115+
description = "The _name_ of the secondary subnet ip range to use for pods"
116116
}
117117

118118
variable "ip_range_services" {
119-
description = "The secondary ip range to use for pods"
119+
description = "The _name_ of the secondary subnet ip range to use for services"
120120
}
121121

122122
variable "remove_default_node_pool" {

0 commit comments

Comments
 (0)