yandex_vpc_address (Data Source)
Статья создана
Обновлена 11 сентября 2025 г.
Get information about a Yandex VPC address. For more information, see the official documentation.
This data source is used to define VPC Address that can be used by other resources.
Важно
One of address_id or name should be specified.
Example usage
//
// Get information about existing VPC IPv4 Address.
//
data "yandex_vpc_address" "addr" {
address_id = "my-address-id"
}
Schema
Optional
address_id(String) ID of the address.folder_id(String) The folder identifier that resource belongs to. If it is not provided, the default providerfolder-idis used.name(String) The resource name.
Read-Only
created_at(String) The creation timestamp of the resource.deletion_protection(Boolean) Thetruevalue means that resource is protected from accidental deletion.description(String) The resource description.dns_record(List of Object) (see below for nested schema)external_ipv4_address(List of Object) (see below for nested schema)id(String) The ID of this resource.labels(Map of String) A set of key/value label pairs which assigned to resource.reserved(Boolean)falsemeans that address is ephemeral.used(Boolean)trueif address is used.
Nested Schema for dns_record
Read-Only:
-
dns_zone_id(String) DNS zone id to create record at. -
fqdn(String) FQDN for record to address. -
ptr(Boolean) If PTR record is needed. -
ttl(Number) TTL of DNS record.
Nested Schema for external_ipv4_address
Read-Only:
-
address(String) Allocated IP address. -
ddos_protection_provider(String) Enable DDOS protection. Possible values are:qrator -
outgoing_smtp_capability(String) Wanted outgoing smtp capability. -
zone_id(String) The availability zone where resource is located. If it is not provided, the default provider zone will be used.