1
0
Fork 0
mirror of https://github.com/poseidon/typhoon synced 2024-06-01 12:26:12 +02:00

Remove providers block, unused with Terraform v0.12

* Fix inconsistency btw README and the docs
This commit is contained in:
Dalton Hubble 2019-06-23 13:34:33 -07:00
parent 408e60075a
commit ca18fab5f0

View File

@ -43,14 +43,6 @@ Define a Kubernetes cluster by using the Terraform module for your chosen platfo
module "google-cloud-yavin" {
source = "git::https://github.com/poseidon/typhoon//google-cloud/container-linux/kubernetes?ref=v1.15.0"
providers = {
google = "google.default"
local = "local.default"
null = "null.default"
template = "template.default"
tls = "tls.default"
}
# Google Cloud
cluster_name = "yavin"
region = "us-central1"
@ -63,6 +55,7 @@ module "google-cloud-yavin" {
# optional
worker_count = 2
worker_preemptible = true
}
```