mirror of
https://github.com/puppetmaster/typhoon.git
synced 2025-01-13 02:39:34 +01:00
b80a2eb8a0
* Update manifests for Kubernetes v1.10.0 * Update etcd from v3.3.2 to v3.3.3 * Add disk_type optional variable on AWS * Remove redundant kubeconfig copy on AWS * Distribute etcd secres only to controllers * Organize module variables and ssh steps
20 lines
303 B
HCL
20 lines
303 B
HCL
data "aws_ami" "fedora" {
|
|
most_recent = true
|
|
owners = ["125523088429"]
|
|
|
|
filter {
|
|
name = "architecture"
|
|
values = ["x86_64"]
|
|
}
|
|
|
|
filter {
|
|
name = "virtualization-type"
|
|
values = ["hvm"]
|
|
}
|
|
|
|
filter {
|
|
name = "name"
|
|
values = ["Fedora-Cloud-Base-27*-gp2-0"]
|
|
}
|
|
}
|