damondouglas commented on a change in pull request #16549:
URL: https://github.com/apache/beam/pull/16549#discussion_r808513103
##########
File path: playground/terraform/infrastructure/gke/main.tf
##########
@@ -18,28 +17,24 @@
# under the License.
#
-terraform {
- backend "gcs" {
- bucket = "playground_terraform"
- }
-}
+
resource "google_container_cluster" "playground-gke" {
- name = "playground-examples"
- project = "${var.project_id}"
- location = "us-central1-a"
- initial_node_count = "${var.node_count}"
+ name = var.gke_name
+ project = var.project_id
+ location = var.gke_location
+ initial_node_count = var.gke_node_count
node_config {
- machine_type = "${var.machine_type}"
- service_account = "${var.service_account}"
+ machine_type = var.gke_machine_type
+ service_account = var.service_account
- oauth_scopes = [
+ oauth_scopes = [
"https://www.googleapis.com/auth/cloud-platform"
]
- labels = {
- component = "beam-playground"
+ labels = {
+ component = "beam-playground"
}
- tags = ["beam-playground"]
+ tags = ["beam-playground"]
Review comment:
I now see this PR: https://github.com/apache/beam/pull/16823 that may
address this.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]