CloudGuardIaaS icon indicating copy to clipboard operation
CloudGuardIaaS copied to clipboard

support implicit provider

Open jetersen opened this issue 3 years ago • 3 comments

fixes #182

jetersen avatar Aug 19 '22 18:08 jetersen

Tested locally and it works the same but now allows implicit provider

Tested using

modules/checkpoint/main.tf

module "checkpointsw-cloudguardiaas" {
  # https://github.com/jetersen/CloudGuardIaaS/commits/fix/implicitProvider
  source = "github.com/jetersen/CloudGuardIaaS//terraform/gcp/high-availability?ref=fix%2FimplicitProvider"
}

modules/region-hub-infra/main.tf

module "checkpoint" {
  source             = "./../checkpoint"
  project_id         = var.project_id
  region             = var.region
  zoneA              = "${var.region}-a"
  zoneB              = "${var.region}-b"
  prefix             = local.prefix
  vpcs               = module.vpcs.vpcsList
  depends_on = [
    module.vpcs
  ]
}

jetersen avatar Aug 19 '22 20:08 jetersen

@gbrembati @chkp-romanka @chkp-natanelm @chkp-cgraffe would appreciate if you could take a look 😄

jetersen avatar Aug 22 '22 12:08 jetersen

@gbrembati @chkp-romanka @chkp-natanelm @chkp-cgraffe

after fixing the subnetwork_project I am able to apply this in terraform as well! 👏

jetersen avatar Aug 24 '22 10:08 jetersen

Hi @jetersen,

Please see @chkp-dmitrygo reply at https://github.com/CheckPointSW/CloudGuardIaaS/issues/182.

Thanks

chkp-natanelm avatar Apr 16 '23 14:04 chkp-natanelm