mirror of https://github.com/k3s-io/k3s
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
602 B
37 lines
602 B
5 years ago
|
data "aws_vpc" "default" {
|
||
|
default = true
|
||
|
}
|
||
|
|
||
|
data "aws_subnet_ids" "available" {
|
||
|
vpc_id = data.aws_vpc.default.id
|
||
|
}
|
||
|
|
||
|
data "aws_subnet" "selected" {
|
||
|
id = "${tolist(data.aws_subnet_ids.available.ids)[1]}"
|
||
|
}
|
||
|
|
||
|
data "aws_ami" "ubuntu" {
|
||
|
most_recent = true
|
||
|
owners = ["099720109477"]
|
||
|
|
||
|
filter {
|
||
|
name = "name"
|
||
|
values = ["ubuntu-minimal/images/*/ubuntu-bionic-18.04-*"]
|
||
|
}
|
||
|
|
||
|
filter {
|
||
|
name = "virtualization-type"
|
||
|
values = ["hvm"]
|
||
|
}
|
||
|
|
||
|
filter {
|
||
|
name = "root-device-type"
|
||
|
values = ["ebs"]
|
||
|
}
|
||
|
|
||
|
filter {
|
||
|
name = "architecture"
|
||
|
values = ["x86_64"]
|
||
|
}
|
||
|
}
|