0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-06-30 02:31:10 +00:00
terraform-provider-proxmox/example/data_source_virtual_environment_cluster_alias.tf
2021-02-13 02:46:29 +01:00

10 lines
334 B
HCL

data "proxmox_virtual_environment_cluster_alias" "example" {
depends_on = [proxmox_virtual_environment_cluster_alias.example]
name = proxmox_virtual_environment_cluster_alias.example.name
}
output "data_proxmox_virtual_environment_cluster_alias_example_cidr" {
value = proxmox_virtual_environment_cluster_alias.example.cidr
}