add source nat to the vpc offering

This commit is contained in:
Pearl Dsilva 2024-01-26 10:35:40 -05:00
parent 8c12ce373b
commit f96f464fc1
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);
}
}