Skip to main content

extensible_source_servers

Creates, updates, deletes, gets or lists an extensible_source_servers resource.

Overview

Nameextensible_source_servers
TypeResource
Idaws.drs.extensible_source_servers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe ARN of the source server. (pattern: <code>arn:(?:[0-9a-zA-Z_-]+:){3}([0-9]{12,}):source-server/(s-[0-9a-zA-Z]{17})</code>)
hostnamestringHostname of staging source server.
tagsobjectA list of tags associated with the staging source server.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_extensible_source_serversselectregionReturns a list of source servers on a staging account that are extensible, which means that: a. The source server is not already extended into this Account. b. The source server on the Account we’re reading from is not an extension of another source server.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns a list of source servers on a staging account that are extensible, which means that: a. The source server is not already extended into this Account. b. The source server on the Account we’re reading from is not an extension of another source server.

SELECT
arn,
hostname,
tags
FROM aws.drs.extensible_source_servers
WHERE region = '{{ region }}' -- required
;