migrate to terraform 0.13

This commit is contained in:
Antoine 2021-01-12 23:21:07 +01:00
parent 1bf00a8b80
commit bf6bdd46f1
Signed by: antoine
GPG Key ID: 098FB66FC0475E70
4 changed files with 31 additions and 7 deletions

View File

@ -1,12 +1,21 @@
# https://github.com/dmacvicar/terraform-provider-libvirt/blob/master/website/docs/r
terraform {
required_version = ">= 0.12"
required_providers {
null = "~> 2.1"
template = "~> 2.1"
libvirt = ">= 0.0.0"
null = {
source = "hashicorp/null"
version = "~> 2.1"
}
template = {
source = "hashicorp/template"
version = "~> 2.1"
}
libvirt = {
source = "dmacvicar/libvirt"
version = ">= 0.6.3"
}
}
backend "etcdv3" {

3
base/versions.tf Normal file
View File

@ -0,0 +1,3 @@
terraform {
required_version = ">= 0.13"
}

View File

@ -4,9 +4,18 @@ terraform {
required_version = ">= 0.12"
required_providers {
null = "~> 2.1"
template = "~> 2.1"
libvirt = ">= 0.0.0"
null = {
source = "hashicorp/null"
version = "~> 2.1"
}
template = {
source = "hashicorp/template"
version = "~> 2.1"
}
libvirt = {
source = "dmacvicar/libvirt"
version = ">= 0.6.3"
}
}
backend "etcdv3" {

3
stack/versions.tf Normal file
View File

@ -0,0 +1,3 @@
terraform {
required_version = ">= 0.13"
}