27 lines
782 B
HCL
27 lines
782 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 = ""
|
|
}
|