diff --git a/changelog/infra-form-updates.yaml b/changelog/infra-form-updates.yaml
new file mode 100644
index 00000000000..1a545761aa4
--- /dev/null
+++ b/changelog/infra-form-updates.yaml
@@ -0,0 +1,4 @@
+type: Changed # One of: Added, Changed, Developer Experience, Deprecated, Docs, Fixed, Removed, Security
+description: Updated infrastructure monitor form to not show classification options, use a password input for the key, and use consistent wording.
+pr: 7240 # PR number
+labels: [] # Optional: ["high-risk", "db-migration"]
diff --git a/clients/admin-ui/src/features/common/form/FormFieldFromSchema.tsx b/clients/admin-ui/src/features/common/form/FormFieldFromSchema.tsx
index 6b442fcb795..6135079b89c 100644
--- a/clients/admin-ui/src/features/common/form/FormFieldFromSchema.tsx
+++ b/clients/admin-ui/src/features/common/form/FormFieldFromSchema.tsx
@@ -91,7 +91,8 @@ export const FormFieldFromSchema = ({
);
}
- if (fieldSchema.multiline) {
+ // Use textarea for multiline fields, but prioritize password input for sensitive fields
+ if (fieldSchema.multiline && !fieldSchema.sensitive) {
return (