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 {
required_providers {
cloudflare = {
source = "registry.terraform.io/cloudflare/cloudflare"
source = "cloudflare/cloudflare"
}
}
}

View file

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

View file

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

View file

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

File diff suppressed because one or more lines are too long