Skip to content

Commit

Permalink
Merge pull request #787 from splunk/fix_sysmon_linux
Browse files Browse the repository at this point in the history
Fix sysmon linux
  • Loading branch information
P4T12ICK committed Apr 26, 2023
2 parents b49e9cf + e78afa0 commit 0d0a040
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packer/linux_server/linux_aws.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ variable "splunk_server" {

data "amazon-ami" "ubuntu-ami" {
filters = {
name = "*ubuntu-bionic-18.04-amd64-server-*"
name = "*ubuntu-focal-20.04-amd64-server-*"
root-device-type = "ebs"
virtualization-type = "hvm"
}
Expand Down
2 changes: 1 addition & 1 deletion packer/splunk_server/splunk_aws.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ variable "splunk_server" {

data "amazon-ami" "ubuntu-ami" {
filters = {
name = "*ubuntu-bionic-18.04-amd64-server-*"
name = "*ubuntu-focal-20.04-amd64-server-*"
root-device-type = "ebs"
virtualization-type = "hvm"
}
Expand Down
2 changes: 1 addition & 1 deletion terraform/aws/modules/linux-server/resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ data "aws_ami" "linux_server" {

filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-*"]
values = ["ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-*"]
}

filter {
Expand Down
2 changes: 1 addition & 1 deletion terraform/aws/modules/splunk-server/resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ data "aws_ami" "splunk_server" {

filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-*"]
values = ["ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-*"]
}

filter {
Expand Down

0 comments on commit 0d0a040

Please sign in to comment.