fix(pam): correct wildcard notation in AWS IAM resource documentation

- Updated the documentation to replace the wildcard notation from "/*" to "*" for clarity in the policy description, enhancing user understanding of role assumption permissions.
This commit is contained in:
Victor Santos
2025-12-09 14:48:05 -03:00
parent afae53c639
commit 4e2f55d7c0

View File

@@ -153,7 +153,7 @@ export const AwsIamResourceForm = ({ resource, onSubmit }: Props) => {
<p className="mb-3 text-sm text-mineshaft-300">
This policy allows the Resource Role to assume target roles. For simplicity, use a
wildcard to allow assuming any role in your account. For more granular control,
replace <code className="rounded bg-mineshaft-700 px-1 text-xs">/*</code> with a
replace <code className="rounded bg-mineshaft-700 px-1 text-xs">*</code> with a
specific pattern like{" "}
<code className="rounded bg-mineshaft-700 px-1 text-xs">/pam-*</code> or{" "}
<code className="rounded bg-mineshaft-700 px-1 text-xs">/infisical-*</code>.