diff --git a/packages/grafana-data/src/types/featureToggles.gen.ts b/packages/grafana-data/src/types/featureToggles.gen.ts index 1c618098fb9..373514bc1c8 100644 --- a/packages/grafana-data/src/types/featureToggles.gen.ts +++ b/packages/grafana-data/src/types/featureToggles.gen.ts @@ -1080,6 +1080,10 @@ export interface FeatureToggles { */ xrayApplicationSignals?: boolean; /** + * use multi-tenant path for awsTempCredentials + */ + multiTenantTempCredentials?: boolean; + /** * Enables localization for plugins */ localizationForPlugins?: boolean; diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index f73a6d891c4..066a940ff2c 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -1858,6 +1858,13 @@ var ( HideFromAdminPage: true, HideFromDocs: true, }, + { + Name: "multiTenantTempCredentials", + Description: "use multi-tenant path for awsTempCredentials", + Stage: FeatureStageExperimental, + HideFromDocs: true, + Owner: awsDatasourcesSquad, + }, { Name: "localizationForPlugins", Description: "Enables localization for plugins", diff --git a/pkg/services/featuremgmt/toggles_gen.csv b/pkg/services/featuremgmt/toggles_gen.csv index a4bedb0661d..3bda2ca6592 100644 --- a/pkg/services/featuremgmt/toggles_gen.csv +++ b/pkg/services/featuremgmt/toggles_gen.csv @@ -244,4 +244,5 @@ localeFormatPreference,experimental,@grafana/grafana-frontend-platform,false,fal unifiedStorageGrpcConnectionPool,experimental,@grafana/search-and-storage,false,false,false alertingRuleRecoverDeleted,GA,@grafana/alerting-squad,false,false,true xrayApplicationSignals,experimental,@grafana/aws-datasources,false,false,true +multiTenantTempCredentials,experimental,@grafana/aws-datasources,false,false,false localizationForPlugins,experimental,@grafana/plugins-platform-backend,false,false,false diff --git a/pkg/services/featuremgmt/toggles_gen.go b/pkg/services/featuremgmt/toggles_gen.go index 4e4689d3991..e94cf664699 100644 --- a/pkg/services/featuremgmt/toggles_gen.go +++ b/pkg/services/featuremgmt/toggles_gen.go @@ -987,6 +987,10 @@ const ( // Support Application Signals queries in the X-Ray datasource FlagXrayApplicationSignals = "xrayApplicationSignals" + // FlagMultiTenantTempCredentials + // use multi-tenant path for awsTempCredentials + FlagMultiTenantTempCredentials = "multiTenantTempCredentials" + // FlagLocalizationForPlugins // Enables localization for plugins FlagLocalizationForPlugins = "localizationForPlugins" diff --git a/pkg/services/featuremgmt/toggles_gen.json b/pkg/services/featuremgmt/toggles_gen.json index 8279236d2d5..b897de5dddb 100644 --- a/pkg/services/featuremgmt/toggles_gen.json +++ b/pkg/services/featuremgmt/toggles_gen.json @@ -2878,6 +2878,19 @@ "codeowner": "@grafana/alerting-squad" } }, + { + "metadata": { + "name": "multiTenantTempCredentials", + "resourceVersion": "1743614635650", + "creationTimestamp": "2025-04-02T17:23:55Z" + }, + "spec": { + "description": "use multi-tenant path for awsTempCredentials", + "stage": "experimental", + "codeowner": "@grafana/aws-datasources", + "hideFromDocs": true + } + }, { "metadata": { "name": "mysqlAnsiQuotes",