9 lines
214 B
Terraform
9 lines
214 B
Terraform
data "http" "arch_qcow_hash" {
|
|
insecure = false
|
|
method = "GET"
|
|
retry {
|
|
attempts = 1
|
|
min_delay_ms = 5000
|
|
}
|
|
url = "https://${var.arch_mirror}/images/latest/Arch-Linux-x86_64-cloudimg.qcow2.SHA256"
|
|
} |