We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3bd87b5 + 514fbb4 commit 29b3417Copy full SHA for 29b3417
terraform/aws/modules/kali-server/resources.tf
@@ -6,7 +6,7 @@ data "aws_ami" "latest-kali-linux" {
6
7
filter {
8
name = "name"
9
- values = ["kali-linux-2022*"]
+ values = ["kali-last-snapshot-amd64-2022*"]
10
}
11
12
@@ -43,4 +43,4 @@ resource "aws_instance" "kali_machine" {
43
resource "aws_eip" "kali_ip" {
44
count = (var.kali_server.kali_server == "1") && (var.aws.use_elastic_ips == "1") ? 1 : 0
45
instance = aws_instance.kali_machine[0].id
46
-}
+}
0 commit comments