grafana/public/app/features/connections/pages/PermissionsFeatureHighlight...

37 lines
1.5 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { t } from '@grafana/i18n';
import permissionsScreenshot from 'img/permissions-screenshot.png';
import { FeatureHighlightsTabPage } from '../components/FeatureHighlightsTabPage';
export function PermissionsFeatureHighlightPage() {
return (
<FeatureHighlightsTabPage
pageName="permissions"
title={t(
'connections.permissions-feature-highlight-page.title',
'Secure access to data with data source permissions in Grafana Cloud'
)}
header={t(
'connections.permissions-feature-highlight-page.header',
'With data source permissions, you can protect sensitive data by limiting access to this data source to specific users, teams, and roles.'
)}
items={[
t(
'connections.permissions-feature-highlight-page.item-1',
'Protect sensitive data, like security logs, production databases, and personally-identifiable information'
),
t(
'connections.permissions-feature-highlight-page.item-2',
'Clean up users experience by hiding data sources they dont need to use'
),
t(
'connections.permissions-feature-highlight-page.item-3',
'Share Grafana access more freely, knowing that users will not unwittingly see sensitive data'
),
]}
buttonLink={'https://grafana.com/auth/sign-up/create-user?src=oss-grafana&cnt=datasource-permissions'}
screenshotPath={permissionsScreenshot}
/>
);
}