Skip to content

Commit

Permalink
Merge pull request #10 from instruqt/dont-use-default-service-account
Browse files Browse the repository at this point in the history
Disable default service account
  • Loading branch information
hazarguney authored Nov 18, 2024
2 parents eda2639 + 9cb86a6 commit 19d5c50
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions k3s.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ source "googlecompute" "k3s" {
image_family = regex_replace("k3s-${regex_replace(var.k3s_version, "\\+.*$", "")}", "[^a-zA-Z0-9_-]", "-")
image_name = regex_replace("k3s-${var.k3s_version}-${uuidv4()}", "[^a-zA-Z0-9_-]", "-")

source_image_family = "ubuntu-2204-lts"
machine_type = "n1-standard-4"
disk_size = 20
source_image_family = "ubuntu-2204-lts"
machine_type = "n1-standard-4"
disk_size = 20
disable_default_service_account = true

ssh_username = "root"
}
Expand Down

0 comments on commit 19d5c50

Please sign in to comment.