mirror of
https://github.com/apricote/home-cloud.git
synced 2026-02-07 18:27:02 +00:00
ansible setup
This commit is contained in:
parent
42ec743a00
commit
2a2d951971
24 changed files with 167 additions and 430 deletions
17
terraform_provider_test/provider_rancher2.tf
Normal file
17
terraform_provider_test/provider_rancher2.tf
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
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}"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue