infra: refresh state

This commit is contained in:
Lu Wang 2024-12-21 22:32:43 +08:00
parent 37af72eb5b
commit 5089f26f4d
Signed by: rebmit
SSH key fingerprint: SHA256:3px8QV1zEerIrEWHaqtH5rR9kjetyRST5EipOPrd+bU
5 changed files with 10 additions and 10 deletions

View file

@ -17,7 +17,7 @@ variable "zone_id" {
terraform { terraform {
required_providers { required_providers {
cloudflare = { cloudflare = {
source = "registry.terraform.io/cloudflare/cloudflare" source = "cloudflare/cloudflare"
} }
} }
} }

View file

@ -1,10 +1,10 @@
terraform { terraform {
required_providers { required_providers {
tls = { tls = {
source = "registry.terraform.io/hashicorp/tls" source = "hashicorp/tls"
} }
random = { random = {
source = "registry.terraform.io/hashicorp/random" source = "hashicorp/random"
} }
b2 = { b2 = {
source = "registry.terraform.io/backblaze/b2" source = "registry.terraform.io/backblaze/b2"

View file

@ -21,7 +21,7 @@ variable "ssh_keys" {
terraform { terraform {
required_providers { required_providers {
vultr = { vultr = {
source = "registry.terraform.io/vultr/vultr" source = "vultr/vultr"
} }
} }
} }

View file

@ -1,22 +1,22 @@
terraform { terraform {
required_providers { required_providers {
sops = { sops = {
source = "registry.terraform.io/carlpett/sops" source = "carlpett/sops"
} }
tls = { tls = {
source = "registry.terraform.io/hashicorp/tls" source = "hashicorp/tls"
} }
random = { random = {
source = "registry.terraform.io/hashicorp/random" source = "hashicorp/random"
} }
cloudflare = { cloudflare = {
source = "registry.terraform.io/cloudflare/cloudflare" source = "cloudflare/cloudflare"
} }
b2 = { b2 = {
source = "registry.terraform.io/backblaze/b2" source = "registry.terraform.io/backblaze/b2"
} }
vultr = { vultr = {
source = "registry.terraform.io/vultr/vultr" source = "vultr/vultr"
} }
} }
} }

File diff suppressed because one or more lines are too long