mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
add type=password to integration api keys
This commit is contained in:
@@ -109,6 +109,8 @@ export default function AWSParameterStoreAuthorizeIntegrationPage() {
|
||||
<Input
|
||||
placeholder=""
|
||||
value={accessSecretKey}
|
||||
type="password"
|
||||
autoComplete="new-password"
|
||||
onChange={(e) => setAccessSecretKey(e.target.value)}
|
||||
/>
|
||||
</FormControl>
|
||||
|
||||
@@ -108,6 +108,8 @@ export default function AWSSecretManagerCreateIntegrationPage() {
|
||||
>
|
||||
<Input
|
||||
placeholder=""
|
||||
type="password"
|
||||
autoComplete="new-password"
|
||||
value={accessSecretKey}
|
||||
onChange={(e) => setAccessSecretKey(e.target.value)}
|
||||
/>
|
||||
|
||||
@@ -86,6 +86,8 @@ export default function ChecklyCreateIntegrationPage() {
|
||||
<Input
|
||||
placeholder=""
|
||||
value={accessToken}
|
||||
type="password"
|
||||
autoComplete="new-password"
|
||||
onChange={(e) => setAccessToken(e.target.value)}
|
||||
/>
|
||||
</FormControl>
|
||||
|
||||
@@ -59,7 +59,13 @@ export default function CloudflarePagesIntegrationPage() {
|
||||
isError={accessKeyErrorText !== "" ?? false}
|
||||
className="mx-6"
|
||||
>
|
||||
<Input placeholder="" value={accessKey} onChange={(e) => setAccessKey(e.target.value)} />
|
||||
<Input
|
||||
placeholder=""
|
||||
value={accessKey}
|
||||
type="password"
|
||||
autoComplete="new-password"
|
||||
onChange={(e) => setAccessKey(e.target.value)}
|
||||
/>
|
||||
</FormControl>
|
||||
<FormControl
|
||||
label="Cloudflare Pages Account ID"
|
||||
|
||||
@@ -61,7 +61,13 @@ export default function CloudflareWorkersIntegrationPage() {
|
||||
isError={accessKeyErrorText !== "" ?? false}
|
||||
className="mx-6"
|
||||
>
|
||||
<Input placeholder="" value={accessKey} onChange={(e) => setAccessKey(e.target.value)} />
|
||||
<Input
|
||||
placeholder=""
|
||||
value={accessKey}
|
||||
type="password"
|
||||
autoComplete="new-password"
|
||||
onChange={(e) => setAccessKey(e.target.value)}
|
||||
/>
|
||||
</FormControl>
|
||||
<FormControl
|
||||
label="Cloudflare Workers Account ID"
|
||||
|
||||
@@ -96,7 +96,12 @@ export default function FlyioAuthorizeIntegrationPage() {
|
||||
errorText={error?.message}
|
||||
isError={Boolean(error)}
|
||||
>
|
||||
<Input {...field} placeholder="" />
|
||||
<Input
|
||||
{...field}
|
||||
placeholder=""
|
||||
type="password"
|
||||
autoComplete="new-password"
|
||||
/>
|
||||
</FormControl>
|
||||
)}
|
||||
/>
|
||||
|
||||
@@ -86,6 +86,8 @@ export default function QoveryCreateIntegrationPage() {
|
||||
<Input
|
||||
placeholder=""
|
||||
value={accessToken}
|
||||
type="password"
|
||||
autoComplete="new-password"
|
||||
onChange={(e) => setAccessToken(e.target.value)}
|
||||
/>
|
||||
</FormControl>
|
||||
|
||||
@@ -83,7 +83,13 @@ export default function RenderCreateIntegrationPage() {
|
||||
isError={apiKeyErrorText !== "" ?? false}
|
||||
className="px-6"
|
||||
>
|
||||
<Input placeholder="rnd_xxx" value={apiKey} onChange={(e) => setApiKey(e.target.value)} />
|
||||
<Input
|
||||
placeholder="rnd_xxx"
|
||||
value={apiKey}
|
||||
type="password"
|
||||
autoComplete="new-password"
|
||||
onChange={(e) => setApiKey(e.target.value)}
|
||||
/>
|
||||
</FormControl>
|
||||
<Button
|
||||
onClick={handleButtonClick}
|
||||
|
||||
@@ -59,6 +59,8 @@ export default function TerraformCloudCreateIntegrationPage() {
|
||||
<Input
|
||||
placeholder="API Token"
|
||||
value={apiKey}
|
||||
type="password"
|
||||
autoComplete="new-password"
|
||||
onChange={(e) => setApiKey(e.target.value)}
|
||||
/>
|
||||
</FormControl>
|
||||
|
||||
Reference in New Issue
Block a user