From fd62997f4eb83bf3c2521ae32a4b0db7f642bb83 Mon Sep 17 00:00:00 2001 From: Ethan Kidwell <90011750+EthanK14@users.noreply.github.com> Date: Thu, 1 Feb 2024 13:26:44 -0500 Subject: [PATCH] Update to add Windows Server Adds the ami for Terraform to pull from off AWS. --- images.tf | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/images.tf b/images.tf index a7789ad..7026f82 100644 --- a/images.tf +++ b/images.tf @@ -47,3 +47,14 @@ data "aws_ami" "jenkins" { values = ["blue-ubuntu-jenkins"] } } + + +data "aws_ami" "windows" { + most_recent = true + owners = [ "self" ] + + filter { + name = "name" + values = ["blue-windows2022"] + } +} \ No newline at end of file