akamai.DnsZone
Explore with Pulumi AI
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: DnsZoneArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DnsZone(resource_name: str,
opts: Optional[ResourceOptions] = None,
contract: Optional[str] = None,
type: Optional[str] = None,
zone: Optional[str] = None,
comment: Optional[str] = None,
end_customer_id: Optional[str] = None,
group: Optional[str] = None,
masters: Optional[Sequence[str]] = None,
outbound_zone_transfer: Optional[DnsZoneOutboundZoneTransferArgs] = None,
sign_and_serve: Optional[bool] = None,
sign_and_serve_algorithm: Optional[str] = None,
target: Optional[str] = None,
tsig_key: Optional[DnsZoneTsigKeyArgs] = None)
func NewDnsZone(ctx *Context, name string, args DnsZoneArgs, opts ...ResourceOption) (*DnsZone, error)
public DnsZone(string name, DnsZoneArgs args, CustomResourceOptions? opts = null)
public DnsZone(String name, DnsZoneArgs args)
public DnsZone(String name, DnsZoneArgs args, CustomResourceOptions options)
type: akamai: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 Akamai.DnsZone("dnsZoneResource", new()
{
Contract = "string",
Type = "string",
Zone = "string",
Comment = "string",
EndCustomerId = "string",
Group = "string",
Masters = new[]
{
"string",
},
OutboundZoneTransfer = new Akamai.Inputs.DnsZoneOutboundZoneTransferArgs
{
Acls = new[]
{
"string",
},
Enabled = false,
NotifyTargets = new[]
{
"string",
},
TsigKey = new Akamai.Inputs.DnsZoneOutboundZoneTransferTsigKeyArgs
{
Algorithm = "string",
Name = "string",
Secret = "string",
},
},
SignAndServe = false,
SignAndServeAlgorithm = "string",
Target = "string",
TsigKey = new Akamai.Inputs.DnsZoneTsigKeyArgs
{
Algorithm = "string",
Name = "string",
Secret = "string",
},
});
example, err := akamai.NewDnsZone(ctx, "dnsZoneResource", &akamai.DnsZoneArgs{
Contract: pulumi.String("string"),
Type: pulumi.String("string"),
Zone: pulumi.String("string"),
Comment: pulumi.String("string"),
EndCustomerId: pulumi.String("string"),
Group: pulumi.String("string"),
Masters: pulumi.StringArray{
pulumi.String("string"),
},
OutboundZoneTransfer: &akamai.DnsZoneOutboundZoneTransferArgs{
Acls: pulumi.StringArray{
pulumi.String("string"),
},
Enabled: pulumi.Bool(false),
NotifyTargets: pulumi.StringArray{
pulumi.String("string"),
},
TsigKey: &akamai.DnsZoneOutboundZoneTransferTsigKeyArgs{
Algorithm: pulumi.String("string"),
Name: pulumi.String("string"),
Secret: pulumi.String("string"),
},
},
SignAndServe: pulumi.Bool(false),
SignAndServeAlgorithm: pulumi.String("string"),
Target: pulumi.String("string"),
TsigKey: &akamai.DnsZoneTsigKeyArgs{
Algorithm: pulumi.String("string"),
Name: pulumi.String("string"),
Secret: pulumi.String("string"),
},
})
var dnsZoneResource = new DnsZone("dnsZoneResource", DnsZoneArgs.builder()
.contract("string")
.type("string")
.zone("string")
.comment("string")
.endCustomerId("string")
.group("string")
.masters("string")
.outboundZoneTransfer(DnsZoneOutboundZoneTransferArgs.builder()
.acls("string")
.enabled(false)
.notifyTargets("string")
.tsigKey(DnsZoneOutboundZoneTransferTsigKeyArgs.builder()
.algorithm("string")
.name("string")
.secret("string")
.build())
.build())
.signAndServe(false)
.signAndServeAlgorithm("string")
.target("string")
.tsigKey(DnsZoneTsigKeyArgs.builder()
.algorithm("string")
.name("string")
.secret("string")
.build())
.build());
dns_zone_resource = akamai.DnsZone("dnsZoneResource",
contract="string",
type="string",
zone="string",
comment="string",
end_customer_id="string",
group="string",
masters=["string"],
outbound_zone_transfer={
"acls": ["string"],
"enabled": False,
"notify_targets": ["string"],
"tsig_key": {
"algorithm": "string",
"name": "string",
"secret": "string",
},
},
sign_and_serve=False,
sign_and_serve_algorithm="string",
target="string",
tsig_key={
"algorithm": "string",
"name": "string",
"secret": "string",
})
const dnsZoneResource = new akamai.DnsZone("dnsZoneResource", {
contract: "string",
type: "string",
zone: "string",
comment: "string",
endCustomerId: "string",
group: "string",
masters: ["string"],
outboundZoneTransfer: {
acls: ["string"],
enabled: false,
notifyTargets: ["string"],
tsigKey: {
algorithm: "string",
name: "string",
secret: "string",
},
},
signAndServe: false,
signAndServeAlgorithm: "string",
target: "string",
tsigKey: {
algorithm: "string",
name: "string",
secret: "string",
},
});
type: akamai:DnsZone
properties:
comment: string
contract: string
endCustomerId: string
group: string
masters:
- string
outboundZoneTransfer:
acls:
- string
enabled: false
notifyTargets:
- string
tsigKey:
algorithm: string
name: string
secret: string
signAndServe: false
signAndServeAlgorithm: string
target: string
tsigKey:
algorithm: string
name: string
secret: string
type: string
zone: 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:
- Contract string
- Type string
- Zone string
- Comment string
- End
Customer stringId - Group string
- Masters List<string>
- Outbound
Zone DnsTransfer Zone Outbound Zone Transfer - Outbound zone transfer properties.
- Sign
And boolServe - Sign
And stringServe Algorithm - Target string
- Tsig
Key DnsZone Tsig Key
- Contract string
- Type string
- Zone string
- Comment string
- End
Customer stringId - Group string
- Masters []string
- Outbound
Zone DnsTransfer Zone Outbound Zone Transfer Args - Outbound zone transfer properties.
- Sign
And boolServe - Sign
And stringServe Algorithm - Target string
- Tsig
Key DnsZone Tsig Key Args
- contract String
- type String
- zone String
- comment String
- end
Customer StringId - group String
- masters List<String>
- outbound
Zone DnsTransfer Zone Outbound Zone Transfer - Outbound zone transfer properties.
- sign
And BooleanServe - sign
And StringServe Algorithm - target String
- tsig
Key DnsZone Tsig Key
- contract string
- type string
- zone string
- comment string
- end
Customer stringId - group string
- masters string[]
- outbound
Zone DnsTransfer Zone Outbound Zone Transfer - Outbound zone transfer properties.
- sign
And booleanServe - sign
And stringServe Algorithm - target string
- tsig
Key DnsZone Tsig Key
- contract str
- type str
- zone str
- comment str
- end_
customer_ strid - group str
- masters Sequence[str]
- outbound_
zone_ Dnstransfer Zone Outbound Zone Transfer Args - Outbound zone transfer properties.
- sign_
and_ boolserve - sign_
and_ strserve_ algorithm - target str
- tsig_
key DnsZone Tsig Key Args
- contract String
- type String
- zone String
- comment String
- end
Customer StringId - group String
- masters List<String>
- outbound
Zone Property MapTransfer - Outbound zone transfer properties.
- sign
And BooleanServe - sign
And StringServe Algorithm - target String
- tsig
Key Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the DnsZone resource produces the following output properties:
- Activation
State string - Alias
Count int - Id string
- The provider-assigned unique ID for this managed resource.
- Version
Id string
- Activation
State string - Alias
Count int - Id string
- The provider-assigned unique ID for this managed resource.
- Version
Id string
- activation
State String - alias
Count Integer - id String
- The provider-assigned unique ID for this managed resource.
- version
Id String
- activation
State string - alias
Count number - id string
- The provider-assigned unique ID for this managed resource.
- version
Id string
- activation_
state str - alias_
count int - id str
- The provider-assigned unique ID for this managed resource.
- version_
id str
- activation
State String - alias
Count Number - id String
- The provider-assigned unique ID for this managed resource.
- version
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,
activation_state: Optional[str] = None,
alias_count: Optional[int] = None,
comment: Optional[str] = None,
contract: Optional[str] = None,
end_customer_id: Optional[str] = None,
group: Optional[str] = None,
masters: Optional[Sequence[str]] = None,
outbound_zone_transfer: Optional[DnsZoneOutboundZoneTransferArgs] = None,
sign_and_serve: Optional[bool] = None,
sign_and_serve_algorithm: Optional[str] = None,
target: Optional[str] = None,
tsig_key: Optional[DnsZoneTsigKeyArgs] = None,
type: Optional[str] = None,
version_id: Optional[str] = None,
zone: 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: akamai: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.
- Activation
State string - Alias
Count int - Comment string
- Contract string
- End
Customer stringId - Group string
- Masters List<string>
- Outbound
Zone DnsTransfer Zone Outbound Zone Transfer - Outbound zone transfer properties.
- Sign
And boolServe - Sign
And stringServe Algorithm - Target string
- Tsig
Key DnsZone Tsig Key - Type string
- Version
Id string - Zone string
- Activation
State string - Alias
Count int - Comment string
- Contract string
- End
Customer stringId - Group string
- Masters []string
- Outbound
Zone DnsTransfer Zone Outbound Zone Transfer Args - Outbound zone transfer properties.
- Sign
And boolServe - Sign
And stringServe Algorithm - Target string
- Tsig
Key DnsZone Tsig Key Args - Type string
- Version
Id string - Zone string
- activation
State String - alias
Count Integer - comment String
- contract String
- end
Customer StringId - group String
- masters List<String>
- outbound
Zone DnsTransfer Zone Outbound Zone Transfer - Outbound zone transfer properties.
- sign
And BooleanServe - sign
And StringServe Algorithm - target String
- tsig
Key DnsZone Tsig Key - type String
- version
Id String - zone String
- activation
State string - alias
Count number - comment string
- contract string
- end
Customer stringId - group string
- masters string[]
- outbound
Zone DnsTransfer Zone Outbound Zone Transfer - Outbound zone transfer properties.
- sign
And booleanServe - sign
And stringServe Algorithm - target string
- tsig
Key DnsZone Tsig Key - type string
- version
Id string - zone string
- activation_
state str - alias_
count int - comment str
- contract str
- end_
customer_ strid - group str
- masters Sequence[str]
- outbound_
zone_ Dnstransfer Zone Outbound Zone Transfer Args - Outbound zone transfer properties.
- sign_
and_ boolserve - sign_
and_ strserve_ algorithm - target str
- tsig_
key DnsZone Tsig Key Args - type str
- version_
id str - zone str
- activation
State String - alias
Count Number - comment String
- contract String
- end
Customer StringId - group String
- masters List<String>
- outbound
Zone Property MapTransfer - Outbound zone transfer properties.
- sign
And BooleanServe - sign
And StringServe Algorithm - target String
- tsig
Key Property Map - type String
- version
Id String - zone String
Supporting Types
DnsZoneOutboundZoneTransfer, DnsZoneOutboundZoneTransferArgs
- Acls List<string>
- The access control list, defined as IPv4 and IPv6 CIDR blocks.
- Enabled bool
- Enables outbound zone transfer.
- Notify
Targets List<string> - Customer secondary nameservers to notify, if NOTIFY requests are desired. Up to 64 IPv4 or IPv6 addresses. If no targets are specified, you can manually request zone transfer updates as needed.
- Tsig
Key DnsZone Outbound Zone Transfer Tsig Key - The TSIG key used for outbound zone transfers.
- Acls []string
- The access control list, defined as IPv4 and IPv6 CIDR blocks.
- Enabled bool
- Enables outbound zone transfer.
- Notify
Targets []string - Customer secondary nameservers to notify, if NOTIFY requests are desired. Up to 64 IPv4 or IPv6 addresses. If no targets are specified, you can manually request zone transfer updates as needed.
- Tsig
Key DnsZone Outbound Zone Transfer Tsig Key - The TSIG key used for outbound zone transfers.
- acls List<String>
- The access control list, defined as IPv4 and IPv6 CIDR blocks.
- enabled Boolean
- Enables outbound zone transfer.
- notify
Targets List<String> - Customer secondary nameservers to notify, if NOTIFY requests are desired. Up to 64 IPv4 or IPv6 addresses. If no targets are specified, you can manually request zone transfer updates as needed.
- tsig
Key DnsZone Outbound Zone Transfer Tsig Key - The TSIG key used for outbound zone transfers.
- acls string[]
- The access control list, defined as IPv4 and IPv6 CIDR blocks.
- enabled boolean
- Enables outbound zone transfer.
- notify
Targets string[] - Customer secondary nameservers to notify, if NOTIFY requests are desired. Up to 64 IPv4 or IPv6 addresses. If no targets are specified, you can manually request zone transfer updates as needed.
- tsig
Key DnsZone Outbound Zone Transfer Tsig Key - The TSIG key used for outbound zone transfers.
- acls Sequence[str]
- The access control list, defined as IPv4 and IPv6 CIDR blocks.
- enabled bool
- Enables outbound zone transfer.
- notify_
targets Sequence[str] - Customer secondary nameservers to notify, if NOTIFY requests are desired. Up to 64 IPv4 or IPv6 addresses. If no targets are specified, you can manually request zone transfer updates as needed.
- tsig_
key DnsZone Outbound Zone Transfer Tsig Key - The TSIG key used for outbound zone transfers.
- acls List<String>
- The access control list, defined as IPv4 and IPv6 CIDR blocks.
- enabled Boolean
- Enables outbound zone transfer.
- notify
Targets List<String> - Customer secondary nameservers to notify, if NOTIFY requests are desired. Up to 64 IPv4 or IPv6 addresses. If no targets are specified, you can manually request zone transfer updates as needed.
- tsig
Key Property Map - The TSIG key used for outbound zone transfers.
DnsZoneOutboundZoneTransferTsigKey, DnsZoneOutboundZoneTransferTsigKeyArgs
- Algorithm string
- The algorithm used to encode the TSIG key's secret data. Possible values are: hmac-md5, hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha384, hmac-sha512, or HMAC-MD5.SIG-ALG.REG.INT.
- Name string
- The zone name.
- Secret string
- A Base64-encoded string of data. When decoded, it needs to contain the correct number of bits for the chosen algorithm. If the input isn't correctly padded, the server applies the padding.
- Algorithm string
- The algorithm used to encode the TSIG key's secret data. Possible values are: hmac-md5, hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha384, hmac-sha512, or HMAC-MD5.SIG-ALG.REG.INT.
- Name string
- The zone name.
- Secret string
- A Base64-encoded string of data. When decoded, it needs to contain the correct number of bits for the chosen algorithm. If the input isn't correctly padded, the server applies the padding.
- algorithm String
- The algorithm used to encode the TSIG key's secret data. Possible values are: hmac-md5, hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha384, hmac-sha512, or HMAC-MD5.SIG-ALG.REG.INT.
- name String
- The zone name.
- secret String
- A Base64-encoded string of data. When decoded, it needs to contain the correct number of bits for the chosen algorithm. If the input isn't correctly padded, the server applies the padding.
- algorithm string
- The algorithm used to encode the TSIG key's secret data. Possible values are: hmac-md5, hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha384, hmac-sha512, or HMAC-MD5.SIG-ALG.REG.INT.
- name string
- The zone name.
- secret string
- A Base64-encoded string of data. When decoded, it needs to contain the correct number of bits for the chosen algorithm. If the input isn't correctly padded, the server applies the padding.
- algorithm str
- The algorithm used to encode the TSIG key's secret data. Possible values are: hmac-md5, hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha384, hmac-sha512, or HMAC-MD5.SIG-ALG.REG.INT.
- name str
- The zone name.
- secret str
- A Base64-encoded string of data. When decoded, it needs to contain the correct number of bits for the chosen algorithm. If the input isn't correctly padded, the server applies the padding.
- algorithm String
- The algorithm used to encode the TSIG key's secret data. Possible values are: hmac-md5, hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha384, hmac-sha512, or HMAC-MD5.SIG-ALG.REG.INT.
- name String
- The zone name.
- secret String
- A Base64-encoded string of data. When decoded, it needs to contain the correct number of bits for the chosen algorithm. If the input isn't correctly padded, the server applies the padding.
DnsZoneTsigKey, DnsZoneTsigKeyArgs
Package Details
- Repository
- Akamai pulumi/pulumi-akamai
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
akamai
Terraform Provider.