mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-19 12:54:39 -05:00
21 lines
495 B
Terraform
21 lines
495 B
Terraform
|
variable "csp" {
|
||
|
description = "The cloud service provider to fetch image data for."
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "attestation_variant" {
|
||
|
description = "The attestation variant to fetch image data for."
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "region" {
|
||
|
description = "The region to fetch image data for."
|
||
|
type = string
|
||
|
default = ""
|
||
|
}
|
||
|
|
||
|
variable "image" {
|
||
|
description = "The image reference or semantical release version to fetch image data for."
|
||
|
type = string
|
||
|
}
|