From a4bc33ca7c3350feb92c9edc1989ae59168bfbd1 Mon Sep 17 00:00:00 2001 From: asalbers Date: Thu, 31 Aug 2023 10:54:00 -0500 Subject: [PATCH] Choosing a more secure option should not come with a warning - #621 (#623) * changed note field * changed additional file * Update principals.json * Update clusterTab.js --------- Co-authored-by: Ayobami Ayodeji Co-authored-by: Gordon Byers --- helper/src/components/clusterTab.js | 4 ++-- helper/src/configpresets/principals.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/helper/src/components/clusterTab.js b/helper/src/components/clusterTab.js index 430b4aa63..3f59ca1cd 100644 --- a/helper/src/components/clusterTab.js +++ b/helper/src/components/clusterTab.js @@ -397,7 +397,7 @@ export default function ({ defaults, tabValues, updateFn, featureFlag, invalidAr options={[ { key: 'none', text: 'Public IP with no IP restrictions' }, { key: 'whitelist', text: 'Create allowed IP ranges (defaults to IP address of machine running the script)' }, - { key: 'private', text: 'Private Cluster (WARNING: most complex to operate)' } + { key: 'private', text: 'Private Cluster (Most secure option for your apps, but requires most involved access management)' } ]} onChange={(ev, { key }) => updateFn("apisecurity", key)} @@ -503,4 +503,4 @@ export default function ({ defaults, tabValues, updateFn, featureFlag, invalidAr } ) -} \ No newline at end of file +} diff --git a/helper/src/configpresets/principals.json b/helper/src/configpresets/principals.json index 79a1b5c83..7396d400c 100644 --- a/helper/src/configpresets/principals.json +++ b/helper/src/configpresets/principals.json @@ -291,7 +291,7 @@ "description": { "title": "Best option for highly secure, regulated environments or sensitive data requirements.", "titleWarning": { - "description": "WARNING: most complex environment option to operate", + "description": "Most secure option for your apps, but requires most involved access management", "MessageBarType": 5 }, "bulets": [ @@ -471,4 +471,4 @@ } ] } -} \ No newline at end of file +}