Skip to content

Commit

Permalink
fix(amazon): Update NLB dualstack constraints for instance targets
Browse files Browse the repository at this point in the history
  • Loading branch information
caseyhebebrand committed Feb 9, 2021
1 parent 26e6067 commit f86c6f5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,9 @@ export class CreateNetworkLoadBalancer extends React.Component<
render={({ innerRef }) => (
<NLBAdvancedSettings
ref={innerRef}
showDualstack={!formik.values.isInternal && every(formik.values.targetGroups, { targetType: 'ip' })}
showDualstack={
!formik.values.isInternal && every(formik.values.targetGroups, { targetType: 'instance' })
}
/>
)}
/>
Expand Down

0 comments on commit f86c6f5

Please sign in to comment.