mirror of
https://github.com/apricote/home-cloud.git
synced 2026-01-13 13:01:03 +00:00
17 lines
312 B
HCL
17 lines
312 B
HCL
variable "rancher2_api_url" {
|
|
type = "string"
|
|
}
|
|
|
|
variable "rancher2_access_key" {
|
|
type = "string"
|
|
}
|
|
|
|
variable "rancher2_secret_key" {
|
|
type = "string"
|
|
}
|
|
|
|
provider "rancher2" {
|
|
api_url = "${var.rancher2_api_url}"
|
|
access_key = "${var.rancher2_access_key}"
|
|
secret_key = "${var.rancher2_secret_key}"
|
|
}
|