1. Packages
  2. Lxd Provider
  3. API Docs
  4. NetworkZoneRecord
lxd 2.5.0 published on Thursday, Mar 13, 2025 by terraform-lxd

lxd.NetworkZoneRecord

Explore with Pulumi AI

lxd logo
lxd 2.5.0 published on Thursday, Mar 13, 2025 by terraform-lxd

    Create NetworkZoneRecord Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NetworkZoneRecord(name: string, args: NetworkZoneRecordArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkZoneRecord(resource_name: str,
                          args: NetworkZoneRecordArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetworkZoneRecord(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          zone: Optional[str] = None,
                          config: Optional[Mapping[str, str]] = None,
                          description: Optional[str] = None,
                          entries: Optional[Sequence[NetworkZoneRecordEntryArgs]] = None,
                          name: Optional[str] = None,
                          project: Optional[str] = None,
                          remote: Optional[str] = None)
    func NewNetworkZoneRecord(ctx *Context, name string, args NetworkZoneRecordArgs, opts ...ResourceOption) (*NetworkZoneRecord, error)
    public NetworkZoneRecord(string name, NetworkZoneRecordArgs args, CustomResourceOptions? opts = null)
    public NetworkZoneRecord(String name, NetworkZoneRecordArgs args)
    public NetworkZoneRecord(String name, NetworkZoneRecordArgs args, CustomResourceOptions options)
    
    type: lxd:NetworkZoneRecord
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args NetworkZoneRecordArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args NetworkZoneRecordArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args NetworkZoneRecordArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkZoneRecordArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkZoneRecordArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var networkZoneRecordResource = new Lxd.NetworkZoneRecord("networkZoneRecordResource", new()
    {
        Zone = "string",
        Config = 
        {
            { "string", "string" },
        },
        Description = "string",
        Entries = new[]
        {
            new Lxd.Inputs.NetworkZoneRecordEntryArgs
            {
                Type = "string",
                Value = "string",
                Ttl = 0,
            },
        },
        Name = "string",
        Project = "string",
        Remote = "string",
    });
    
    example, err := lxd.NewNetworkZoneRecord(ctx, "networkZoneRecordResource", &lxd.NetworkZoneRecordArgs{
    Zone: pulumi.String("string"),
    Config: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    Description: pulumi.String("string"),
    Entries: .NetworkZoneRecordEntryArray{
    &.NetworkZoneRecordEntryArgs{
    Type: pulumi.String("string"),
    Value: pulumi.String("string"),
    Ttl: pulumi.Float64(0),
    },
    },
    Name: pulumi.String("string"),
    Project: pulumi.String("string"),
    Remote: pulumi.String("string"),
    })
    
    var networkZoneRecordResource = new NetworkZoneRecord("networkZoneRecordResource", NetworkZoneRecordArgs.builder()
        .zone("string")
        .config(Map.of("string", "string"))
        .description("string")
        .entries(NetworkZoneRecordEntryArgs.builder()
            .type("string")
            .value("string")
            .ttl(0)
            .build())
        .name("string")
        .project("string")
        .remote("string")
        .build());
    
    network_zone_record_resource = lxd.NetworkZoneRecord("networkZoneRecordResource",
        zone="string",
        config={
            "string": "string",
        },
        description="string",
        entries=[{
            "type": "string",
            "value": "string",
            "ttl": 0,
        }],
        name="string",
        project="string",
        remote="string")
    
    const networkZoneRecordResource = new lxd.NetworkZoneRecord("networkZoneRecordResource", {
        zone: "string",
        config: {
            string: "string",
        },
        description: "string",
        entries: [{
            type: "string",
            value: "string",
            ttl: 0,
        }],
        name: "string",
        project: "string",
        remote: "string",
    });
    
    type: lxd:NetworkZoneRecord
    properties:
        config:
            string: string
        description: string
        entries:
            - ttl: 0
              type: string
              value: string
        name: string
        project: string
        remote: string
        zone: string
    

    NetworkZoneRecord Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The NetworkZoneRecord resource accepts the following input properties:

    Zone string
    Required - Name of the zone to add the entries of this record.
    Config Dictionary<string, string>
    Optional - Map of key/value pairs of network zone_config settings.
    Description string
    Optional - Description of the network zone.
    Entries List<NetworkZoneRecordEntry>
    Optional - Entry in network zone record - see below.
    Name string
    Required - Name of the network zone record.
    Project string
    Optional - Name of the project where the network zone record will be created.
    Remote string
    Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
    Zone string
    Required - Name of the zone to add the entries of this record.
    Config map[string]string
    Optional - Map of key/value pairs of network zone_config settings.
    Description string
    Optional - Description of the network zone.
    Entries []NetworkZoneRecordEntryArgs
    Optional - Entry in network zone record - see below.
    Name string
    Required - Name of the network zone record.
    Project string
    Optional - Name of the project where the network zone record will be created.
    Remote string
    Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
    zone String
    Required - Name of the zone to add the entries of this record.
    config Map<String,String>
    Optional - Map of key/value pairs of network zone_config settings.
    description String
    Optional - Description of the network zone.
    entries List<NetworkZoneRecordEntry>
    Optional - Entry in network zone record - see below.
    name String
    Required - Name of the network zone record.
    project String
    Optional - Name of the project where the network zone record will be created.
    remote String
    Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
    zone string
    Required - Name of the zone to add the entries of this record.
    config {[key: string]: string}
    Optional - Map of key/value pairs of network zone_config settings.
    description string
    Optional - Description of the network zone.
    entries NetworkZoneRecordEntry[]
    Optional - Entry in network zone record - see below.
    name string
    Required - Name of the network zone record.
    project string
    Optional - Name of the project where the network zone record will be created.
    remote string
    Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
    zone str
    Required - Name of the zone to add the entries of this record.
    config Mapping[str, str]
    Optional - Map of key/value pairs of network zone_config settings.
    description str
    Optional - Description of the network zone.
    entries Sequence[NetworkZoneRecordEntryArgs]
    Optional - Entry in network zone record - see below.
    name str
    Required - Name of the network zone record.
    project str
    Optional - Name of the project where the network zone record will be created.
    remote str
    Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
    zone String
    Required - Name of the zone to add the entries of this record.
    config Map<String>
    Optional - Map of key/value pairs of network zone_config settings.
    description String
    Optional - Description of the network zone.
    entries List<Property Map>
    Optional - Entry in network zone record - see below.
    name String
    Required - Name of the network zone record.
    project String
    Optional - Name of the project where the network zone record will be created.
    remote String
    Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NetworkZoneRecord resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing NetworkZoneRecord Resource

    Get an existing NetworkZoneRecord resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: NetworkZoneRecordState, opts?: CustomResourceOptions): NetworkZoneRecord
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            config: Optional[Mapping[str, str]] = None,
            description: Optional[str] = None,
            entries: Optional[Sequence[NetworkZoneRecordEntryArgs]] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            remote: Optional[str] = None,
            zone: Optional[str] = None) -> NetworkZoneRecord
    func GetNetworkZoneRecord(ctx *Context, name string, id IDInput, state *NetworkZoneRecordState, opts ...ResourceOption) (*NetworkZoneRecord, error)
    public static NetworkZoneRecord Get(string name, Input<string> id, NetworkZoneRecordState? state, CustomResourceOptions? opts = null)
    public static NetworkZoneRecord get(String name, Output<String> id, NetworkZoneRecordState state, CustomResourceOptions options)
    resources:  _:    type: lxd:NetworkZoneRecord    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Config Dictionary<string, string>
    Optional - Map of key/value pairs of network zone_config settings.
    Description string
    Optional - Description of the network zone.
    Entries List<NetworkZoneRecordEntry>
    Optional - Entry in network zone record - see below.
    Name string
    Required - Name of the network zone record.
    Project string
    Optional - Name of the project where the network zone record will be created.
    Remote string
    Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
    Zone string
    Required - Name of the zone to add the entries of this record.
    Config map[string]string
    Optional - Map of key/value pairs of network zone_config settings.
    Description string
    Optional - Description of the network zone.
    Entries []NetworkZoneRecordEntryArgs
    Optional - Entry in network zone record - see below.
    Name string
    Required - Name of the network zone record.
    Project string
    Optional - Name of the project where the network zone record will be created.
    Remote string
    Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
    Zone string
    Required - Name of the zone to add the entries of this record.
    config Map<String,String>
    Optional - Map of key/value pairs of network zone_config settings.
    description String
    Optional - Description of the network zone.
    entries List<NetworkZoneRecordEntry>
    Optional - Entry in network zone record - see below.
    name String
    Required - Name of the network zone record.
    project String
    Optional - Name of the project where the network zone record will be created.
    remote String
    Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
    zone String
    Required - Name of the zone to add the entries of this record.
    config {[key: string]: string}
    Optional - Map of key/value pairs of network zone_config settings.
    description string
    Optional - Description of the network zone.
    entries NetworkZoneRecordEntry[]
    Optional - Entry in network zone record - see below.
    name string
    Required - Name of the network zone record.
    project string
    Optional - Name of the project where the network zone record will be created.
    remote string
    Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
    zone string
    Required - Name of the zone to add the entries of this record.
    config Mapping[str, str]
    Optional - Map of key/value pairs of network zone_config settings.
    description str
    Optional - Description of the network zone.
    entries Sequence[NetworkZoneRecordEntryArgs]
    Optional - Entry in network zone record - see below.
    name str
    Required - Name of the network zone record.
    project str
    Optional - Name of the project where the network zone record will be created.
    remote str
    Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
    zone str
    Required - Name of the zone to add the entries of this record.
    config Map<String>
    Optional - Map of key/value pairs of network zone_config settings.
    description String
    Optional - Description of the network zone.
    entries List<Property Map>
    Optional - Entry in network zone record - see below.
    name String
    Required - Name of the network zone record.
    project String
    Optional - Name of the project where the network zone record will be created.
    remote String
    Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
    zone String
    Required - Name of the zone to add the entries of this record.

    Supporting Types

    NetworkZoneRecordEntry, NetworkZoneRecordEntryArgs

    Type string
    Required - Entry type. Valid values are DNS record type, e.g. A, AAAA, CNAME, TXT, etc.
    Value string
    Required - Entry value.
    Ttl double
    Optional - Entry time to live (TTL).
    Type string
    Required - Entry type. Valid values are DNS record type, e.g. A, AAAA, CNAME, TXT, etc.
    Value string
    Required - Entry value.
    Ttl float64
    Optional - Entry time to live (TTL).
    type String
    Required - Entry type. Valid values are DNS record type, e.g. A, AAAA, CNAME, TXT, etc.
    value String
    Required - Entry value.
    ttl Double
    Optional - Entry time to live (TTL).
    type string
    Required - Entry type. Valid values are DNS record type, e.g. A, AAAA, CNAME, TXT, etc.
    value string
    Required - Entry value.
    ttl number
    Optional - Entry time to live (TTL).
    type str
    Required - Entry type. Valid values are DNS record type, e.g. A, AAAA, CNAME, TXT, etc.
    value str
    Required - Entry value.
    ttl float
    Optional - Entry time to live (TTL).
    type String
    Required - Entry type. Valid values are DNS record type, e.g. A, AAAA, CNAME, TXT, etc.
    value String
    Required - Entry value.
    ttl Number
    Optional - Entry time to live (TTL).

    Package Details

    Repository
    lxd terraform-lxd/terraform-provider-lxd
    License
    Notes
    This Pulumi package is based on the lxd Terraform Provider.
    lxd logo
    lxd 2.5.0 published on Thursday, Mar 13, 2025 by terraform-lxd