resource "grafana_service_account" "admin" {
name = "admin sa"
role = "Admin"
is_disabled = false
}
data "grafana_service_account" "admin" {
name = grafana_service_account.admin.name
}
name
(String) The name of the Service Account.org_id
(String) The Organization ID. If not set, the Org ID defined in the provider block will be used.id
(String) The ID of this resource.is_disabled
(Boolean) The disabled status for the service account.role
(String) The basic role of the service account in the organization.