mirror of
https://github.com/poseidon/typhoon
synced 2024-11-17 20:14:02 +01:00
Add module version requirements to internal workers modules
This commit is contained in:
parent
73126eb7f8
commit
cce4537487
9
aws/container-linux/kubernetes/workers/require.tf
Normal file
9
aws/container-linux/kubernetes/workers/require.tf
Normal file
@ -0,0 +1,9 @@
|
||||
# Terraform version and plugin versions
|
||||
|
||||
terraform {
|
||||
required_version = ">= 0.10.4"
|
||||
}
|
||||
|
||||
provider "aws" {
|
||||
version = "~> 1.7"
|
||||
}
|
@ -79,6 +79,10 @@ Create a cluster following the Google Cloud [tutorial](../google-cloud.md#cluste
|
||||
module "yavin-worker-pool" {
|
||||
source = "git::https://github.com/poseidon/typhoon//google-cloud/container-linux/kubernetes/workers?ref=v1.9.4"
|
||||
|
||||
providers = {
|
||||
google = "google.default"
|
||||
}
|
||||
|
||||
# Google Cloud
|
||||
region = "us-central1"
|
||||
network = "${module.google-cloud-yavin.network_name}"
|
||||
|
@ -0,0 +1,9 @@
|
||||
# Terraform version and plugin versions
|
||||
|
||||
terraform {
|
||||
required_version = ">= 0.10.4"
|
||||
}
|
||||
|
||||
provider "google" {
|
||||
version = "~> 1.2"
|
||||
}
|
Loading…
Reference in New Issue
Block a user