Skip to content

Commit

Permalink
no longer requiring versions to make updates easier (#89)
Browse files Browse the repository at this point in the history
* no longer requiring versions to make updates easier
  • Loading branch information
resnostyle authored Jul 11, 2024
1 parent 50a66f8 commit 06bc90e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
6 changes: 2 additions & 4 deletions cloudflare/mail_server/provider.tf
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# Configure the Cloudflare provider.
# You may optionally use version directive to prevent breaking changes occurring unannounced.
terraform {
required_providers {
cloudflare = {
source = "cloudflare/cloudflare"
version = "4.37.0"
version = "~>4.0"
}
namecheap = {
source = "namecheap/namecheap"
version = ">= 2.0.0"
version = "~> 2.0"
}
}
}
6 changes: 2 additions & 4 deletions cloudflare/mail_server_secondary/provider.tf
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# Configure the Cloudflare provider.
# You may optionally use version directive to prevent breaking changes occurring unannounced.
terraform {
required_providers {
cloudflare = {
source = "cloudflare/cloudflare"
version = "4.37.0"
version = "~>4.0"
}
namecheap = {
source = "namecheap/namecheap"
version = ">= 2.0.0"
version = "~> 2.0"
}
}
}
4 changes: 2 additions & 2 deletions proxmox/lxc/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ terraform {
required_providers {
sops = {
source = "carlpett/sops"
version = "1.0.0"
version = "~>1.0"
}
proxmox = {
source = "bpg/proxmox"
version = "0.61.0"
version = ">=0.61.0"
}

}
Expand Down

0 comments on commit 06bc90e

Please sign in to comment.