mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-31 18:36:13 -05:00
21 lines
495 B
HCL
21 lines
495 B
HCL
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
|
|
}
|