mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
text rephrase update
This commit is contained in:
@@ -172,7 +172,7 @@ export const ReviewAccessRequestModal = ({
|
||||
className={byPassApproval ? "bg-red hover:bg-red-600 border-red" : ""}
|
||||
>
|
||||
<span className="text-red text-sm">
|
||||
Approve without waiting for requirements to be met (by pass secrets protection)
|
||||
Approve without waiting for requirements to be met (by pass policy protection)
|
||||
</span>
|
||||
</Checkbox>
|
||||
</div>
|
||||
|
||||
@@ -178,11 +178,13 @@ export const AccessPolicyForm = ({
|
||||
control={control}
|
||||
name="policyType"
|
||||
defaultValue={PolicyType.ChangePolicy}
|
||||
|
||||
render={({ field: { value, onChange }, fieldState: { error } }) => (
|
||||
<FormControl
|
||||
label="Policy Type"
|
||||
isRequired
|
||||
isError={Boolean(error)}
|
||||
tooltipText="Change polices govern secret changes within a given environment and secret path. Access polices allow underprivileged user to request access to environment/secret path."
|
||||
errorText={error?.message}
|
||||
>
|
||||
<Select
|
||||
@@ -327,11 +329,11 @@ export const AccessPolicyForm = ({
|
||||
label="Enforcement Level"
|
||||
isError={Boolean(error)}
|
||||
errorText={error?.message}
|
||||
tooltipText="Choose 'Hard' for required approval or 'Soft' for optional approval"
|
||||
tooltipText="Determines the level of enforcement for required approvers of a request"
|
||||
helperText={
|
||||
field.value === EnforcementLevel.Hard
|
||||
? "Hard enforcement prevents any request from being deployed without prior approval"
|
||||
: "Soft enforcement lets requesters break glass to deploy without waiting for approval"
|
||||
? "All approvers must approve the request."
|
||||
: "All approvers must approve the request; however, the requester can bypass approval requirements in emergencies."
|
||||
}
|
||||
>
|
||||
<Select
|
||||
|
||||
@@ -114,7 +114,7 @@ export const SecretApprovalRequestAction = ({
|
||||
className={byPassApproval ? "bg-red hover:bg-red-600 border-red" : ""}
|
||||
>
|
||||
<span className="text-red text-sm">
|
||||
Merge without waiting for approval (by pass secrets protection)
|
||||
Merge without waiting for approval (by pass secret change policy)
|
||||
</span>
|
||||
</Checkbox>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user