mirror of https://github.com/kubernetes/kops.git
terraform fix
This commit is contained in:
parent
1a6b768b15
commit
2872029e12
|
@ -545,15 +545,17 @@ resource "google_project_iam_binding" "serviceaccount-nodes" {
|
|||
}
|
||||
|
||||
resource "google_service_account" "control-plane" {
|
||||
account_id = "control-plane-minimal-g-fu1mg6"
|
||||
description = "kubernetes control-plane instances"
|
||||
project = "testproject"
|
||||
account_id = "control-plane-minimal-g-fu1mg6"
|
||||
description = "kubernetes control-plane instances"
|
||||
display_name = "control-plane"
|
||||
project = "testproject"
|
||||
}
|
||||
|
||||
resource "google_service_account" "node" {
|
||||
account_id = "node-minimal-gce-example-com"
|
||||
description = "kubernetes worker nodes"
|
||||
project = "testproject"
|
||||
account_id = "node-minimal-gce-example-com"
|
||||
description = "kubernetes worker nodes"
|
||||
display_name = "node"
|
||||
project = "testproject"
|
||||
}
|
||||
|
||||
terraform {
|
||||
|
|
Loading…
Reference in New Issue