|
@@ -72,6 +72,7 @@ const RouteManagement = ({ routeConfig, routeNames, config, TargetContainer, noC
|
|
|
StripPathPrefix: routeConfig.StripPathPrefix,
|
|
|
AuthEnabled: routeConfig.AuthEnabled,
|
|
|
_SmartShield_Enabled: (routeConfig.SmartShield ? routeConfig.SmartShield.Enabled : false),
|
|
|
+ RestrictToConstellation: routeConfig.RestrictToConstellation,
|
|
|
}}
|
|
|
validationSchema={ValidateRouteSchema}
|
|
|
onSubmit={async (values, { setErrors, setStatus, setSubmitting }) => {
|
|
@@ -256,6 +257,12 @@ const RouteManagement = ({ routeConfig, routeNames, config, TargetContainer, noC
|
|
|
label="Smart Shield Protection"
|
|
|
formik={formik}
|
|
|
/>
|
|
|
+
|
|
|
+ <CosmosCheckbox
|
|
|
+ name="RestrictToConstellation"
|
|
|
+ label="Restrict access to Constellation VPN"
|
|
|
+ formik={formik}
|
|
|
+ />
|
|
|
</Grid>
|
|
|
</MainCard>
|
|
|
{submitButton && <MainCard ><Button
|