mirror of
https://github.com/rancher/quickstart.git
synced 2026-02-05 21:45:18 +01:00
This restructures the repository slightly to cleanly distinguish between Rancher and NeuVector quickstarts
26 lines
392 B
HCL
26 lines
392 B
HCL
# Use latest SLES 15 SP3
|
|
data "aws_ami" "sles" {
|
|
most_recent = true
|
|
owners = ["013907871322"] # SUSE
|
|
|
|
filter {
|
|
name = "name"
|
|
values = ["suse-sles-15-sp3*"]
|
|
}
|
|
|
|
filter {
|
|
name = "virtualization-type"
|
|
values = ["hvm"]
|
|
}
|
|
|
|
filter {
|
|
name = "architecture"
|
|
values = ["x86_64"]
|
|
}
|
|
|
|
filter {
|
|
name = "root-device-type"
|
|
values = ["ebs"]
|
|
}
|
|
}
|