Provides information about a Global Accelerator custom routing accelerator.
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
}
This data source supports the following arguments:
arn
- (Optional) Full ARN of the custom routing accelerator.name
- (Optional) Unique name of the custom routing accelerator.See the aws_globalaccelerator_custom_routing_accelerator
resource for details on the
returned attributes - they are identical.