Authorities set
akamai_authorities_set
Get a list of the authorities set for your contract.
The
target
argument is automatically filled out with the default values of the authorities set on a DNS record of theNS
(name server) type when you create a primary zone.In case you need to create a DNS record of the
NS
type manually, you can provide the values of the authorities set in thetarget
argument of that record.
data "akamai_authorities_set" "my_authorities_set" {
contract = "C-0N7RAC7"
}
output "my_authorities_set" {
value = data.akamai_authorities_set.my_authorities_set.authorities
}
my_authorities_set = [
"a1-12.akam.net.",
"a3-34.akam.net.",
"a4-45.akam.net.",
"a5-56.akam.net.",
"a6-67.akam.net.",
"a7-78.akam.net.",
]
Arguments
Send your contract ID in the declaration to get information about the authorities set.
Attributes
Returned to you is a computed set of authorities for your contract.
Updated 9 days ago