mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 12:50:05 +01:00
47 lines
595 B
HCL
47 lines
595 B
HCL
variable "addr" {
|
|
type = string
|
|
}
|
|
|
|
variable "org_key" {
|
|
type = string
|
|
sensitive = true
|
|
default = null
|
|
}
|
|
|
|
variable "org_secret" {
|
|
type = string
|
|
sensitive = true
|
|
default = null
|
|
}
|
|
|
|
variable "name" {
|
|
type = string
|
|
}
|
|
|
|
variable "comment" {
|
|
type = string
|
|
}
|
|
|
|
variable "type" {
|
|
type = string
|
|
}
|
|
|
|
variable "enable_download" {
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "download_part" {
|
|
type = string
|
|
default = "both"
|
|
}
|
|
|
|
variable "download_dir" {
|
|
type = string
|
|
default = "ssh_artifacts"
|
|
}
|
|
|
|
variable "bits" {
|
|
type = number
|
|
default = null # null for ed25519
|
|
} |