diff --git a/public/app/features/auth-config/ProviderConfigForm.test.tsx b/public/app/features/auth-config/ProviderConfigForm.test.tsx index a0858c8fb8c..7404f016a4e 100644 --- a/public/app/features/auth-config/ProviderConfigForm.test.tsx +++ b/public/app/features/auth-config/ProviderConfigForm.test.tsx @@ -113,7 +113,7 @@ describe('ProviderConfigForm', () => { { showErrorAlert: false } ); - expect(reportInteractionMock).toHaveBeenCalledWith('grafana_authentication_ssosettings_updated', { + expect(reportInteractionMock).toHaveBeenCalledWith('grafana_authentication_ssosettings_saved', { provider: 'github', enabled: true, }); diff --git a/public/app/features/auth-config/ProviderConfigForm.tsx b/public/app/features/auth-config/ProviderConfigForm.tsx index 51df0ce19dd..184bbce65d9 100644 --- a/public/app/features/auth-config/ProviderConfigForm.tsx +++ b/public/app/features/auth-config/ProviderConfigForm.tsx @@ -56,7 +56,7 @@ export const ProviderConfigForm = ({ config, provider, isLoading }: ProviderConf } ); - reportInteraction('grafana_authentication_ssosettings_updated', { + reportInteraction('grafana_authentication_ssosettings_saved', { provider, enabled: requestData.enabled, }); diff --git a/public/app/features/auth-config/fields.tsx b/public/app/features/auth-config/fields.tsx index c2362ca8623..d5fddfc55fe 100644 --- a/public/app/features/auth-config/fields.tsx +++ b/public/app/features/auth-config/fields.tsx @@ -88,7 +88,7 @@ export const sectionFields: Section = { { name: 'TLS', id: 'tls', - fields: ['configureTLS', 'tlsSkipVerifyInsecure', 'tlsClientCert', 'tlsClientKey', 'tlsClientCa'], + fields: ['tlsSkipVerifyInsecure', 'tlsClientCert', 'tlsClientKey', 'tlsClientCa'], }, ], }; @@ -311,10 +311,6 @@ export function fieldMap(provider: string): Record { 'If enabled, Grafana will fetch a new access token using the refresh token provided by the OAuth2 provider.', type: 'checkbox', }, - configureTLS: { - label: 'Configure TLS', - type: 'switch', - }, tlsClientCa: { label: 'TLS client ca', description: 'The path to the trusted certificate authority list. Does not applicable on Grafana Cloud.',