Update AWS Terraform to use DL-Logger AMI

This commit is contained in:
Chris Long
2021-06-26 21:39:00 -07:00
parent 693dacd96b
commit 0b3aa71e46
3 changed files with 18 additions and 22 deletions

View File

@@ -59,11 +59,11 @@ variable "external_dns_servers" {
# Use Data Sources to resolve the AMI-ID for the Ubuntu 18.04 AMI
data "aws_ami" "logger_ami" {
owners = ["099720109477"]
owners = ["505638924199"]
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-20191113"]
values = ["detectionlab-logger"]
}
}
@@ -124,4 +124,4 @@ variable "exchange_ami" {
variable "win10_ami" {
type = string
default = ""
}
}