Skip to content

Latest commit

 

History

History
75 lines (48 loc) · 1.72 KB

domain_record_info.md

File metadata and controls

75 lines (48 loc) · 1.72 KB

domain_record_info

Get info about a Linode Domain Record.

Examples

- name: Get info about domain records by name
  linode.cloud.domain_record_info:
    domain: my-domain.com
    name: my-subdomain
    type: A
    target: 0.0.0.0
- name: Get info about a domain record by id
  linode.cloud.domain_info:
    domain: my-domain.com
    id: 12345

Parameters

Field Type Required Description
domain_id int Optional The ID of the parent Domain. Optional if domain is defined.
domain str Optional The name of the parent Domain. Optional if domain_id is defined.
id int Optional The unique id of the subdomain. Optional if name is defined.
name str Optional The name of the domain record. Optional if id is defined.

Return Values

  • record - View a single Record on this Domain.

    • Sample Response:
      {
        "created": "2018-01-01T00:01:01",
        "id": 123456,
        "name": "test",
        "port": 80,
        "priority": 50,
        "protocol": null,
        "service": null,
        "tag": null,
        "target": "192.0.2.0",
        "ttl_sec": 604800,
        "type": "A",
        "updated": "2018-01-01T00:01:01",
        "weight": 50
      }
    • See the Linode API response documentation for a list of returned fields