Skip to content

Commit

Permalink
[CLOUD-480] Update terraform helpers modules (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
maismail authored Mar 14, 2023
1 parent 0d259f0 commit b0e4b3b
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ NOTES:
BREAKING CHANGES:

ENHANCEMENTS:
examples: Update terraform helpers modules

FEATURES:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ provider "hopsworksai" {
module "aws" {
source = "logicalclocks/helpers/hopsworksai//modules/aws"
region = var.region
version = "2.0.0"
version = "2.1.0"
}
# Step 2: create a cluster with 1 worker
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/aws/autoscale/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ provider "hopsworksai" {
module "aws" {
source = "logicalclocks/helpers/hopsworksai//modules/aws"
region = var.region
version = "2.0.0"
version = "2.1.0"
}

# Create a simple cluster with autoscale
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/aws/basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ provider "hopsworksai" {
module "aws" {
source = "logicalclocks/helpers/hopsworksai//modules/aws"
region = var.region
version = "2.0.0"
version = "2.1.0"
}

# Create a simple cluster with two workers with two different configuration
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/aws/eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ provider "hopsworksai" {
module "aws" {
source = "logicalclocks/helpers/hopsworksai//modules/aws"
region = var.region
version = "2.0.0"
version = "2.1.0"
}

# Step 2: create vpc
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/azure/aks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ data "azurerm_resource_group" "rg" {
module "azure" {
source = "logicalclocks/helpers/hopsworksai//modules/azure"
resource_group = var.resource_group
version = "2.0.0"
version = "2.1.0"
}

# Step 2: create virtual network and two subnets, one for AKS and one for Hopsworks
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/azure/autoscale/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ provider "hopsworksai" {
module "azure" {
source = "logicalclocks/helpers/hopsworksai//modules/azure"
resource_group = var.resource_group
version = "2.0.0"
version = "2.1.0"
}

# Create a simple cluster with autoscale
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/azure/basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ provider "hopsworksai" {
module "azure" {
source = "logicalclocks/helpers/hopsworksai//modules/azure"
resource_group = var.resource_group
version = "2.0.0"
version = "2.1.0"
}

# Create a simple cluster with two workers with two different configuration
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider_aws.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ provider "hopsworksai" {
module "aws" {
source = "logicalclocks/helpers/hopsworksai//modules/aws"
region = var.region
version = "2.0.0"
version = "2.1.0"
}

# Step 2: create a cluster with 1 worker
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider_azure.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ data "azurerm_resource_group" "rg" {
module "azure" {
source = "logicalclocks/helpers/hopsworksai//modules/azure"
resource_group = var.resource_group
version = "2.0.0"
version = "2.1.0"
}

# Step 2: create a cluster with no workers
Expand Down

0 comments on commit b0e4b3b

Please sign in to comment.