home-cloud/terraform_provider_test/provider_rancher2.tf

18 lines
312 B
Terraform
Raw Normal View History

2019-05-12 20:57:52 +02:00
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}"
}