Skip to content

Commit

Permalink
correct module source
Browse files Browse the repository at this point in the history
  • Loading branch information
elchead committed Nov 14, 2023
1 parent 4cb8626 commit fc9316c
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions docs/docs/workflows/terraform-module.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,8 @@ This allows to upgrade the cluster to a newer Constellation version by simply up
<tabItem value="azure" label="Azure">

```
locals {
module_version = "v0.0.0" // insert Constellation version here.
}
module "azure-constellation" {
source = "https://github.com/edgelesssys/constellation/releases/download/${local.module_version}/terraform-module.zip//modules/azure-constellation"
source = "https://github.com/edgelesssys/constellation/releases/download/<version>/terraform-module.zip//terraform-module/azure-constellation" // insert Constellation version here.
name = "constell"
location = "northeurope"
service_principal_name = "az-sp"
Expand Down Expand Up @@ -57,12 +53,8 @@ This allows to upgrade the cluster to a newer Constellation version by simply up
<tabItem value="aws" label="AWS">

```
locals {
module_version = "v0.0.0" // insert Constellation version here.
}
module "aws-constellation" {
source = "https://github.com/edgelesssys/constellation/releases/download/${local.module_version}/terraform-module.zip//modules/aws-constellation"
source = "https://github.com/edgelesssys/constellation/releases/download/<version>/terraform-module.zip//terraform-module/aws-constellation" // insert Constellation version here.
name = "constell"
zone = "us-east-2c"
name_prefix = "example"
Expand Down Expand Up @@ -92,12 +84,8 @@ This allows to upgrade the cluster to a newer Constellation version by simply up
<tabItem value="gcp" label="GCP">

```
locals {
module_version = "v0.0.0" // insert Constellation version here.
}
module "gcp-constellation" {
source = "https://github.com/edgelesssys/constellation/releases/download/${local.module_version}/terraform-module.zip//modules/gcp-constellation"
source = "https://github.com/edgelesssys/constellation/releases/download/<version>/terraform-module.zip//terraform-module/gcp-constellation" // insert Constellation version here.
name = "constell"
project = "constell-proj" // replace with your project id
service_account_id = "constid"
Expand Down

0 comments on commit fc9316c

Please sign in to comment.