mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-11 23:49:30 -05:00
terraform: allow image to be empty (#2595)
* make image optional in the high level modules * align azure variable description * set defaults in convenience modules Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> --------- Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> Co-authored-by: Adrian Stobbe <stobbe.adrian@gmail.com>
This commit is contained in:
parent
8e4feb7e2a
commit
8f2f8bdbbd
@ -18,7 +18,11 @@ runs:
|
||||
- name: Stamp version
|
||||
shell: bash
|
||||
run: |
|
||||
sed -i "s/@@CONSTELLATION_VERSION@@/${{ inputs.version }}/g" terraform-module/constellation-cluster/variables.tf
|
||||
sed -i "s/@@CONSTELLATION_VERSION@@/${{ inputs.version }}/g" \
|
||||
terraform-module/constellation-cluster/variables.tf \
|
||||
terraform-module/aws-constellation/variables.tf \
|
||||
terraform-module/azure-constellation/variables.tf \
|
||||
terraform-module/gcp-constellation/variables.tf
|
||||
|
||||
- name: Zip terraform dir
|
||||
shell: bash
|
||||
|
@ -5,7 +5,8 @@ variable "name" {
|
||||
|
||||
variable "image" {
|
||||
type = string
|
||||
description = "Node image reference or semantic release version."
|
||||
description = "Node image reference or semantic release version. When not set, the latest default version will be used."
|
||||
default = "@@CONSTELLATION_VERSION@@"
|
||||
}
|
||||
|
||||
variable "microservice_version" {
|
||||
|
@ -5,7 +5,8 @@ variable "name" {
|
||||
|
||||
variable "image" {
|
||||
type = string
|
||||
description = "Node image reference or semantical release version."
|
||||
description = "Node image reference or semantic release version. When not set, the latest default version will be used."
|
||||
default = "@@CONSTELLATION_VERSION@@"
|
||||
}
|
||||
|
||||
variable "microservice_version" {
|
||||
|
@ -7,7 +7,6 @@ variable "constellation_version" {
|
||||
variable "image" {
|
||||
type = string
|
||||
description = "The node image reference or semantic release version."
|
||||
default = "@@CONSTELLATION_VERSION@@"
|
||||
}
|
||||
|
||||
variable "csp" {
|
||||
|
@ -15,7 +15,8 @@ variable "service_account_id" {
|
||||
|
||||
variable "image" {
|
||||
type = string
|
||||
description = "Node image reference or semantic release version."
|
||||
description = "Node image reference or semantic release version. When not set, the latest default version will be used."
|
||||
default = "@@CONSTELLATION_VERSION@@"
|
||||
}
|
||||
|
||||
variable "microservice_version" {
|
||||
|
Loading…
Reference in New Issue
Block a user