You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ module "gke" {
45
45
]
46
46
47
47
node_pools_oauth_scopes = {
48
-
all = []
48
+
all = []
49
49
50
50
default-node-pool = [
51
51
"https://www.googleapis.com/auth/cloud-platform",
@@ -138,6 +138,7 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
138
138
| node\_pools | List of maps containing node pools | list |`<list>`| no |
139
139
| node\_pools\_labels | Map of maps containing node labels by node-pool name | map |`<map>`| no |
140
140
| node\_pools\_metadata | Map of maps containing node metadata by node-pool name | map |`<map>`| no |
141
+
| node\_pools\_oauth\_scopes | Map of lists containing node oauth scopes by node-pool name | map |`<map>`| no |
141
142
| node\_pools\_tags | Map of lists containing node network tags by node-pool name | map |`<map>`| no |
142
143
| node\_pools\_taints | Map of lists containing node taints by node-pool name | map |`<map>`| no |
143
144
| node\_version | The Kubernetes version of the node pools. Defaults kubernetes_version (master) variable and can be overridden for individual node pools by setting the `version` key on them. Must be empyty or set the same as master at cluster creation. | string |`""`| no |
Copy file name to clipboardExpand all lines: modules/private-cluster/README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,14 @@ module "gke" {
49
49
},
50
50
]
51
51
52
+
node_pools_oauth_scopes = {
53
+
all = []
54
+
55
+
default-node-pool = [
56
+
"https://www.googleapis.com/auth/cloud-platform",
57
+
]
58
+
}
59
+
52
60
node_pools_labels = {
53
61
all = {}
54
62
@@ -138,6 +146,7 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
138
146
| node\_pools | List of maps containing node pools | list |`<list>`| no |
139
147
| node\_pools\_labels | Map of maps containing node labels by node-pool name | map |`<map>`| no |
140
148
| node\_pools\_metadata | Map of maps containing node metadata by node-pool name | map |`<map>`| no |
149
+
| node\_pools\_oauth\_scopes | Map of lists containing node oauth scopes by node-pool name | map |`<map>`| no |
141
150
| node\_pools\_tags | Map of lists containing node network tags by node-pool name | map |`<map>`| no |
142
151
| node\_pools\_taints | Map of lists containing node taints by node-pool name | map |`<map>`| no |
143
152
| node\_version | The Kubernetes version of the node pools. Defaults kubernetes_version (master) variable and can be overridden for individual node pools by setting the `version` key on them. Must be empyty or set the same as master at cluster creation. | string |`""`| no |
0 commit comments