Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
ebeaty-cisco committed Dec 11, 2024
1 parent 04c7c6c commit 6cbfca7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
7 changes: 7 additions & 0 deletions examples/ha/infra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,13 @@ module "xrd_ami" {
count = var.node_ami == null ? 1 : 0

cluster_version = data.aws_eks_cluster.this.version

filters = [
{
name = "tag:Amazon_Linux_Version"
values = ["AL2023"]
}
]
}

locals {
Expand Down
6 changes: 6 additions & 0 deletions modules/aws/eks-config/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,9 @@ resource "helm_release" "ebs_csi" {
}
wait = false
}

resource "kubernetes_manifest" "multus" {
for_each = toset(compact(split("---", data.http.multus_yaml.response_body)))

manifest = yamldecode(each.key)
}

0 comments on commit 6cbfca7

Please sign in to comment.