Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gke/standard/regional/binary-authorization/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

# [START gke_standard_regional_binauthz_enforce]
resource "google_container_cluster" "enforce" {
resource "google_container_cluster" "default" {
name = "gke-standard-regional-binauthz-enforce"
location = "us-west1"
initial_node_count = 1
Expand Down
6 changes: 1 addition & 5 deletions gke/standard/regional/ray/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

# [START gke_standard_regional_ray_operator]
resource "google_container_cluster" "ray-cluster" {
resource "google_container_cluster" "default" {
name = "gke-standard-regional-ray-operator"
location = "us-west1"

Expand All @@ -36,9 +36,5 @@ resource "google_container_cluster" "ray-cluster" {
}
}
}

# Set `deletion_protection` to `true` will ensure that one cannot
# accidentally delete this instance by use of Terraform.
deletion_protection = false
}
# [END gke_standard_regional_ray_operator]