1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

Update eks module deps (#334)

This commit is contained in:
chenrui
2019-04-03 07:10:25 -04:00
committed by Max Williams
parent 7a4484552f
commit 46ec636b36
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -15,6 +15,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
### Changed
- Updated vpc module version and aws provider version. (by @chenrui333)
- Write your awesome change here (by @you)
- Upgraded default kubernetes version from 1.11 to 1.12 (by @stijndehaes)
+2 -2
View File
@@ -3,7 +3,7 @@ terraform {
}
provider "aws" {
version = ">= 1.47.0"
version = ">= 2.0.0"
region = "${var.region}"
}
@@ -144,7 +144,7 @@ resource "aws_security_group" "all_worker_mgmt" {
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "1.14.0"
version = "1.60.0"
name = "test-vpc"
cidr = "10.0.0.0/16"
azs = ["${data.aws_availability_zones.available.names[0]}", "${data.aws_availability_zones.available.names[1]}", "${data.aws_availability_zones.available.names[2]}"]