From b41560fa76b3e32d501bad7f6a581eee2383cac0 Mon Sep 17 00:00:00 2001 From: Vladimir Andrijevikj Date: Fri, 8 Jan 2021 15:38:03 +0100 Subject: [PATCH] Fix interpolation-only expression warning --- aws/eks/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/eks/main.tf b/aws/eks/main.tf index 643adb4..b0cf884 100644 --- a/aws/eks/main.tf +++ b/aws/eks/main.tf @@ -154,7 +154,7 @@ resource "aws_eks_node_group" "default" { } data "tls_certificate" "default" { - url = "${aws_eks_cluster.master.identity.0.oidc.0.issuer}" + url = aws_eks_cluster.master.identity.0.oidc.0.issuer } # IAM Service Account integration