mirror of
https://github.com/apricote/home-cloud.git
synced 2026-01-13 21:11:02 +00:00
18 lines
312 B
Terraform
18 lines
312 B
Terraform
|
|
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}"
|
||
|
|
}
|