mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 12:50:05 +01:00
feat: sdk migration in progress
This commit is contained in:
47
terraform/modules/ssh-key/variables.tf
Normal file
47
terraform/modules/ssh-key/variables.tf
Normal file
@@ -0,0 +1,47 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user