Skip to content

Commit

Permalink
dont point to registry in azure
Browse files Browse the repository at this point in the history
  • Loading branch information
crhuff-ibm committed Jun 4, 2024
1 parent f1b0bdc commit 3302a7f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions examples/satellite-azure/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
# Create satellite ROKS cluster
###################################################################
module "satellite-cluster" {
source = "terraform-ibm-modules/satellite/ibm//modules/cluster"
//source = "terraform-ibm-modules/satellite/ibm//modules/cluster"

source = "../../modules/cluster"

depends_on = [module.satellite-host]
create_cluster = var.create_cluster
Expand All @@ -29,7 +31,9 @@ module "satellite-cluster" {
# Create worker pool on existing ROKS cluster
###################################################################
module "satellite-cluster-worker-pool" {
source = "terraform-ibm-modules/satellite/ibm//modules/configure-cluster-worker-pool"
//source = "terraform-ibm-modules/satellite/ibm//modules/cluster"

source = "../../modules/configure-cluster-worker-pool"

depends_on = [module.satellite-cluster]
create_cluster_worker_pool = var.create_cluster_worker_pool
Expand Down

0 comments on commit 3302a7f

Please sign in to comment.