mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 10:19:35 +00:00
* Update Terraform examples to use Terraform v0.13 * Refresh examples to show Fedora CoreOS and Flatcar Linux * Remove the etcd3 example, not worth it to maintain
15 lines
444 B
HCL
15 lines
444 B
HCL
variable "matchbox_http_endpoint" {
|
|
type = string
|
|
description = "Matchbox HTTP read-only endpoint (e.g. http://matchbox.example.com:8080)"
|
|
}
|
|
|
|
variable "matchbox_rpc_endpoint" {
|
|
type = string
|
|
description = "Matchbox gRPC API endpoint, without the protocol (e.g. matchbox.example.com:8081)"
|
|
}
|
|
|
|
variable "ssh_authorized_key" {
|
|
type = string
|
|
description = "SSH public key to set as an authorized_key on machines"
|
|
}
|