NSX: Add SourceNAT service to the default Routed offering for VPC (#13)

This commit is contained in:
Pearl Dsilva 2024-02-02 07:21:42 -05:00 committed by GitHub
parent b0989f670d
commit 54c8672eb0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -403,7 +403,7 @@ public class VpcManagerImpl extends ManagerBase implements VpcManager, VpcProvis
if (List.of(Service.UserData, Service.Dhcp, Service.Dns).contains(svc)) {
final Set<Provider> userDataProvider = Set.of(Provider.VPCVirtualRouter);
svcProviderMap.put(svc, userDataProvider);
} else if (Service.NetworkACL.equals(svc)){
} else if (List.of(Service.SourceNat, Service.NetworkACL).contains(svc)){
svcProviderMap.put(svc, defaultProviders);
}
}