Skip to content

Commit

Permalink
chore: update example module sources and versions (#2116)
Browse files Browse the repository at this point in the history
  • Loading branch information
wyardley authored Sep 25, 2024
1 parent 6db1e00 commit 51ed882
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion examples/autopilot_private_firewalls/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ provider "kubernetes" {
}

module "gke" {
source = "../../modules/beta-autopilot-private-cluster/"
source = "terraform-google-modules/kubernetes-engine/google//modules/beta-autopilot-private-cluster"
version = "~> 33.0"

project_id = var.project_id
name = "${local.cluster_type}-cluster"
regional = true
Expand Down
3 changes: 2 additions & 1 deletion examples/simple_fleet_app_operator_permissions/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ resource "google_gke_hub_scope" "scope" {

# Grant permissions to the app operator to work with the Fleet Scope.
module "permissions" {
source = "../../modules/fleet-app-operator-permissions"
source = "terraform-google-modules/kubernetes-engine/google//modules/fleet-app-operator-permissions"
version = "~> 33.0"

fleet_project_id = var.fleet_project_id
scope_id = google_gke_hub_scope.scope.scope_id
Expand Down

0 comments on commit 51ed882

Please sign in to comment.