Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Retry-join option to use IPv6 for AWS #3471

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion website/source/docs/agent/options.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,13 +264,14 @@ will exit with an error at startup.

```json
{
"retry_join": ["provider=aws tag_key=xxx tag_value=xxx"]
"retry_join": ["provider=aws tag_key=xxx tag_value=xxx addrtype=public_v6"]
}
```

- `provider` (required) - the name of the provider ("aws" in this case).
- `tag_key` (required) - the key of the tag to auto-join on.
- `tag_value` (required) - the value of the tag to auto-join on.
- `addrtype` (optional) - option to use `private_v4`,`public_v4` or `public_v6` addresses, defaults to `private_v4`
- `region` (optional) - the AWS region to authenticate in.
- `access_key_id` (optional) - the AWS access key for authentication (see below for more information about authenticating).
- `secret_access_key` (optional) - the AWS secret access key for authentication (see below for more information about authenticating).
Expand Down