Skip to content

Commit

Permalink
[CLOUD-480] append - remove deprecated attributes (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
maismail authored Mar 14, 2023
1 parent b0e4b3b commit 456d960
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
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.1.0"
version = "2.2.0"
}
# Step 2: create a cluster with 1 worker
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ provider "hopsworksai" {
module "aws" {
source = "logicalclocks/helpers/hopsworksai//modules/aws"
region = var.region
version = "2.0.0"
version = "2.2.0"
}
# Step 2: create a cluster with 1 worker
Expand Down Expand Up @@ -162,7 +162,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.2.0"
}
# Step 2: create a cluster with no workers
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.1.0"
version = "2.2.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.1.0"
version = "2.2.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.1.0"
version = "2.2.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.1.0"
version = "2.2.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.1.0"
version = "2.2.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.1.0"
version = "2.2.0"
}

# Create a simple cluster with two workers with two different configuration
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.1.0"
version = "2.2.0"
}

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

0 comments on commit 456d960

Please sign in to comment.