37 lines
994 B
HCL
37 lines
994 B
HCL
variable "edge_connect_endpoint" {
|
|
description = "Edge Connect API endpoint URL"
|
|
type = string
|
|
default = "https://api.edge-connect.example.com"
|
|
}
|
|
|
|
# Token-based authentication
|
|
variable "edge_connect_token" {
|
|
description = "Authentication token for Edge Connect API (use either token OR username/password)"
|
|
type = string
|
|
sensitive = true
|
|
default = ""
|
|
}
|
|
|
|
# Username/password authentication
|
|
variable "edge_connect_username" {
|
|
description = "Username for Edge Connect API (use either token OR username/password)"
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable "edge_connect_password" {
|
|
description = "Password for Edge Connect API (use either token OR username/password)"
|
|
type = string
|
|
sensitive = true
|
|
default = ""
|
|
}
|
|
|
|
variable "app_id" {
|
|
description = "ID of an existing app to look up"
|
|
type = string
|
|
}
|
|
|
|
variable "app_instance_id" {
|
|
description = "ID of an existing app instance to look up"
|
|
type = string
|
|
}
|