1
0
Fork 0
mirror of https://github.com/poseidon/typhoon synced 2024-05-24 00:16:16 +02:00

Update recommended Terraform provider versions

* Sync the Terraform provider plugin versions to those
actively used and tested by the author
* Fix terraform fmt
This commit is contained in:
Dalton Hubble 2020-04-28 19:57:13 -07:00
parent 4ac2d94999
commit 2c1af917ec
10 changed files with 15 additions and 15 deletions

View File

@ -64,10 +64,10 @@ resource "digitalocean_tag" "controllers" {
# Controller Ignition configs
data "ct_config" "controller-ignitions" {
count = var.controller_count
content = data.template_file.controller-configs.*.rendered[count.index]
strict = true
snippets = var.controller_snippets
count = var.controller_count
content = data.template_file.controller-configs.*.rendered[count.index]
strict = true
snippets = var.controller_snippets
}
# Controller Fedora CoreOS configs

View File

@ -60,9 +60,9 @@ resource "digitalocean_tag" "workers" {
# Worker Ignition config
data "ct_config" "worker-ignition" {
content = data.template_file.worker-config.rendered
strict = true
snippets = var.worker_snippets
content = data.template_file.worker-config.rendered
strict = true
snippets = var.worker_snippets
}
# Worker Fedora CoreOS config

View File

@ -49,7 +49,7 @@ Configure the AWS provider to use your access key credentials in a `providers.tf
```tf
provider "aws" {
version = "2.53.0"
version = "2.59.0"
region = "eu-central-1"
shared_credentials_file = "/home/user/.config/aws/credentials"
}

View File

@ -47,7 +47,7 @@ Configure the Azure provider in a `providers.tf` file.
```tf
provider "azurerm" {
version = "2.5.0"
version = "2.7.0"
}
provider "ct" {

View File

@ -50,7 +50,7 @@ Configure the DigitalOcean provider to use your token in a `providers.tf` file.
```tf
provider "digitalocean" {
version = "1.15.1"
version = "1.17.0"
token = "${chomp(file("~/.config/digital-ocean/token"))}"
}

View File

@ -49,7 +49,7 @@ Configure the Google Cloud provider to use your service account key, project-id,
```tf
provider "google" {
version = "3.12.0"
version = "3.19.0"
project = "project-id"
region = "us-central1"
credentials = file("~/.config/google-cloud/terraform.json")

View File

@ -49,7 +49,7 @@ Configure the AWS provider to use your access key credentials in a `providers.tf
```tf
provider "aws" {
version = "2.53.0"
version = "2.59.0"
region = "eu-central-1"
shared_credentials_file = "/home/user/.config/aws/credentials"
}

View File

@ -47,7 +47,7 @@ Configure the Azure provider in a `providers.tf` file.
```tf
provider "azurerm" {
version = "2.5.0"
version = "2.7.0"
}
provider "ct" {

View File

@ -50,7 +50,7 @@ Configure the DigitalOcean provider to use your token in a `providers.tf` file.
```tf
provider "digitalocean" {
version = "1.15.1"
version = "1.17.0"
token = "${chomp(file("~/.config/digital-ocean/token"))}"
}

View File

@ -49,7 +49,7 @@ Configure the Google Cloud provider to use your service account key, project-id,
```tf
provider "google" {
version = "3.12.0"
version = "3.19.0"
project = "project-id"
region = "us-central1"
credentials = file("~/.config/google-cloud/terraform.json")