Terraform data source for managing an AWS DMS (Database Migration) Endpoint.
data "aws_dms_endpoint" "test" {
endpoint_id = "test_id"
}
The following arguments are required:
endpoint_id
- (Required) Database endpoint identifier. Identifiers must contain from 1 to 255 alphanumeric characters or hyphens, begin with a letter, contain only ASCII letters, digits, and hyphens, not end with a hyphen, and not contain two consecutive hyphens.See the aws_dms_endpoint
resource for details on the returned attributes - they are identical.