Data Source: aws_globalaccelerator_custom_routing_accelerator

Provides information about a Global Accelerator custom routing accelerator.

Example Usage

variable "accelerator_arn" {
  type    = string
  default = ""
}

variable "accelerator_name" {
  type    = string
  default = ""
}

data "aws_globalaccelerator_custom_routing_accelerator" "example" {
  arn  = var.accelerator_arn
  name = var.accelerator_name
}

Argument Reference

This data source supports the following arguments:

Attribute Reference

See the aws_globalaccelerator_custom_routing_accelerator resource for details on the returned attributes - they are identical.