Browse Source
Add missing zone input variable - Exoscale (#9495)
* Add missing zone input variable
* Fix terraform formatting
pull/9523/head
Ayoub Ed-dafali
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
contrib/terraform/exoscale/main.tf
|
|
@ -3,8 +3,8 @@ provider "exoscale" {} |
|
|
|
module "kubernetes" { |
|
|
|
source = "./modules/kubernetes-cluster" |
|
|
|
|
|
|
|
prefix = var.prefix |
|
|
|
|
|
|
|
prefix = var.prefix |
|
|
|
zone = var.zone |
|
|
|
machines = var.machines |
|
|
|
|
|
|
|
ssh_public_keys = var.ssh_public_keys |
|
|
|