resource "grafana_organization_preferences" "test" {
theme = "light"
timezone = "utc"
week_start = "sunday"
}
home_dashboard_id
(Number, Deprecated) The Organization home dashboard ID. Deprecated: Use home_dashboard_uid
instead.home_dashboard_uid
(String) The Organization home dashboard UID. This is only available in Grafana 9.0+.org_id
(String) The Organization ID. If not set, the Org ID defined in the provider block will be used.theme
(String) The Organization theme. Available values are light
, dark
, system
, or an empty string for the default.timezone
(String) The Organization timezone. Available values are utc
, browser
, or an empty string for the default.week_start
(String) The Organization week start day. Available values are sunday
, monday
, saturday
, or an empty string for the default. Defaults to ``.id
(String) The ID of this resource.Import is supported using the following syntax:
terraform import grafana_organization_preferences.name "{{ orgID }}"