Skip to content

Commit

Permalink
feat(aws): Automatically enable IPv6 in test clusters (#8716)
Browse files Browse the repository at this point in the history
  • Loading branch information
caseyhebebrand committed Nov 11, 2020
1 parent c6b23a7 commit 1bf2c95
Showing 1 changed file with 8 additions and 0 deletions.
Expand Up @@ -104,6 +104,14 @@ angular
command.interestingHealthProviderNames = ['Amazon'];
}

if (
defaultCredentials === 'test' &&
AWSProviderSettings.serverGroups &&
AWSProviderSettings.serverGroups.enableIPv6
) {
command.associateIPv6Address = true;
}

if (AWSProviderSettings.serverGroups && AWSProviderSettings.serverGroups.enableIMDSv2) {
/**
* Older SDKs do not support IMDSv2. A timestamp can be optionally configured at which any apps created after can safely default to using IMDSv2.
Expand Down

0 comments on commit 1bf2c95

Please sign in to comment.