We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 86b8a12 + 3ffe9b9 commit 7cd48bcCopy full SHA for 7cd48bc
modules/eks/main.tf
@@ -47,7 +47,7 @@ module "eks" {
47
# https://github.com/terraform-aws-modules/terraform-aws-eks/tree/master/docs
48
49
source = "terraform-aws-modules/eks/aws"
50
- version = "~> 20.35.0"
+ version = "~> 20.37.1"
51
# version = var.eks_module_version
52
53
cluster_name = var.deployment_name
modules/networking/main.tf
@@ -36,7 +36,8 @@ data "aws_availability_zones" "available" {
36
37
resource "aws_eip" "nat_gateway" {
38
count = var.nat_gateway_public_ip != "" && var.vpc_id == "" ? 0 : 1
39
- vpc = true
+
40
+ domain = "vpc"
41
42
tags = {
43
Name = "${var.deployment_name}-nat-gateway"
0 commit comments