Detect most recent Fedora CoreOS AMI in region

* Detect the most recent Fedora CoreOS AMI to allow usage
of Fedora CoreOS in supported regions (previously just
us-east-1)
* Unpin the Fedora CoreOS AMI image which was pinned to
images that had been checked. This does mean if Fedora
publishes a broken image, it will be selected
* Filter out "dev" images which have similar naming
This commit is contained in:
Dalton Hubble
2019-10-06 18:05:47 -07:00
parent 15c4b793c3
commit 5ef4155e08
4 changed files with 11 additions and 6 deletions

View File

@ -53,7 +53,7 @@ Configure the AWS provider to use your access key credentials in a `providers.tf
```tf
provider "aws" {
version = "2.29.0"
region = "us-east-1" # MUST be us-east-1 right now!
region = "eu-central-1"
shared_credentials_file = "/home/user/.config/aws/credentials"
}