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:
30
terraform/envs/dev/variables.tf
Normal file
30
terraform/envs/dev/variables.tf
Normal file
@@ -0,0 +1,30 @@
|
||||
variable "addr" {
|
||||
description = "Base URL to the Autoglue API, e.g. http://localhost:8080/api/v1"
|
||||
type = string
|
||||
default = "http://localhost:8080/api/v1"
|
||||
}
|
||||
|
||||
variable "org_key" {
|
||||
description = "Org key for machine auth (sent as X-ORG-KEY)"
|
||||
type = string
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "org_secret" {
|
||||
description = "Org secret for machine auth (sent as X-ORG-SECRET)"
|
||||
type = string
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "ssh_keys" {
|
||||
description = "Map of SSH key specs"
|
||||
type = map(object({
|
||||
name = string
|
||||
comment = string
|
||||
type = string
|
||||
bits = optional(number)
|
||||
enable_download = optional(bool, true)
|
||||
download_part = optional(string, "both")
|
||||
download_dir = optional(string, "out")
|
||||
}))
|
||||
}
|
||||
Reference in New Issue
Block a user