Skip to content

Commit 7cd48bc

Browse files
authored
Merge pull request #55 from datafold/gerard-eng-966-fix-pure-datafold-hostnaeme
fix: Upgrade versions because of AWS API deprecation
2 parents 86b8a12 + 3ffe9b9 commit 7cd48bc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

modules/eks/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ module "eks" {
4747
# https://github.com/terraform-aws-modules/terraform-aws-eks/tree/master/docs
4848

4949
source = "terraform-aws-modules/eks/aws"
50-
version = "~> 20.35.0"
50+
version = "~> 20.37.1"
5151
# version = var.eks_module_version
5252

5353
cluster_name = var.deployment_name

modules/networking/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ data "aws_availability_zones" "available" {
3636

3737
resource "aws_eip" "nat_gateway" {
3838
count = var.nat_gateway_public_ip != "" && var.vpc_id == "" ? 0 : 1
39-
vpc = true
39+
40+
domain = "vpc"
4041

4142
tags = {
4243
Name = "${var.deployment_name}-nat-gateway"

0 commit comments

Comments
 (0)