AWS dynamic host catalogs
Boundary uses dynamic host catalogs to automatically discover AWS EC2 instances and add them as hosts.
Create a host catalog to connect with AWS
Boundary uses plugins to integrate with a variety of providers. To use
a dynamic host catalog to integrate with AWS, you create a host catalog of the plugin
type
and set the plugin-name
value to aws
. You must also provide the specific
fields needed for Boundary to authenticate with AWS.
The scope-id
and plugin-name
fields are required when you create a
dynamic host catalog.
The fields following the attr
and secret
flags are specific to AWS and are required by
Boundary for authentication.
disable_credential_rotation
: When set totrue
, Boundary will not rotate the credentials with AWS automatically.region
: The region to configure the host catalog for. All host sets in this catalog will be configured for this region.role_arn
: The AWS role ARN used forAssumeRole
authentication. If you provide arole_arn
value, you must also setdisable_credential_rotation
totrue
.role_external_id
: The external ID that you configured for theAssumeRole
provider.role_session_name
: The session name that you configured for theAssumeRole
provider.role_tags
: The key-value pair tags that you configured for theAssumeRole
provider.access_key_id
: The access key ID for the IAM user to use with this host catalog.secret_access_key
: The secret access key for the IAM user to use with this host catalog.
Refer to the domain model documentation for additional fields that you can use when you create host catalogs.
Create a host set to connect with AWS
Host sets specify which AWS filters should be used to identify the discovered hosts that should be added as members.
Create a host set using the following command:
The host-catalog-id
value is a required field that specifies in which host catalog to
create this host set.
Like with the host catalog, the fields passed in after the attr
flag are
specific to AWS.
The filters
field contains string filters in the format key=val1,val2. The key corresponds to
a filter option, and the value(s) are a comma-separated list. For a list of
filter options, refer to the
describe-instances in the AWS CLI reference.
When the values in a single filters
field are separated by a comma, either
can be true for the host to match. When multiple filters fields are provided,
they must all match for a host to match. In the example above, an instance must
have either tags foo
or bar
, and must have the tag baz
.
For more fields that you can use when creating host sets, refer to the domain model documentation.