mirror of
https://github.com/outbackdingo/terraform-hcloud-talos.git
synced 2026-01-27 02:20:24 +00:00
8 lines
147 B
HCL
8 lines
147 B
HCL
data "hcloud_datacenter" "this" {
|
|
name = var.datacenter_name
|
|
}
|
|
|
|
data "hcloud_location" "this" {
|
|
id = data.hcloud_datacenter.this.location.id
|
|
}
|