Skip to content

Commit a2ec548

Browse files
authored
chore: example node_pools_oauth_scopes usage (#1362)
1 parent a6dce1a commit a2ec548

File tree

8 files changed

+24
-32
lines changed

8 files changed

+24
-32
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,9 @@ module "gke" {
7070
]
7171
7272
node_pools_oauth_scopes = {
73-
all = []
74-
75-
default-node-pool = [
76-
"https://www.googleapis.com/auth/cloud-platform",
73+
all = [
74+
"https://www.googleapis.com/auth/logging.write",
75+
"https://www.googleapis.com/auth/monitoring",
7776
]
7877
}
7978

autogen/main/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,9 @@ module "gke" {
119119
]
120120
121121
node_pools_oauth_scopes = {
122-
all = []
123-
124-
default-node-pool = [
125-
"https://www.googleapis.com/auth/cloud-platform",
122+
all = [
123+
"https://www.googleapis.com/auth/logging.write",
124+
"https://www.googleapis.com/auth/monitoring",
126125
]
127126
}
128127

modules/beta-private-cluster-update-variant/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,9 @@ module "gke" {
102102
]
103103
104104
node_pools_oauth_scopes = {
105-
all = []
106-
107-
default-node-pool = [
108-
"https://www.googleapis.com/auth/cloud-platform",
105+
all = [
106+
"https://www.googleapis.com/auth/logging.write",
107+
"https://www.googleapis.com/auth/monitoring",
109108
]
110109
}
111110

modules/beta-private-cluster/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,9 @@ module "gke" {
8080
]
8181
8282
node_pools_oauth_scopes = {
83-
all = []
84-
85-
default-node-pool = [
86-
"https://www.googleapis.com/auth/cloud-platform",
83+
all = [
84+
"https://www.googleapis.com/auth/logging.write",
85+
"https://www.googleapis.com/auth/monitoring",
8786
]
8887
}
8988

modules/beta-public-cluster-update-variant/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,9 @@ module "gke" {
9696
]
9797
9898
node_pools_oauth_scopes = {
99-
all = []
100-
101-
default-node-pool = [
102-
"https://www.googleapis.com/auth/cloud-platform",
99+
all = [
100+
"https://www.googleapis.com/auth/logging.write",
101+
"https://www.googleapis.com/auth/monitoring",
103102
]
104103
}
105104

modules/beta-public-cluster/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,9 @@ module "gke" {
7474
]
7575
7676
node_pools_oauth_scopes = {
77-
all = []
78-
79-
default-node-pool = [
80-
"https://www.googleapis.com/auth/cloud-platform",
77+
all = [
78+
"https://www.googleapis.com/auth/logging.write",
79+
"https://www.googleapis.com/auth/monitoring",
8180
]
8281
}
8382

modules/private-cluster-update-variant/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,9 @@ module "gke" {
9898
]
9999
100100
node_pools_oauth_scopes = {
101-
all = []
102-
103-
default-node-pool = [
104-
"https://www.googleapis.com/auth/cloud-platform",
101+
all = [
102+
"https://www.googleapis.com/auth/logging.write",
103+
"https://www.googleapis.com/auth/monitoring",
105104
]
106105
}
107106

modules/private-cluster/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,9 @@ module "gke" {
7676
]
7777
7878
node_pools_oauth_scopes = {
79-
all = []
80-
81-
default-node-pool = [
82-
"https://www.googleapis.com/auth/cloud-platform",
79+
all = [
80+
"https://www.googleapis.com/auth/logging.write",
81+
"https://www.googleapis.com/auth/monitoring",
8382
]
8483
}
8584

0 commit comments

Comments
 (0)