Skip to content

Commit

Permalink
Update Azurerm provider constraint and CDP module versions to 0.8.1 (#44
Browse files Browse the repository at this point in the history
)

Signed-off-by: Jim Enright <[email protected]>
  • Loading branch information
jimright authored Sep 30, 2024
1 parent ce2bd0d commit 26b59c3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ provider "aws" {
}

module "cdp_aws_prereqs" {
source = "git::https://github.com/cloudera-labs/terraform-cdp-modules.git//modules/terraform-cdp-aws-pre-reqs?ref=v0.8.0"
source = "git::https://github.com/cloudera-labs/terraform-cdp-modules.git//modules/terraform-cdp-aws-pre-reqs?ref=v0.8.1"

env_prefix = var.env_prefix
aws_region = var.aws_region
Expand Down Expand Up @@ -90,7 +90,7 @@ module "cdp_aws_prereqs" {
}

module "cdp_deploy" {
source = "git::https://github.com/cloudera-labs/terraform-cdp-modules.git//modules/terraform-cdp-deploy?ref=v0.8.0"
source = "git::https://github.com/cloudera-labs/terraform-cdp-modules.git//modules/terraform-cdp-deploy?ref=v0.8.1"

env_prefix = var.env_prefix
infra_type = "aws"
Expand Down
7 changes: 3 additions & 4 deletions azure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ terraform {
}
azurerm = {
source = "hashicorp/azurerm"
version = "3.84.0"
version = ">= 4.0.0"
}
azuread = {
source = "hashicorp/azuread"
Expand All @@ -43,7 +43,6 @@ terraform {
}

provider "azurerm" {
skip_provider_registration = true
features {
resource_group {
prevent_deletion_if_contains_resources = false
Expand All @@ -56,7 +55,7 @@ provider "azuread" {
}

module "cdp_azure_prereqs" {
source = "git::https://github.com/cloudera-labs/terraform-cdp-modules.git//modules/terraform-cdp-azure-pre-reqs?ref=v0.8.0"
source = "git::https://github.com/cloudera-labs/terraform-cdp-modules.git//modules/terraform-cdp-azure-pre-reqs?ref=v0.8.1"

env_prefix = var.env_prefix
azure_region = var.azure_region
Expand All @@ -77,7 +76,7 @@ module "cdp_azure_prereqs" {
}

module "cdp_deploy" {
source = "git::https://github.com/cloudera-labs/terraform-cdp-modules.git//modules/terraform-cdp-deploy?ref=v0.8.0"
source = "git::https://github.com/cloudera-labs/terraform-cdp-modules.git//modules/terraform-cdp-deploy?ref=v0.8.1"

env_prefix = var.env_prefix
infra_type = "azure"
Expand Down
4 changes: 2 additions & 2 deletions gcp/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ provider "google" {


module "cdp_gcp_prereqs" {
source = "git::https://github.com/cloudera-labs/terraform-cdp-modules.git//modules/terraform-cdp-gcp-pre-reqs?ref=v0.8.0"
source = "git::https://github.com/cloudera-labs/terraform-cdp-modules.git//modules/terraform-cdp-gcp-pre-reqs?ref=v0.8.1"

env_prefix = var.env_prefix
gcp_region = var.gcp_region
Expand All @@ -62,7 +62,7 @@ module "cdp_gcp_prereqs" {
}

module "cdp_deploy" {
source = "git::https://github.com/cloudera-labs/terraform-cdp-modules.git//modules/terraform-cdp-deploy?ref=v0.8.0"
source = "git::https://github.com/cloudera-labs/terraform-cdp-modules.git//modules/terraform-cdp-deploy?ref=v0.8.1"

env_prefix = var.env_prefix
infra_type = "gcp"
Expand Down

0 comments on commit 26b59c3

Please sign in to comment.