CloudGuardIaaS
CloudGuardIaaS copied to clipboard
support implicit provider
fixes #182
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
]
}
@gbrembati @chkp-romanka @chkp-natanelm @chkp-cgraffe would appreciate if you could take a look 😄
@gbrembati @chkp-romanka @chkp-natanelm @chkp-cgraffe
after fixing the subnetwork_project I am able to apply this in terraform as well! 👏
Hi @jetersen,
Please see @chkp-dmitrygo reply at https://github.com/CheckPointSW/CloudGuardIaaS/issues/182.
Thanks