mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-04-19 23:31:17 +02:00
Update eks module deps (#334)
This commit is contained in:
@@ -15,6 +15,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
- Updated vpc module version and aws provider version. (by @chenrui333)
|
||||||
- Write your awesome change here (by @you)
|
- Write your awesome change here (by @you)
|
||||||
- Upgraded default kubernetes version from 1.11 to 1.12 (by @stijndehaes)
|
- Upgraded default kubernetes version from 1.11 to 1.12 (by @stijndehaes)
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ terraform {
|
|||||||
}
|
}
|
||||||
|
|
||||||
provider "aws" {
|
provider "aws" {
|
||||||
version = ">= 1.47.0"
|
version = ">= 2.0.0"
|
||||||
region = "${var.region}"
|
region = "${var.region}"
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -144,7 +144,7 @@ resource "aws_security_group" "all_worker_mgmt" {
|
|||||||
|
|
||||||
module "vpc" {
|
module "vpc" {
|
||||||
source = "terraform-aws-modules/vpc/aws"
|
source = "terraform-aws-modules/vpc/aws"
|
||||||
version = "1.14.0"
|
version = "1.60.0"
|
||||||
name = "test-vpc"
|
name = "test-vpc"
|
||||||
cidr = "10.0.0.0/16"
|
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]}"]
|
azs = ["${data.aws_availability_zones.available.names[0]}", "${data.aws_availability_zones.available.names[1]}", "${data.aws_availability_zones.available.names[2]}"]
|
||||||
|
|||||||
Reference in New Issue
Block a user