AnswerX service IDs

akamai_datastream_answerx_service_ids

Get a list of your AnswerX Recursive DNS service IDs (SSIDs) by contract.

data "akamai_datastream_answerx_service_ids" "my_service_ids" {
  contract_id = "C-0N7RAC7"
}

output "my_datastreams" {
  value = data.akamai_datastream_answerx_service_ids.my_service_ids
}
my_service_ids = {
  contract_id = "C-0N7RAC7"
  service_ids = [
    {
      id      = 1234
      name    = "SSID1"
      product = "Shield NS53"
      },
    {
      id      = 5432
      name    = "SSID2"
      product = "Shield NS53"
      },
  ]
}

Argument

Pass your contract ID as the value of contract_id in the data block to get its SSIDs.

Arguments

Returned to you is a list of your SSIDs and their products.

AttributeDescription
contract_idYour contract ID.
service_idsA list of the contract's SSIDs. Contains:
  • id. The service instance ID.
  • name. The service instance name.
  • product. The product associated with the service instance.

Did this page help you?