netlify.DnsZone
Explore with Pulumi AI
Netlify DNS zone. Read more
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as netlify from "@pulumi/netlify";
const example = new netlify.DnsZone("example", {teamSlug: data.netlify_team.team.slug});
import pulumi
import pulumi_netlify as netlify
example = netlify.DnsZone("example", team_slug=data["netlify_team"]["team"]["slug"])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/netlify/netlify"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := netlify.NewDnsZone(ctx, "example", &netlify.DnsZoneArgs{
TeamSlug: pulumi.Any(data.Netlify_team.Team.Slug),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Netlify = Pulumi.Netlify;
return await Deployment.RunAsync(() =>
{
var example = new Netlify.DnsZone("example", new()
{
TeamSlug = data.Netlify_team.Team.Slug,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.netlify.DnsZone;
import com.pulumi.netlify.DnsZoneArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new DnsZone("example", DnsZoneArgs.builder()
.teamSlug(data.netlify_team().team().slug())
.build());
}
}
resources:
example:
type: netlify:DnsZone
properties:
teamSlug: ${data.netlify_team.team.slug}
Create DnsZone Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DnsZone(name: string, args?: DnsZoneArgs, opts?: CustomResourceOptions);
@overload
def DnsZone(resource_name: str,
args: Optional[DnsZoneArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def DnsZone(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
team_slug: Optional[str] = None)
func NewDnsZone(ctx *Context, name string, args *DnsZoneArgs, opts ...ResourceOption) (*DnsZone, error)
public DnsZone(string name, DnsZoneArgs? args = null, CustomResourceOptions? opts = null)
public DnsZone(String name, DnsZoneArgs args)
public DnsZone(String name, DnsZoneArgs args, CustomResourceOptions options)
type: netlify:DnsZone
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 DnsZoneArgs
- 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 DnsZoneArgs
- 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 DnsZoneArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DnsZoneArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DnsZoneArgs
- 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 dnsZoneResource = new Netlify.DnsZone("dnsZoneResource", new()
{
Name = "string",
TeamSlug = "string",
});
example, err := netlify.NewDnsZone(ctx, "dnsZoneResource", &netlify.DnsZoneArgs{
Name: pulumi.String("string"),
TeamSlug: pulumi.String("string"),
})
var dnsZoneResource = new DnsZone("dnsZoneResource", DnsZoneArgs.builder()
.name("string")
.teamSlug("string")
.build());
dns_zone_resource = netlify.DnsZone("dnsZoneResource",
name="string",
team_slug="string")
const dnsZoneResource = new netlify.DnsZone("dnsZoneResource", {
name: "string",
teamSlug: "string",
});
type: netlify:DnsZone
properties:
name: string
teamSlug: string
DnsZone 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 DnsZone resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the DnsZone resource produces the following output properties:
- Dns
Servers List<string> - Domain
Dns
Zone Domain - Id string
- The provider-assigned unique ID for this managed resource.
- Last
Updated string - Team
Id string
- Dns
Servers []string - Domain
Dns
Zone Domain - Id string
- The provider-assigned unique ID for this managed resource.
- Last
Updated string - Team
Id string
- dns
Servers List<String> - domain
Dns
Zone Domain - id String
- The provider-assigned unique ID for this managed resource.
- last
Updated String - team
Id String
- dns
Servers string[] - domain
Dns
Zone Domain - id string
- The provider-assigned unique ID for this managed resource.
- last
Updated string - team
Id string
- dns_
servers Sequence[str] - domain
Dns
Zone Domain - id str
- The provider-assigned unique ID for this managed resource.
- last_
updated str - team_
id str
- dns
Servers List<String> - domain Property Map
- id String
- The provider-assigned unique ID for this managed resource.
- last
Updated String - team
Id String
Look up Existing DnsZone Resource
Get an existing DnsZone 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?: DnsZoneState, opts?: CustomResourceOptions): DnsZone
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
dns_servers: Optional[Sequence[str]] = None,
domain: Optional[DnsZoneDomainArgs] = None,
last_updated: Optional[str] = None,
name: Optional[str] = None,
team_id: Optional[str] = None,
team_slug: Optional[str] = None) -> DnsZone
func GetDnsZone(ctx *Context, name string, id IDInput, state *DnsZoneState, opts ...ResourceOption) (*DnsZone, error)
public static DnsZone Get(string name, Input<string> id, DnsZoneState? state, CustomResourceOptions? opts = null)
public static DnsZone get(String name, Output<String> id, DnsZoneState state, CustomResourceOptions options)
resources: _: type: netlify:DnsZone 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.
- Dns
Servers List<string> - Domain
Dns
Zone Domain - Last
Updated string - Name string
- Team
Id string - Team
Slug string - Required if a default team was not configured in the provider configuration.
- Dns
Servers []string - Domain
Dns
Zone Domain Args - Last
Updated string - Name string
- Team
Id string - Team
Slug string - Required if a default team was not configured in the provider configuration.
- dns
Servers List<String> - domain
Dns
Zone Domain - last
Updated String - name String
- team
Id String - team
Slug String - Required if a default team was not configured in the provider configuration.
- dns
Servers string[] - domain
Dns
Zone Domain - last
Updated string - name string
- team
Id string - team
Slug string - Required if a default team was not configured in the provider configuration.
- dns_
servers Sequence[str] - domain
Dns
Zone Domain Args - last_
updated str - name str
- team_
id str - team_
slug str - Required if a default team was not configured in the provider configuration.
- dns
Servers List<String> - domain Property Map
- last
Updated String - name String
- team
Id String - team
Slug String - Required if a default team was not configured in the provider configuration.
Supporting Types
DnsZoneDomain, DnsZoneDomainArgs
- Auto
Renew bool - Auto
Renew stringAt - Expires
At string - Id string
- Name string
- Registered
At string - Renewal
Price string
- Auto
Renew bool - Auto
Renew stringAt - Expires
At string - Id string
- Name string
- Registered
At string - Renewal
Price string
- auto
Renew Boolean - auto
Renew StringAt - expires
At String - id String
- name String
- registered
At String - renewal
Price String
- auto
Renew boolean - auto
Renew stringAt - expires
At string - id string
- name string
- registered
At string - renewal
Price string
- auto_
renew bool - auto_
renew_ strat - expires_
at str - id str
- name str
- registered_
at str - renewal_
price str
- auto
Renew Boolean - auto
Renew StringAt - expires
At String - id String
- name String
- registered
At String - renewal
Price String
Import
Import a DNS zone by its ID
$ pulumi import netlify:index/dnsZone:DnsZone example 6600abcdef1234567890abcd
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- netlify netlify/terraform-provider-netlify
- License
- Notes
- This Pulumi package is based on the
netlify
Terraform Provider.