aiven.Grafana
Explore with Pulumi AI
The Grafana resource allows the creation and management of Aiven Grafana services.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const gr1 = new aiven.Grafana("gr1", {
project: ps1.project,
cloudName: "google-europe-west1",
plan: "startup-1",
serviceName: "my-gr1",
maintenanceWindowDow: "monday",
maintenanceWindowTime: "10:00:00",
grafanaUserConfig: {
alertingEnabled: true,
publicAccess: {
grafana: true,
},
},
});
import pulumi
import pulumi_aiven as aiven
gr1 = aiven.Grafana("gr1",
project=ps1["project"],
cloud_name="google-europe-west1",
plan="startup-1",
service_name="my-gr1",
maintenance_window_dow="monday",
maintenance_window_time="10:00:00",
grafana_user_config=aiven.GrafanaGrafanaUserConfigArgs(
alerting_enabled=True,
public_access=aiven.GrafanaGrafanaUserConfigPublicAccessArgs(
grafana=True,
),
))
package main
import (
"github.com/pulumi/pulumi-aiven/sdk/v6/go/aiven"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := aiven.NewGrafana(ctx, "gr1", &aiven.GrafanaArgs{
Project: pulumi.Any(ps1.Project),
CloudName: pulumi.String("google-europe-west1"),
Plan: pulumi.String("startup-1"),
ServiceName: pulumi.String("my-gr1"),
MaintenanceWindowDow: pulumi.String("monday"),
MaintenanceWindowTime: pulumi.String("10:00:00"),
GrafanaUserConfig: &aiven.GrafanaGrafanaUserConfigArgs{
AlertingEnabled: pulumi.Bool(true),
PublicAccess: &aiven.GrafanaGrafanaUserConfigPublicAccessArgs{
Grafana: pulumi.Bool(true),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aiven = Pulumi.Aiven;
return await Deployment.RunAsync(() =>
{
var gr1 = new Aiven.Grafana("gr1", new()
{
Project = ps1.Project,
CloudName = "google-europe-west1",
Plan = "startup-1",
ServiceName = "my-gr1",
MaintenanceWindowDow = "monday",
MaintenanceWindowTime = "10:00:00",
GrafanaUserConfig = new Aiven.Inputs.GrafanaGrafanaUserConfigArgs
{
AlertingEnabled = true,
PublicAccess = new Aiven.Inputs.GrafanaGrafanaUserConfigPublicAccessArgs
{
Grafana = true,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aiven.Grafana;
import com.pulumi.aiven.GrafanaArgs;
import com.pulumi.aiven.inputs.GrafanaGrafanaUserConfigArgs;
import com.pulumi.aiven.inputs.GrafanaGrafanaUserConfigPublicAccessArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var gr1 = new Grafana("gr1", GrafanaArgs.builder()
.project(ps1.project())
.cloudName("google-europe-west1")
.plan("startup-1")
.serviceName("my-gr1")
.maintenanceWindowDow("monday")
.maintenanceWindowTime("10:00:00")
.grafanaUserConfig(GrafanaGrafanaUserConfigArgs.builder()
.alertingEnabled(true)
.publicAccess(GrafanaGrafanaUserConfigPublicAccessArgs.builder()
.grafana(true)
.build())
.build())
.build());
}
}
resources:
gr1:
type: aiven:Grafana
properties:
project: ${ps1.project}
cloudName: google-europe-west1
plan: startup-1
serviceName: my-gr1
maintenanceWindowDow: monday
maintenanceWindowTime: 10:00:00
grafanaUserConfig:
alertingEnabled: true
publicAccess:
grafana: true
Create Grafana Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Grafana(name: string, args: GrafanaArgs, opts?: CustomResourceOptions);
@overload
def Grafana(resource_name: str,
args: GrafanaArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Grafana(resource_name: str,
opts: Optional[ResourceOptions] = None,
plan: Optional[str] = None,
project: Optional[str] = None,
grafana_user_config: Optional[GrafanaGrafanaUserConfigArgs] = None,
project_vpc_id: Optional[str] = None,
additional_disk_space: Optional[str] = None,
maintenance_window_dow: Optional[str] = None,
maintenance_window_time: Optional[str] = None,
disk_space: Optional[str] = None,
cloud_name: Optional[str] = None,
grafana: Optional[GrafanaGrafanaArgs] = None,
service_integrations: Optional[Sequence[GrafanaServiceIntegrationArgs]] = None,
service_name: Optional[str] = None,
static_ips: Optional[Sequence[str]] = None,
tags: Optional[Sequence[GrafanaTagArgs]] = None,
tech_emails: Optional[Sequence[GrafanaTechEmailArgs]] = None,
termination_protection: Optional[bool] = None)
func NewGrafana(ctx *Context, name string, args GrafanaArgs, opts ...ResourceOption) (*Grafana, error)
public Grafana(string name, GrafanaArgs args, CustomResourceOptions? opts = null)
public Grafana(String name, GrafanaArgs args)
public Grafana(String name, GrafanaArgs args, CustomResourceOptions options)
type: aiven:Grafana
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args GrafanaArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args GrafanaArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args GrafanaArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GrafanaArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GrafanaArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var grafanaResource = new Aiven.Grafana("grafanaResource", new()
{
Plan = "string",
Project = "string",
GrafanaUserConfig = new Aiven.Inputs.GrafanaGrafanaUserConfigArgs
{
AdditionalBackupRegions = "string",
AlertingEnabled = false,
AlertingErrorOrTimeout = "string",
AlertingMaxAnnotationsToKeep = 0,
AlertingNodataOrNullvalues = "string",
AllowEmbedding = false,
AuthAzuread = new Aiven.Inputs.GrafanaGrafanaUserConfigAuthAzureadArgs
{
AuthUrl = "string",
ClientId = "string",
ClientSecret = "string",
TokenUrl = "string",
AllowSignUp = false,
AllowedDomains = new[]
{
"string",
},
AllowedGroups = new[]
{
"string",
},
},
AuthBasicEnabled = false,
AuthGenericOauth = new Aiven.Inputs.GrafanaGrafanaUserConfigAuthGenericOauthArgs
{
ApiUrl = "string",
AuthUrl = "string",
ClientId = "string",
ClientSecret = "string",
TokenUrl = "string",
AllowSignUp = false,
AllowedDomains = new[]
{
"string",
},
AllowedOrganizations = new[]
{
"string",
},
AutoLogin = false,
Name = "string",
Scopes = new[]
{
"string",
},
},
AuthGithub = new Aiven.Inputs.GrafanaGrafanaUserConfigAuthGithubArgs
{
ClientId = "string",
ClientSecret = "string",
AllowSignUp = false,
AllowedOrganizations = new[]
{
"string",
},
AutoLogin = false,
SkipOrgRoleSync = false,
TeamIds = new[]
{
0,
},
},
AuthGitlab = new Aiven.Inputs.GrafanaGrafanaUserConfigAuthGitlabArgs
{
AllowedGroups = new[]
{
"string",
},
ClientId = "string",
ClientSecret = "string",
AllowSignUp = false,
ApiUrl = "string",
AuthUrl = "string",
TokenUrl = "string",
},
AuthGoogle = new Aiven.Inputs.GrafanaGrafanaUserConfigAuthGoogleArgs
{
AllowedDomains = new[]
{
"string",
},
ClientId = "string",
ClientSecret = "string",
AllowSignUp = false,
},
CookieSamesite = "string",
CustomDomain = "string",
DashboardPreviewsEnabled = false,
DashboardsMinRefreshInterval = "string",
DashboardsVersionsToKeep = 0,
DataproxySendUserHeader = false,
DataproxyTimeout = 0,
DateFormats = new Aiven.Inputs.GrafanaGrafanaUserConfigDateFormatsArgs
{
DefaultTimezone = "string",
FullDate = "string",
IntervalDay = "string",
IntervalHour = "string",
IntervalMinute = "string",
IntervalMonth = "string",
IntervalSecond = "string",
IntervalYear = "string",
},
DisableGravatar = false,
EditorsCanAdmin = false,
ExternalImageStorage = new Aiven.Inputs.GrafanaGrafanaUserConfigExternalImageStorageArgs
{
AccessKey = "string",
BucketUrl = "string",
Provider = "string",
SecretKey = "string",
},
GoogleAnalyticsUaId = "string",
IpFilterObjects = new[]
{
new Aiven.Inputs.GrafanaGrafanaUserConfigIpFilterObjectArgs
{
Network = "string",
Description = "string",
},
},
IpFilterStrings = new[]
{
"string",
},
MetricsEnabled = false,
OauthAllowInsecureEmailLookup = false,
PrivateAccess = new Aiven.Inputs.GrafanaGrafanaUserConfigPrivateAccessArgs
{
Grafana = false,
},
PrivatelinkAccess = new Aiven.Inputs.GrafanaGrafanaUserConfigPrivatelinkAccessArgs
{
Grafana = false,
},
ProjectToForkFrom = "string",
PublicAccess = new Aiven.Inputs.GrafanaGrafanaUserConfigPublicAccessArgs
{
Grafana = false,
},
RecoveryBasebackupName = "string",
ServiceLog = false,
ServiceToForkFrom = "string",
SmtpServer = new Aiven.Inputs.GrafanaGrafanaUserConfigSmtpServerArgs
{
FromAddress = "string",
Host = "string",
Port = 0,
FromName = "string",
Password = "string",
SkipVerify = false,
StarttlsPolicy = "string",
Username = "string",
},
StaticIps = false,
UnifiedAlertingEnabled = false,
UserAutoAssignOrg = false,
UserAutoAssignOrgRole = "string",
ViewersCanEdit = false,
},
ProjectVpcId = "string",
AdditionalDiskSpace = "string",
MaintenanceWindowDow = "string",
MaintenanceWindowTime = "string",
CloudName = "string",
GrafanaServer = new Aiven.Inputs.GrafanaGrafanaArgs
{
Uris = new[]
{
"string",
},
},
ServiceIntegrations = new[]
{
new Aiven.Inputs.GrafanaServiceIntegrationArgs
{
IntegrationType = "string",
SourceServiceName = "string",
},
},
ServiceName = "string",
StaticIps = new[]
{
"string",
},
Tags = new[]
{
new Aiven.Inputs.GrafanaTagArgs
{
Key = "string",
Value = "string",
},
},
TechEmails = new[]
{
new Aiven.Inputs.GrafanaTechEmailArgs
{
Email = "string",
},
},
TerminationProtection = false,
});
example, err := aiven.NewGrafana(ctx, "grafanaResource", &aiven.GrafanaArgs{
Plan: pulumi.String("string"),
Project: pulumi.String("string"),
GrafanaUserConfig: &aiven.GrafanaGrafanaUserConfigArgs{
AdditionalBackupRegions: pulumi.String("string"),
AlertingEnabled: pulumi.Bool(false),
AlertingErrorOrTimeout: pulumi.String("string"),
AlertingMaxAnnotationsToKeep: pulumi.Int(0),
AlertingNodataOrNullvalues: pulumi.String("string"),
AllowEmbedding: pulumi.Bool(false),
AuthAzuread: &aiven.GrafanaGrafanaUserConfigAuthAzureadArgs{
AuthUrl: pulumi.String("string"),
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
TokenUrl: pulumi.String("string"),
AllowSignUp: pulumi.Bool(false),
AllowedDomains: pulumi.StringArray{
pulumi.String("string"),
},
AllowedGroups: pulumi.StringArray{
pulumi.String("string"),
},
},
AuthBasicEnabled: pulumi.Bool(false),
AuthGenericOauth: &aiven.GrafanaGrafanaUserConfigAuthGenericOauthArgs{
ApiUrl: pulumi.String("string"),
AuthUrl: pulumi.String("string"),
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
TokenUrl: pulumi.String("string"),
AllowSignUp: pulumi.Bool(false),
AllowedDomains: pulumi.StringArray{
pulumi.String("string"),
},
AllowedOrganizations: pulumi.StringArray{
pulumi.String("string"),
},
AutoLogin: pulumi.Bool(false),
Name: pulumi.String("string"),
Scopes: pulumi.StringArray{
pulumi.String("string"),
},
},
AuthGithub: &aiven.GrafanaGrafanaUserConfigAuthGithubArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
AllowSignUp: pulumi.Bool(false),
AllowedOrganizations: pulumi.StringArray{
pulumi.String("string"),
},
AutoLogin: pulumi.Bool(false),
SkipOrgRoleSync: pulumi.Bool(false),
TeamIds: pulumi.IntArray{
pulumi.Int(0),
},
},
AuthGitlab: &aiven.GrafanaGrafanaUserConfigAuthGitlabArgs{
AllowedGroups: pulumi.StringArray{
pulumi.String("string"),
},
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
AllowSignUp: pulumi.Bool(false),
ApiUrl: pulumi.String("string"),
AuthUrl: pulumi.String("string"),
TokenUrl: pulumi.String("string"),
},
AuthGoogle: &aiven.GrafanaGrafanaUserConfigAuthGoogleArgs{
AllowedDomains: pulumi.StringArray{
pulumi.String("string"),
},
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
AllowSignUp: pulumi.Bool(false),
},
CookieSamesite: pulumi.String("string"),
CustomDomain: pulumi.String("string"),
DashboardPreviewsEnabled: pulumi.Bool(false),
DashboardsMinRefreshInterval: pulumi.String("string"),
DashboardsVersionsToKeep: pulumi.Int(0),
DataproxySendUserHeader: pulumi.Bool(false),
DataproxyTimeout: pulumi.Int(0),
DateFormats: &aiven.GrafanaGrafanaUserConfigDateFormatsArgs{
DefaultTimezone: pulumi.String("string"),
FullDate: pulumi.String("string"),
IntervalDay: pulumi.String("string"),
IntervalHour: pulumi.String("string"),
IntervalMinute: pulumi.String("string"),
IntervalMonth: pulumi.String("string"),
IntervalSecond: pulumi.String("string"),
IntervalYear: pulumi.String("string"),
},
DisableGravatar: pulumi.Bool(false),
EditorsCanAdmin: pulumi.Bool(false),
ExternalImageStorage: &aiven.GrafanaGrafanaUserConfigExternalImageStorageArgs{
AccessKey: pulumi.String("string"),
BucketUrl: pulumi.String("string"),
Provider: pulumi.String("string"),
SecretKey: pulumi.String("string"),
},
GoogleAnalyticsUaId: pulumi.String("string"),
IpFilterObjects: aiven.GrafanaGrafanaUserConfigIpFilterObjectArray{
&aiven.GrafanaGrafanaUserConfigIpFilterObjectArgs{
Network: pulumi.String("string"),
Description: pulumi.String("string"),
},
},
IpFilterStrings: pulumi.StringArray{
pulumi.String("string"),
},
MetricsEnabled: pulumi.Bool(false),
OauthAllowInsecureEmailLookup: pulumi.Bool(false),
PrivateAccess: &aiven.GrafanaGrafanaUserConfigPrivateAccessArgs{
Grafana: pulumi.Bool(false),
},
PrivatelinkAccess: &aiven.GrafanaGrafanaUserConfigPrivatelinkAccessArgs{
Grafana: pulumi.Bool(false),
},
ProjectToForkFrom: pulumi.String("string"),
PublicAccess: &aiven.GrafanaGrafanaUserConfigPublicAccessArgs{
Grafana: pulumi.Bool(false),
},
RecoveryBasebackupName: pulumi.String("string"),
ServiceLog: pulumi.Bool(false),
ServiceToForkFrom: pulumi.String("string"),
SmtpServer: &aiven.GrafanaGrafanaUserConfigSmtpServerArgs{
FromAddress: pulumi.String("string"),
Host: pulumi.String("string"),
Port: pulumi.Int(0),
FromName: pulumi.String("string"),
Password: pulumi.String("string"),
SkipVerify: pulumi.Bool(false),
StarttlsPolicy: pulumi.String("string"),
Username: pulumi.String("string"),
},
StaticIps: pulumi.Bool(false),
UnifiedAlertingEnabled: pulumi.Bool(false),
UserAutoAssignOrg: pulumi.Bool(false),
UserAutoAssignOrgRole: pulumi.String("string"),
ViewersCanEdit: pulumi.Bool(false),
},
ProjectVpcId: pulumi.String("string"),
AdditionalDiskSpace: pulumi.String("string"),
MaintenanceWindowDow: pulumi.String("string"),
MaintenanceWindowTime: pulumi.String("string"),
CloudName: pulumi.String("string"),
Grafana: &aiven.GrafanaGrafanaArgs{
Uris: pulumi.StringArray{
pulumi.String("string"),
},
},
ServiceIntegrations: aiven.GrafanaServiceIntegrationArray{
&aiven.GrafanaServiceIntegrationArgs{
IntegrationType: pulumi.String("string"),
SourceServiceName: pulumi.String("string"),
},
},
ServiceName: pulumi.String("string"),
StaticIps: pulumi.StringArray{
pulumi.String("string"),
},
Tags: aiven.GrafanaTagArray{
&aiven.GrafanaTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TechEmails: aiven.GrafanaTechEmailArray{
&aiven.GrafanaTechEmailArgs{
Email: pulumi.String("string"),
},
},
TerminationProtection: pulumi.Bool(false),
})
var grafanaResource = new Grafana("grafanaResource", GrafanaArgs.builder()
.plan("string")
.project("string")
.grafanaUserConfig(GrafanaGrafanaUserConfigArgs.builder()
.additionalBackupRegions("string")
.alertingEnabled(false)
.alertingErrorOrTimeout("string")
.alertingMaxAnnotationsToKeep(0)
.alertingNodataOrNullvalues("string")
.allowEmbedding(false)
.authAzuread(GrafanaGrafanaUserConfigAuthAzureadArgs.builder()
.authUrl("string")
.clientId("string")
.clientSecret("string")
.tokenUrl("string")
.allowSignUp(false)
.allowedDomains("string")
.allowedGroups("string")
.build())
.authBasicEnabled(false)
.authGenericOauth(GrafanaGrafanaUserConfigAuthGenericOauthArgs.builder()
.apiUrl("string")
.authUrl("string")
.clientId("string")
.clientSecret("string")
.tokenUrl("string")
.allowSignUp(false)
.allowedDomains("string")
.allowedOrganizations("string")
.autoLogin(false)
.name("string")
.scopes("string")
.build())
.authGithub(GrafanaGrafanaUserConfigAuthGithubArgs.builder()
.clientId("string")
.clientSecret("string")
.allowSignUp(false)
.allowedOrganizations("string")
.autoLogin(false)
.skipOrgRoleSync(false)
.teamIds(0)
.build())
.authGitlab(GrafanaGrafanaUserConfigAuthGitlabArgs.builder()
.allowedGroups("string")
.clientId("string")
.clientSecret("string")
.allowSignUp(false)
.apiUrl("string")
.authUrl("string")
.tokenUrl("string")
.build())
.authGoogle(GrafanaGrafanaUserConfigAuthGoogleArgs.builder()
.allowedDomains("string")
.clientId("string")
.clientSecret("string")
.allowSignUp(false)
.build())
.cookieSamesite("string")
.customDomain("string")
.dashboardPreviewsEnabled(false)
.dashboardsMinRefreshInterval("string")
.dashboardsVersionsToKeep(0)
.dataproxySendUserHeader(false)
.dataproxyTimeout(0)
.dateFormats(GrafanaGrafanaUserConfigDateFormatsArgs.builder()
.defaultTimezone("string")
.fullDate("string")
.intervalDay("string")
.intervalHour("string")
.intervalMinute("string")
.intervalMonth("string")
.intervalSecond("string")
.intervalYear("string")
.build())
.disableGravatar(false)
.editorsCanAdmin(false)
.externalImageStorage(GrafanaGrafanaUserConfigExternalImageStorageArgs.builder()
.accessKey("string")
.bucketUrl("string")
.provider("string")
.secretKey("string")
.build())
.googleAnalyticsUaId("string")
.ipFilterObjects(GrafanaGrafanaUserConfigIpFilterObjectArgs.builder()
.network("string")
.description("string")
.build())
.ipFilterStrings("string")
.metricsEnabled(false)
.oauthAllowInsecureEmailLookup(false)
.privateAccess(GrafanaGrafanaUserConfigPrivateAccessArgs.builder()
.grafana(false)
.build())
.privatelinkAccess(GrafanaGrafanaUserConfigPrivatelinkAccessArgs.builder()
.grafana(false)
.build())
.projectToForkFrom("string")
.publicAccess(GrafanaGrafanaUserConfigPublicAccessArgs.builder()
.grafana(false)
.build())
.recoveryBasebackupName("string")
.serviceLog(false)
.serviceToForkFrom("string")
.smtpServer(GrafanaGrafanaUserConfigSmtpServerArgs.builder()
.fromAddress("string")
.host("string")
.port(0)
.fromName("string")
.password("string")
.skipVerify(false)
.starttlsPolicy("string")
.username("string")
.build())
.staticIps(false)
.unifiedAlertingEnabled(false)
.userAutoAssignOrg(false)
.userAutoAssignOrgRole("string")
.viewersCanEdit(false)
.build())
.projectVpcId("string")
.additionalDiskSpace("string")
.maintenanceWindowDow("string")
.maintenanceWindowTime("string")
.cloudName("string")
.grafana(GrafanaGrafanaArgs.builder()
.uris("string")
.build())
.serviceIntegrations(GrafanaServiceIntegrationArgs.builder()
.integrationType("string")
.sourceServiceName("string")
.build())
.serviceName("string")
.staticIps("string")
.tags(GrafanaTagArgs.builder()
.key("string")
.value("string")
.build())
.techEmails(GrafanaTechEmailArgs.builder()
.email("string")
.build())
.terminationProtection(false)
.build());
grafana_resource = aiven.Grafana("grafanaResource",
plan="string",
project="string",
grafana_user_config=aiven.GrafanaGrafanaUserConfigArgs(
additional_backup_regions="string",
alerting_enabled=False,
alerting_error_or_timeout="string",
alerting_max_annotations_to_keep=0,
alerting_nodata_or_nullvalues="string",
allow_embedding=False,
auth_azuread=aiven.GrafanaGrafanaUserConfigAuthAzureadArgs(
auth_url="string",
client_id="string",
client_secret="string",
token_url="string",
allow_sign_up=False,
allowed_domains=["string"],
allowed_groups=["string"],
),
auth_basic_enabled=False,
auth_generic_oauth=aiven.GrafanaGrafanaUserConfigAuthGenericOauthArgs(
api_url="string",
auth_url="string",
client_id="string",
client_secret="string",
token_url="string",
allow_sign_up=False,
allowed_domains=["string"],
allowed_organizations=["string"],
auto_login=False,
name="string",
scopes=["string"],
),
auth_github=aiven.GrafanaGrafanaUserConfigAuthGithubArgs(
client_id="string",
client_secret="string",
allow_sign_up=False,
allowed_organizations=["string"],
auto_login=False,
skip_org_role_sync=False,
team_ids=[0],
),
auth_gitlab=aiven.GrafanaGrafanaUserConfigAuthGitlabArgs(
allowed_groups=["string"],
client_id="string",
client_secret="string",
allow_sign_up=False,
api_url="string",
auth_url="string",
token_url="string",
),
auth_google=aiven.GrafanaGrafanaUserConfigAuthGoogleArgs(
allowed_domains=["string"],
client_id="string",
client_secret="string",
allow_sign_up=False,
),
cookie_samesite="string",
custom_domain="string",
dashboard_previews_enabled=False,
dashboards_min_refresh_interval="string",
dashboards_versions_to_keep=0,
dataproxy_send_user_header=False,
dataproxy_timeout=0,
date_formats=aiven.GrafanaGrafanaUserConfigDateFormatsArgs(
default_timezone="string",
full_date="string",
interval_day="string",
interval_hour="string",
interval_minute="string",
interval_month="string",
interval_second="string",
interval_year="string",
),
disable_gravatar=False,
editors_can_admin=False,
external_image_storage=aiven.GrafanaGrafanaUserConfigExternalImageStorageArgs(
access_key="string",
bucket_url="string",
provider="string",
secret_key="string",
),
google_analytics_ua_id="string",
ip_filter_objects=[aiven.GrafanaGrafanaUserConfigIpFilterObjectArgs(
network="string",
description="string",
)],
ip_filter_strings=["string"],
metrics_enabled=False,
oauth_allow_insecure_email_lookup=False,
private_access=aiven.GrafanaGrafanaUserConfigPrivateAccessArgs(
grafana=False,
),
privatelink_access=aiven.GrafanaGrafanaUserConfigPrivatelinkAccessArgs(
grafana=False,
),
project_to_fork_from="string",
public_access=aiven.GrafanaGrafanaUserConfigPublicAccessArgs(
grafana=False,
),
recovery_basebackup_name="string",
service_log=False,
service_to_fork_from="string",
smtp_server=aiven.GrafanaGrafanaUserConfigSmtpServerArgs(
from_address="string",
host="string",
port=0,
from_name="string",
password="string",
skip_verify=False,
starttls_policy="string",
username="string",
),
static_ips=False,
unified_alerting_enabled=False,
user_auto_assign_org=False,
user_auto_assign_org_role="string",
viewers_can_edit=False,
),
project_vpc_id="string",
additional_disk_space="string",
maintenance_window_dow="string",
maintenance_window_time="string",
cloud_name="string",
grafana=aiven.GrafanaGrafanaArgs(
uris=["string"],
),
service_integrations=[aiven.GrafanaServiceIntegrationArgs(
integration_type="string",
source_service_name="string",
)],
service_name="string",
static_ips=["string"],
tags=[aiven.GrafanaTagArgs(
key="string",
value="string",
)],
tech_emails=[aiven.GrafanaTechEmailArgs(
email="string",
)],
termination_protection=False)
const grafanaResource = new aiven.Grafana("grafanaResource", {
plan: "string",
project: "string",
grafanaUserConfig: {
additionalBackupRegions: "string",
alertingEnabled: false,
alertingErrorOrTimeout: "string",
alertingMaxAnnotationsToKeep: 0,
alertingNodataOrNullvalues: "string",
allowEmbedding: false,
authAzuread: {
authUrl: "string",
clientId: "string",
clientSecret: "string",
tokenUrl: "string",
allowSignUp: false,
allowedDomains: ["string"],
allowedGroups: ["string"],
},
authBasicEnabled: false,
authGenericOauth: {
apiUrl: "string",
authUrl: "string",
clientId: "string",
clientSecret: "string",
tokenUrl: "string",
allowSignUp: false,
allowedDomains: ["string"],
allowedOrganizations: ["string"],
autoLogin: false,
name: "string",
scopes: ["string"],
},
authGithub: {
clientId: "string",
clientSecret: "string",
allowSignUp: false,
allowedOrganizations: ["string"],
autoLogin: false,
skipOrgRoleSync: false,
teamIds: [0],
},
authGitlab: {
allowedGroups: ["string"],
clientId: "string",
clientSecret: "string",
allowSignUp: false,
apiUrl: "string",
authUrl: "string",
tokenUrl: "string",
},
authGoogle: {
allowedDomains: ["string"],
clientId: "string",
clientSecret: "string",
allowSignUp: false,
},
cookieSamesite: "string",
customDomain: "string",
dashboardPreviewsEnabled: false,
dashboardsMinRefreshInterval: "string",
dashboardsVersionsToKeep: 0,
dataproxySendUserHeader: false,
dataproxyTimeout: 0,
dateFormats: {
defaultTimezone: "string",
fullDate: "string",
intervalDay: "string",
intervalHour: "string",
intervalMinute: "string",
intervalMonth: "string",
intervalSecond: "string",
intervalYear: "string",
},
disableGravatar: false,
editorsCanAdmin: false,
externalImageStorage: {
accessKey: "string",
bucketUrl: "string",
provider: "string",
secretKey: "string",
},
googleAnalyticsUaId: "string",
ipFilterObjects: [{
network: "string",
description: "string",
}],
ipFilterStrings: ["string"],
metricsEnabled: false,
oauthAllowInsecureEmailLookup: false,
privateAccess: {
grafana: false,
},
privatelinkAccess: {
grafana: false,
},
projectToForkFrom: "string",
publicAccess: {
grafana: false,
},
recoveryBasebackupName: "string",
serviceLog: false,
serviceToForkFrom: "string",
smtpServer: {
fromAddress: "string",
host: "string",
port: 0,
fromName: "string",
password: "string",
skipVerify: false,
starttlsPolicy: "string",
username: "string",
},
staticIps: false,
unifiedAlertingEnabled: false,
userAutoAssignOrg: false,
userAutoAssignOrgRole: "string",
viewersCanEdit: false,
},
projectVpcId: "string",
additionalDiskSpace: "string",
maintenanceWindowDow: "string",
maintenanceWindowTime: "string",
cloudName: "string",
grafana: {
uris: ["string"],
},
serviceIntegrations: [{
integrationType: "string",
sourceServiceName: "string",
}],
serviceName: "string",
staticIps: ["string"],
tags: [{
key: "string",
value: "string",
}],
techEmails: [{
email: "string",
}],
terminationProtection: false,
});
type: aiven:Grafana
properties:
additionalDiskSpace: string
cloudName: string
grafana:
uris:
- string
grafanaUserConfig:
additionalBackupRegions: string
alertingEnabled: false
alertingErrorOrTimeout: string
alertingMaxAnnotationsToKeep: 0
alertingNodataOrNullvalues: string
allowEmbedding: false
authAzuread:
allowSignUp: false
allowedDomains:
- string
allowedGroups:
- string
authUrl: string
clientId: string
clientSecret: string
tokenUrl: string
authBasicEnabled: false
authGenericOauth:
allowSignUp: false
allowedDomains:
- string
allowedOrganizations:
- string
apiUrl: string
authUrl: string
autoLogin: false
clientId: string
clientSecret: string
name: string
scopes:
- string
tokenUrl: string
authGithub:
allowSignUp: false
allowedOrganizations:
- string
autoLogin: false
clientId: string
clientSecret: string
skipOrgRoleSync: false
teamIds:
- 0
authGitlab:
allowSignUp: false
allowedGroups:
- string
apiUrl: string
authUrl: string
clientId: string
clientSecret: string
tokenUrl: string
authGoogle:
allowSignUp: false
allowedDomains:
- string
clientId: string
clientSecret: string
cookieSamesite: string
customDomain: string
dashboardPreviewsEnabled: false
dashboardsMinRefreshInterval: string
dashboardsVersionsToKeep: 0
dataproxySendUserHeader: false
dataproxyTimeout: 0
dateFormats:
defaultTimezone: string
fullDate: string
intervalDay: string
intervalHour: string
intervalMinute: string
intervalMonth: string
intervalSecond: string
intervalYear: string
disableGravatar: false
editorsCanAdmin: false
externalImageStorage:
accessKey: string
bucketUrl: string
provider: string
secretKey: string
googleAnalyticsUaId: string
ipFilterObjects:
- description: string
network: string
ipFilterStrings:
- string
metricsEnabled: false
oauthAllowInsecureEmailLookup: false
privateAccess:
grafana: false
privatelinkAccess:
grafana: false
projectToForkFrom: string
publicAccess:
grafana: false
recoveryBasebackupName: string
serviceLog: false
serviceToForkFrom: string
smtpServer:
fromAddress: string
fromName: string
host: string
password: string
port: 0
skipVerify: false
starttlsPolicy: string
username: string
staticIps: false
unifiedAlertingEnabled: false
userAutoAssignOrg: false
userAutoAssignOrgRole: string
viewersCanEdit: false
maintenanceWindowDow: string
maintenanceWindowTime: string
plan: string
project: string
projectVpcId: string
serviceIntegrations:
- integrationType: string
sourceServiceName: string
serviceName: string
staticIps:
- string
tags:
- key: string
value: string
techEmails:
- email: string
terminationProtection: false
Grafana Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Grafana resource accepts the following input properties:
- Plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - Disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Grafana
Server GrafanaGrafana - Grafana server provided values
- Grafana
User GrafanaConfig Grafana User Config - Grafana user configurable settings
- Maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Integrations List<GrafanaService Integration> - Service integrations to specify when creating a service. Not applied after initial service creation
- Service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- Static
Ips List<string> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- List<Grafana
Tag> - Tags are key-value pairs that allow you to categorize services.
- Tech
Emails List<GrafanaTech Email> - The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- Termination
Protection bool - Prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- Plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - Disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Grafana
Grafana
Grafana Args - Grafana server provided values
- Grafana
User GrafanaConfig Grafana User Config Args - Grafana user configurable settings
- Maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Integrations []GrafanaService Integration Args - Service integrations to specify when creating a service. Not applied after initial service creation
- Service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- Static
Ips []string - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- []Grafana
Tag Args - Tags are key-value pairs that allow you to categorize services.
- Tech
Emails []GrafanaTech Email Args - The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- Termination
Protection bool - Prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- plan String
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- additional
Disk StringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name String - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - disk
Space String - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- grafana
Grafana
Grafana - Grafana server provided values
- grafana
User GrafanaConfig Grafana User Config - Grafana user configurable settings
- maintenance
Window StringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window StringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- project
Vpc StringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Integrations List<GrafanaService Integration> - Service integrations to specify when creating a service. Not applied after initial service creation
- service
Name String - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- static
Ips List<String> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- List<Grafana
Tag> - Tags are key-value pairs that allow you to categorize services.
- tech
Emails List<GrafanaTech Email> - The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- termination
Protection Boolean - Prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- grafana
Grafana
Grafana - Grafana server provided values
- grafana
User GrafanaConfig Grafana User Config - Grafana user configurable settings
- maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Integrations GrafanaService Integration[] - Service integrations to specify when creating a service. Not applied after initial service creation
- service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- static
Ips string[] - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- Grafana
Tag[] - Tags are key-value pairs that allow you to categorize services.
- tech
Emails GrafanaTech Email[] - The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- termination
Protection boolean - Prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- plan str
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project str
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- additional_
disk_ strspace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud_
name str - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - disk_
space str - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- grafana
Grafana
Grafana Args - Grafana server provided values
- grafana_
user_ Grafanaconfig Grafana User Config Args - Grafana user configurable settings
- maintenance_
window_ strdow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance_
window_ strtime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- project_
vpc_ strid - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service_
integrations Sequence[GrafanaService Integration Args] - Service integrations to specify when creating a service. Not applied after initial service creation
- service_
name str - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- static_
ips Sequence[str] - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- Sequence[Grafana
Tag Args] - Tags are key-value pairs that allow you to categorize services.
- tech_
emails Sequence[GrafanaTech Email Args] - The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- termination_
protection bool - Prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- plan String
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- additional
Disk StringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name String - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - disk
Space String - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- grafana Property Map
- Grafana server provided values
- grafana
User Property MapConfig - Grafana user configurable settings
- maintenance
Window StringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window StringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- project
Vpc StringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Integrations List<Property Map> - Service integrations to specify when creating a service. Not applied after initial service creation
- service
Name String - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- static
Ips List<String> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- List<Property Map>
- Tags are key-value pairs that allow you to categorize services.
- tech
Emails List<Property Map> - The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- termination
Protection Boolean - Prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
Outputs
All input properties are implicitly available as output properties. Additionally, the Grafana resource produces the following output properties:
- Components
List<Grafana
Component> - Service component information objects
- Disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- Disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space
- Disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_space
needs to increment fromdisk_space_default
by increments of this size. - Disk
Space stringUsed - Disk space that service is currently using
- Id string
- The provider-assigned unique ID for this managed resource.
- Service
Host string - The hostname of the service.
- Service
Password string - Password used for connecting to the service, if applicable
- Service
Port int - The port of the service
- Service
Type string - Aiven internal service type code
- Service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- Service
Username string - Username used for connecting to the service, if applicable
- State string
- Service state. One of
POWEROFF
,REBALANCING
,REBUILDING
orRUNNING
- Components
[]Grafana
Component - Service component information objects
- Disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- Disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space
- Disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_space
needs to increment fromdisk_space_default
by increments of this size. - Disk
Space stringUsed - Disk space that service is currently using
- Id string
- The provider-assigned unique ID for this managed resource.
- Service
Host string - The hostname of the service.
- Service
Password string - Password used for connecting to the service, if applicable
- Service
Port int - The port of the service
- Service
Type string - Aiven internal service type code
- Service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- Service
Username string - Username used for connecting to the service, if applicable
- State string
- Service state. One of
POWEROFF
,REBALANCING
,REBUILDING
orRUNNING
- components
List<Grafana
Component> - Service component information objects
- disk
Space StringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space StringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space
- disk
Space StringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_space
needs to increment fromdisk_space_default
by increments of this size. - disk
Space StringUsed - Disk space that service is currently using
- id String
- The provider-assigned unique ID for this managed resource.
- service
Host String - The hostname of the service.
- service
Password String - Password used for connecting to the service, if applicable
- service
Port Integer - The port of the service
- service
Type String - Aiven internal service type code
- service
Uri String - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username String - Username used for connecting to the service, if applicable
- state String
- Service state. One of
POWEROFF
,REBALANCING
,REBUILDING
orRUNNING
- components
Grafana
Component[] - Service component information objects
- disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space
- disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_space
needs to increment fromdisk_space_default
by increments of this size. - disk
Space stringUsed - Disk space that service is currently using
- id string
- The provider-assigned unique ID for this managed resource.
- service
Host string - The hostname of the service.
- service
Password string - Password used for connecting to the service, if applicable
- service
Port number - The port of the service
- service
Type string - Aiven internal service type code
- service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username string - Username used for connecting to the service, if applicable
- state string
- Service state. One of
POWEROFF
,REBALANCING
,REBUILDING
orRUNNING
- components
Sequence[Grafana
Component] - Service component information objects
- disk_
space_ strcap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk_
space_ strdefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space
- disk_
space_ strstep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_space
needs to increment fromdisk_space_default
by increments of this size. - disk_
space_ strused - Disk space that service is currently using
- id str
- The provider-assigned unique ID for this managed resource.
- service_
host str - The hostname of the service.
- service_
password str - Password used for connecting to the service, if applicable
- service_
port int - The port of the service
- service_
type str - Aiven internal service type code
- service_
uri str - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service_
username str - Username used for connecting to the service, if applicable
- state str
- Service state. One of
POWEROFF
,REBALANCING
,REBUILDING
orRUNNING
- components List<Property Map>
- Service component information objects
- disk
Space StringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space StringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space
- disk
Space StringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_space
needs to increment fromdisk_space_default
by increments of this size. - disk
Space StringUsed - Disk space that service is currently using
- id String
- The provider-assigned unique ID for this managed resource.
- service
Host String - The hostname of the service.
- service
Password String - Password used for connecting to the service, if applicable
- service
Port Number - The port of the service
- service
Type String - Aiven internal service type code
- service
Uri String - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username String - Username used for connecting to the service, if applicable
- state String
- Service state. One of
POWEROFF
,REBALANCING
,REBUILDING
orRUNNING
Look up Existing Grafana Resource
Get an existing Grafana resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: GrafanaState, opts?: CustomResourceOptions): Grafana
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
additional_disk_space: Optional[str] = None,
cloud_name: Optional[str] = None,
components: Optional[Sequence[GrafanaComponentArgs]] = None,
disk_space: Optional[str] = None,
disk_space_cap: Optional[str] = None,
disk_space_default: Optional[str] = None,
disk_space_step: Optional[str] = None,
disk_space_used: Optional[str] = None,
grafana: Optional[GrafanaGrafanaArgs] = None,
grafana_user_config: Optional[GrafanaGrafanaUserConfigArgs] = None,
maintenance_window_dow: Optional[str] = None,
maintenance_window_time: Optional[str] = None,
plan: Optional[str] = None,
project: Optional[str] = None,
project_vpc_id: Optional[str] = None,
service_host: Optional[str] = None,
service_integrations: Optional[Sequence[GrafanaServiceIntegrationArgs]] = None,
service_name: Optional[str] = None,
service_password: Optional[str] = None,
service_port: Optional[int] = None,
service_type: Optional[str] = None,
service_uri: Optional[str] = None,
service_username: Optional[str] = None,
state: Optional[str] = None,
static_ips: Optional[Sequence[str]] = None,
tags: Optional[Sequence[GrafanaTagArgs]] = None,
tech_emails: Optional[Sequence[GrafanaTechEmailArgs]] = None,
termination_protection: Optional[bool] = None) -> Grafana
func GetGrafana(ctx *Context, name string, id IDInput, state *GrafanaState, opts ...ResourceOption) (*Grafana, error)
public static Grafana Get(string name, Input<string> id, GrafanaState? state, CustomResourceOptions? opts = null)
public static Grafana get(String name, Output<String> id, GrafanaState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - Components
List<Grafana
Component> - Service component information objects
- Disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- Disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space
- Disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_space
needs to increment fromdisk_space_default
by increments of this size. - Disk
Space stringUsed - Disk space that service is currently using
- Grafana
Server GrafanaGrafana - Grafana server provided values
- Grafana
User GrafanaConfig Grafana User Config - Grafana user configurable settings
- Maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Host string - The hostname of the service.
- Service
Integrations List<GrafanaService Integration> - Service integrations to specify when creating a service. Not applied after initial service creation
- Service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- Service
Password string - Password used for connecting to the service, if applicable
- Service
Port int - The port of the service
- Service
Type string - Aiven internal service type code
- Service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- Service
Username string - Username used for connecting to the service, if applicable
- State string
- Service state. One of
POWEROFF
,REBALANCING
,REBUILDING
orRUNNING
- Static
Ips List<string> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- List<Grafana
Tag> - Tags are key-value pairs that allow you to categorize services.
- Tech
Emails List<GrafanaTech Email> - The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- Termination
Protection bool - Prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- Additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - Components
[]Grafana
Component Args - Service component information objects
- Disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- Disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space
- Disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_space
needs to increment fromdisk_space_default
by increments of this size. - Disk
Space stringUsed - Disk space that service is currently using
- Grafana
Grafana
Grafana Args - Grafana server provided values
- Grafana
User GrafanaConfig Grafana User Config Args - Grafana user configurable settings
- Maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Host string - The hostname of the service.
- Service
Integrations []GrafanaService Integration Args - Service integrations to specify when creating a service. Not applied after initial service creation
- Service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- Service
Password string - Password used for connecting to the service, if applicable
- Service
Port int - The port of the service
- Service
Type string - Aiven internal service type code
- Service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- Service
Username string - Username used for connecting to the service, if applicable
- State string
- Service state. One of
POWEROFF
,REBALANCING
,REBUILDING
orRUNNING
- Static
Ips []string - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- []Grafana
Tag Args - Tags are key-value pairs that allow you to categorize services.
- Tech
Emails []GrafanaTech Email Args - The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- Termination
Protection bool - Prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- additional
Disk StringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name String - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - components
List<Grafana
Component> - Service component information objects
- disk
Space String - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- disk
Space StringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space StringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space
- disk
Space StringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_space
needs to increment fromdisk_space_default
by increments of this size. - disk
Space StringUsed - Disk space that service is currently using
- grafana
Grafana
Grafana - Grafana server provided values
- grafana
User GrafanaConfig Grafana User Config - Grafana user configurable settings
- maintenance
Window StringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window StringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan String
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- project
Vpc StringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Host String - The hostname of the service.
- service
Integrations List<GrafanaService Integration> - Service integrations to specify when creating a service. Not applied after initial service creation
- service
Name String - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- service
Password String - Password used for connecting to the service, if applicable
- service
Port Integer - The port of the service
- service
Type String - Aiven internal service type code
- service
Uri String - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username String - Username used for connecting to the service, if applicable
- state String
- Service state. One of
POWEROFF
,REBALANCING
,REBUILDING
orRUNNING
- static
Ips List<String> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- List<Grafana
Tag> - Tags are key-value pairs that allow you to categorize services.
- tech
Emails List<GrafanaTech Email> - The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- termination
Protection Boolean - Prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - components
Grafana
Component[] - Service component information objects
- disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space
- disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_space
needs to increment fromdisk_space_default
by increments of this size. - disk
Space stringUsed - Disk space that service is currently using
- grafana
Grafana
Grafana - Grafana server provided values
- grafana
User GrafanaConfig Grafana User Config - Grafana user configurable settings
- maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Host string - The hostname of the service.
- service
Integrations GrafanaService Integration[] - Service integrations to specify when creating a service. Not applied after initial service creation
- service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- service
Password string - Password used for connecting to the service, if applicable
- service
Port number - The port of the service
- service
Type string - Aiven internal service type code
- service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username string - Username used for connecting to the service, if applicable
- state string
- Service state. One of
POWEROFF
,REBALANCING
,REBUILDING
orRUNNING
- static
Ips string[] - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- Grafana
Tag[] - Tags are key-value pairs that allow you to categorize services.
- tech
Emails GrafanaTech Email[] - The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- termination
Protection boolean - Prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- additional_
disk_ strspace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud_
name str - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - components
Sequence[Grafana
Component Args] - Service component information objects
- disk_
space str - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- disk_
space_ strcap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk_
space_ strdefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space
- disk_
space_ strstep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_space
needs to increment fromdisk_space_default
by increments of this size. - disk_
space_ strused - Disk space that service is currently using
- grafana
Grafana
Grafana Args - Grafana server provided values
- grafana_
user_ Grafanaconfig Grafana User Config Args - Grafana user configurable settings
- maintenance_
window_ strdow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance_
window_ strtime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan str
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project str
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- project_
vpc_ strid - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service_
host str - The hostname of the service.
- service_
integrations Sequence[GrafanaService Integration Args] - Service integrations to specify when creating a service. Not applied after initial service creation
- service_
name str - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- service_
password str - Password used for connecting to the service, if applicable
- service_
port int - The port of the service
- service_
type str - Aiven internal service type code
- service_
uri str - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service_
username str - Username used for connecting to the service, if applicable
- state str
- Service state. One of
POWEROFF
,REBALANCING
,REBUILDING
orRUNNING
- static_
ips Sequence[str] - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- Sequence[Grafana
Tag Args] - Tags are key-value pairs that allow you to categorize services.
- tech_
emails Sequence[GrafanaTech Email Args] - The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- termination_
protection bool - Prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- additional
Disk StringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name String - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - components List<Property Map>
- Service component information objects
- disk
Space String - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- disk
Space StringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space StringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for
disk_space
- disk
Space StringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the project.
disk_space
needs to increment fromdisk_space_default
by increments of this size. - disk
Space StringUsed - Disk space that service is currently using
- grafana Property Map
- Grafana server provided values
- grafana
User Property MapConfig - Grafana user configurable settings
- maintenance
Window StringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window StringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan String
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- project
Vpc StringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Host String - The hostname of the service.
- service
Integrations List<Property Map> - Service integrations to specify when creating a service. Not applied after initial service creation
- service
Name String - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- service
Password String - Password used for connecting to the service, if applicable
- service
Port Number - The port of the service
- service
Type String - Aiven internal service type code
- service
Uri String - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username String - Username used for connecting to the service, if applicable
- state String
- Service state. One of
POWEROFF
,REBALANCING
,REBUILDING
orRUNNING
- static
Ips List<String> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- List<Property Map>
- Tags are key-value pairs that allow you to categorize services.
- tech
Emails List<Property Map> - The email addresses for service contacts, who will receive important alerts and updates about this service. You can also set email contacts at the project level.
- termination
Protection Boolean - Prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
Supporting Types
GrafanaComponent, GrafanaComponentArgs
- Component string
- Service component name
- Connection
Uri string - Connection info for connecting to the service component. This is a combination of host and port.
- Host string
- Host name for connecting to the service component
- Kafka
Authentication stringMethod - Kafka authentication method. This is a value specific to the 'kafka' service component
- Port int
- Port number for connecting to the service component
- Route string
- Network access route
- Ssl bool
- Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
- Usage string
- DNS usage name
- Component string
- Service component name
- Connection
Uri string - Connection info for connecting to the service component. This is a combination of host and port.
- Host string
- Host name for connecting to the service component
- Kafka
Authentication stringMethod - Kafka authentication method. This is a value specific to the 'kafka' service component
- Port int
- Port number for connecting to the service component
- Route string
- Network access route
- Ssl bool
- Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
- Usage string
- DNS usage name
- component String
- Service component name
- connection
Uri String - Connection info for connecting to the service component. This is a combination of host and port.
- host String
- Host name for connecting to the service component
- kafka
Authentication StringMethod - Kafka authentication method. This is a value specific to the 'kafka' service component
- port Integer
- Port number for connecting to the service component
- route String
- Network access route
- ssl Boolean
- Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
- usage String
- DNS usage name
- component string
- Service component name
- connection
Uri string - Connection info for connecting to the service component. This is a combination of host and port.
- host string
- Host name for connecting to the service component
- kafka
Authentication stringMethod - Kafka authentication method. This is a value specific to the 'kafka' service component
- port number
- Port number for connecting to the service component
- route string
- Network access route
- ssl boolean
- Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
- usage string
- DNS usage name
- component str
- Service component name
- connection_
uri str - Connection info for connecting to the service component. This is a combination of host and port.
- host str
- Host name for connecting to the service component
- kafka_
authentication_ strmethod - Kafka authentication method. This is a value specific to the 'kafka' service component
- port int
- Port number for connecting to the service component
- route str
- Network access route
- ssl bool
- Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
- usage str
- DNS usage name
- component String
- Service component name
- connection
Uri String - Connection info for connecting to the service component. This is a combination of host and port.
- host String
- Host name for connecting to the service component
- kafka
Authentication StringMethod - Kafka authentication method. This is a value specific to the 'kafka' service component
- port Number
- Port number for connecting to the service component
- route String
- Network access route
- ssl Boolean
- Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
- usage String
- DNS usage name
GrafanaGrafana, GrafanaGrafanaArgs
- Uris List<string>
- Grafana server URIs.
- Uris []string
- Grafana server URIs.
- uris List<String>
- Grafana server URIs.
- uris string[]
- Grafana server URIs.
- uris Sequence[str]
- Grafana server URIs.
- uris List<String>
- Grafana server URIs.
GrafanaGrafanaUserConfig, GrafanaGrafanaUserConfigArgs
- Additional
Backup stringRegions - Additional Cloud Regions for Backup Replication.
- Alerting
Enabled bool - Enable or disable Grafana legacy alerting functionality. This should not be enabled with unifiedalertingenabled.
- Alerting
Error stringOr Timeout - Enum:
alerting
,keep_state
. Default error or timeout setting for new alerting rules. - Alerting
Max intAnnotations To Keep - Max number of alert annotations that Grafana stores. 0 (default) keeps all alert annotations. Example:
0
. - Alerting
Nodata stringOr Nullvalues - Enum:
alerting
,no_data
,keep_state
,ok
. Default value for 'no data or null values' for new alerting rules. - Allow
Embedding bool - Allow embedding Grafana dashboards with iframe/frame/object/embed tags. Disabled by default to limit impact of clickjacking.
- Auth
Azuread GrafanaGrafana User Config Auth Azuread - Azure AD OAuth integration
- Auth
Basic boolEnabled - Enable or disable basic authentication form, used by Grafana built-in login.
- Auth
Generic GrafanaOauth Grafana User Config Auth Generic Oauth - Generic OAuth integration
- Auth
Github GrafanaGrafana User Config Auth Github - Github Auth integration
- Auth
Gitlab GrafanaGrafana User Config Auth Gitlab - GitLab Auth integration
- Auth
Google GrafanaGrafana User Config Auth Google - Google Auth integration
- string
- Enum:
lax
,strict
,none
. Cookie SameSite attribute:strict
prevents sending cookie for cross-site requests, effectively disabling direct linking from other sites to Grafana.lax
is the default value. - Custom
Domain string - Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example:
grafana.example.org
. - Dashboard
Previews boolEnabled - This feature is new in Grafana 9 and is quite resource intensive. It may cause low-end plans to work more slowly while the dashboard previews are rendering.
- Dashboards
Min stringRefresh Interval - Signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s, 1h. Example:
5s
. - Dashboards
Versions intTo Keep - Dashboard versions to keep per dashboard. Example:
20
. - Dataproxy
Send boolUser Header - Send
X-Grafana-User
header to data source. - Dataproxy
Timeout int - Timeout for data proxy requests in seconds. Example:
30
. - Date
Formats GrafanaGrafana User Config Date Formats - Grafana date format specifications
- Disable
Gravatar bool - Set to true to disable gravatar. Defaults to false (gravatar is enabled).
- Editors
Can boolAdmin - Editors can manage folders, teams and dashboards created by them.
- External
Image GrafanaStorage Grafana User Config External Image Storage - External image store settings
- Google
Analytics stringUa Id - Google Analytics ID. Example:
UA-123456-4
. - Ip
Filter List<GrafanaObjects Grafana User Config Ip Filter Object> - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- Ip
Filter List<string>Strings - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
. - Ip
Filters List<string> - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
. - Metrics
Enabled bool - Enable Grafana /metrics endpoint.
- Oauth
Allow boolInsecure Email Lookup - Enforce user lookup based on email instead of the unique ID provided by the IdP.
- Private
Access GrafanaGrafana User Config Private Access - Allow access to selected service ports from private networks
- Privatelink
Access GrafanaGrafana User Config Privatelink Access - Allow access to selected service components through Privatelink
- Project
To stringFork From - Name of another project to fork a service from. This has effect only when a new service is being created. Example:
anotherprojectname
. - Public
Access GrafanaGrafana User Config Public Access - Allow access to selected service ports from the public Internet
- Recovery
Basebackup stringName - Name of the basebackup to restore in forked service. Example:
backup-20191112t091354293891z
. - Service
Log bool - Store logs for the service so that they are available in the HTTP API and console.
- Service
To stringFork From - Name of another service to fork from. This has effect only when a new service is being created. Example:
anotherservicename
. - Smtp
Server GrafanaGrafana User Config Smtp Server - SMTP server settings
- Static
Ips bool - Use static public IP addresses.
- Unified
Alerting boolEnabled - Enable or disable Grafana unified alerting functionality. By default this is enabled and any legacy alerts will be migrated on upgrade to Grafana 9+. To stay on legacy alerting, set unifiedalertingenabled to false and alerting_enabled to true. See https://grafana.com/docs/grafana/latest/alerting/set-up/migrating-alerts/ for more details.
- User
Auto boolAssign Org - Auto-assign new users on signup to main organization. Defaults to false.
- User
Auto stringAssign Org Role - Enum:
Viewer
,Admin
,Editor
. Set role for new signups. Defaults to Viewer. - Viewers
Can boolEdit - Users with view-only permission can edit but not save dashboards.
- Additional
Backup stringRegions - Additional Cloud Regions for Backup Replication.
- Alerting
Enabled bool - Enable or disable Grafana legacy alerting functionality. This should not be enabled with unifiedalertingenabled.
- Alerting
Error stringOr Timeout - Enum:
alerting
,keep_state
. Default error or timeout setting for new alerting rules. - Alerting
Max intAnnotations To Keep - Max number of alert annotations that Grafana stores. 0 (default) keeps all alert annotations. Example:
0
. - Alerting
Nodata stringOr Nullvalues - Enum:
alerting
,no_data
,keep_state
,ok
. Default value for 'no data or null values' for new alerting rules. - Allow
Embedding bool - Allow embedding Grafana dashboards with iframe/frame/object/embed tags. Disabled by default to limit impact of clickjacking.
- Auth
Azuread GrafanaGrafana User Config Auth Azuread - Azure AD OAuth integration
- Auth
Basic boolEnabled - Enable or disable basic authentication form, used by Grafana built-in login.
- Auth
Generic GrafanaOauth Grafana User Config Auth Generic Oauth - Generic OAuth integration
- Auth
Github GrafanaGrafana User Config Auth Github - Github Auth integration
- Auth
Gitlab GrafanaGrafana User Config Auth Gitlab - GitLab Auth integration
- Auth
Google GrafanaGrafana User Config Auth Google - Google Auth integration
- string
- Enum:
lax
,strict
,none
. Cookie SameSite attribute:strict
prevents sending cookie for cross-site requests, effectively disabling direct linking from other sites to Grafana.lax
is the default value. - Custom
Domain string - Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example:
grafana.example.org
. - Dashboard
Previews boolEnabled - This feature is new in Grafana 9 and is quite resource intensive. It may cause low-end plans to work more slowly while the dashboard previews are rendering.
- Dashboards
Min stringRefresh Interval - Signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s, 1h. Example:
5s
. - Dashboards
Versions intTo Keep - Dashboard versions to keep per dashboard. Example:
20
. - Dataproxy
Send boolUser Header - Send
X-Grafana-User
header to data source. - Dataproxy
Timeout int - Timeout for data proxy requests in seconds. Example:
30
. - Date
Formats GrafanaGrafana User Config Date Formats - Grafana date format specifications
- Disable
Gravatar bool - Set to true to disable gravatar. Defaults to false (gravatar is enabled).
- Editors
Can boolAdmin - Editors can manage folders, teams and dashboards created by them.
- External
Image GrafanaStorage Grafana User Config External Image Storage - External image store settings
- Google
Analytics stringUa Id - Google Analytics ID. Example:
UA-123456-4
. - Ip
Filter []GrafanaObjects Grafana User Config Ip Filter Object - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- Ip
Filter []stringStrings - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
. - Ip
Filters []string - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
. - Metrics
Enabled bool - Enable Grafana /metrics endpoint.
- Oauth
Allow boolInsecure Email Lookup - Enforce user lookup based on email instead of the unique ID provided by the IdP.
- Private
Access GrafanaGrafana User Config Private Access - Allow access to selected service ports from private networks
- Privatelink
Access GrafanaGrafana User Config Privatelink Access - Allow access to selected service components through Privatelink
- Project
To stringFork From - Name of another project to fork a service from. This has effect only when a new service is being created. Example:
anotherprojectname
. - Public
Access GrafanaGrafana User Config Public Access - Allow access to selected service ports from the public Internet
- Recovery
Basebackup stringName - Name of the basebackup to restore in forked service. Example:
backup-20191112t091354293891z
. - Service
Log bool - Store logs for the service so that they are available in the HTTP API and console.
- Service
To stringFork From - Name of another service to fork from. This has effect only when a new service is being created. Example:
anotherservicename
. - Smtp
Server GrafanaGrafana User Config Smtp Server - SMTP server settings
- Static
Ips bool - Use static public IP addresses.
- Unified
Alerting boolEnabled - Enable or disable Grafana unified alerting functionality. By default this is enabled and any legacy alerts will be migrated on upgrade to Grafana 9+. To stay on legacy alerting, set unifiedalertingenabled to false and alerting_enabled to true. See https://grafana.com/docs/grafana/latest/alerting/set-up/migrating-alerts/ for more details.
- User
Auto boolAssign Org - Auto-assign new users on signup to main organization. Defaults to false.
- User
Auto stringAssign Org Role - Enum:
Viewer
,Admin
,Editor
. Set role for new signups. Defaults to Viewer. - Viewers
Can boolEdit - Users with view-only permission can edit but not save dashboards.
- additional
Backup StringRegions - Additional Cloud Regions for Backup Replication.
- alerting
Enabled Boolean - Enable or disable Grafana legacy alerting functionality. This should not be enabled with unifiedalertingenabled.
- alerting
Error StringOr Timeout - Enum:
alerting
,keep_state
. Default error or timeout setting for new alerting rules. - alerting
Max IntegerAnnotations To Keep - Max number of alert annotations that Grafana stores. 0 (default) keeps all alert annotations. Example:
0
. - alerting
Nodata StringOr Nullvalues - Enum:
alerting
,no_data
,keep_state
,ok
. Default value for 'no data or null values' for new alerting rules. - allow
Embedding Boolean - Allow embedding Grafana dashboards with iframe/frame/object/embed tags. Disabled by default to limit impact of clickjacking.
- auth
Azuread GrafanaGrafana User Config Auth Azuread - Azure AD OAuth integration
- auth
Basic BooleanEnabled - Enable or disable basic authentication form, used by Grafana built-in login.
- auth
Generic GrafanaOauth Grafana User Config Auth Generic Oauth - Generic OAuth integration
- auth
Github GrafanaGrafana User Config Auth Github - Github Auth integration
- auth
Gitlab GrafanaGrafana User Config Auth Gitlab - GitLab Auth integration
- auth
Google GrafanaGrafana User Config Auth Google - Google Auth integration
- String
- Enum:
lax
,strict
,none
. Cookie SameSite attribute:strict
prevents sending cookie for cross-site requests, effectively disabling direct linking from other sites to Grafana.lax
is the default value. - custom
Domain String - Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example:
grafana.example.org
. - dashboard
Previews BooleanEnabled - This feature is new in Grafana 9 and is quite resource intensive. It may cause low-end plans to work more slowly while the dashboard previews are rendering.
- dashboards
Min StringRefresh Interval - Signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s, 1h. Example:
5s
. - dashboards
Versions IntegerTo Keep - Dashboard versions to keep per dashboard. Example:
20
. - dataproxy
Send BooleanUser Header - Send
X-Grafana-User
header to data source. - dataproxy
Timeout Integer - Timeout for data proxy requests in seconds. Example:
30
. - date
Formats GrafanaGrafana User Config Date Formats - Grafana date format specifications
- disable
Gravatar Boolean - Set to true to disable gravatar. Defaults to false (gravatar is enabled).
- editors
Can BooleanAdmin - Editors can manage folders, teams and dashboards created by them.
- external
Image GrafanaStorage Grafana User Config External Image Storage - External image store settings
- google
Analytics StringUa Id - Google Analytics ID. Example:
UA-123456-4
. - ip
Filter List<GrafanaObjects Grafana User Config Ip Filter Object> - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- ip
Filter List<String>Strings - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
. - ip
Filters List<String> - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
. - metrics
Enabled Boolean - Enable Grafana /metrics endpoint.
- oauth
Allow BooleanInsecure Email Lookup - Enforce user lookup based on email instead of the unique ID provided by the IdP.
- private
Access GrafanaGrafana User Config Private Access - Allow access to selected service ports from private networks
- privatelink
Access GrafanaGrafana User Config Privatelink Access - Allow access to selected service components through Privatelink
- project
To StringFork From - Name of another project to fork a service from. This has effect only when a new service is being created. Example:
anotherprojectname
. - public
Access GrafanaGrafana User Config Public Access - Allow access to selected service ports from the public Internet
- recovery
Basebackup StringName - Name of the basebackup to restore in forked service. Example:
backup-20191112t091354293891z
. - service
Log Boolean - Store logs for the service so that they are available in the HTTP API and console.
- service
To StringFork From - Name of another service to fork from. This has effect only when a new service is being created. Example:
anotherservicename
. - smtp
Server GrafanaGrafana User Config Smtp Server - SMTP server settings
- static
Ips Boolean - Use static public IP addresses.
- unified
Alerting BooleanEnabled - Enable or disable Grafana unified alerting functionality. By default this is enabled and any legacy alerts will be migrated on upgrade to Grafana 9+. To stay on legacy alerting, set unifiedalertingenabled to false and alerting_enabled to true. See https://grafana.com/docs/grafana/latest/alerting/set-up/migrating-alerts/ for more details.
- user
Auto BooleanAssign Org - Auto-assign new users on signup to main organization. Defaults to false.
- user
Auto StringAssign Org Role - Enum:
Viewer
,Admin
,Editor
. Set role for new signups. Defaults to Viewer. - viewers
Can BooleanEdit - Users with view-only permission can edit but not save dashboards.
- additional
Backup stringRegions - Additional Cloud Regions for Backup Replication.
- alerting
Enabled boolean - Enable or disable Grafana legacy alerting functionality. This should not be enabled with unifiedalertingenabled.
- alerting
Error stringOr Timeout - Enum:
alerting
,keep_state
. Default error or timeout setting for new alerting rules. - alerting
Max numberAnnotations To Keep - Max number of alert annotations that Grafana stores. 0 (default) keeps all alert annotations. Example:
0
. - alerting
Nodata stringOr Nullvalues - Enum:
alerting
,no_data
,keep_state
,ok
. Default value for 'no data or null values' for new alerting rules. - allow
Embedding boolean - Allow embedding Grafana dashboards with iframe/frame/object/embed tags. Disabled by default to limit impact of clickjacking.
- auth
Azuread GrafanaGrafana User Config Auth Azuread - Azure AD OAuth integration
- auth
Basic booleanEnabled - Enable or disable basic authentication form, used by Grafana built-in login.
- auth
Generic GrafanaOauth Grafana User Config Auth Generic Oauth - Generic OAuth integration
- auth
Github GrafanaGrafana User Config Auth Github - Github Auth integration
- auth
Gitlab GrafanaGrafana User Config Auth Gitlab - GitLab Auth integration
- auth
Google GrafanaGrafana User Config Auth Google - Google Auth integration
- string
- Enum:
lax
,strict
,none
. Cookie SameSite attribute:strict
prevents sending cookie for cross-site requests, effectively disabling direct linking from other sites to Grafana.lax
is the default value. - custom
Domain string - Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example:
grafana.example.org
. - dashboard
Previews booleanEnabled - This feature is new in Grafana 9 and is quite resource intensive. It may cause low-end plans to work more slowly while the dashboard previews are rendering.
- dashboards
Min stringRefresh Interval - Signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s, 1h. Example:
5s
. - dashboards
Versions numberTo Keep - Dashboard versions to keep per dashboard. Example:
20
. - dataproxy
Send booleanUser Header - Send
X-Grafana-User
header to data source. - dataproxy
Timeout number - Timeout for data proxy requests in seconds. Example:
30
. - date
Formats GrafanaGrafana User Config Date Formats - Grafana date format specifications
- disable
Gravatar boolean - Set to true to disable gravatar. Defaults to false (gravatar is enabled).
- editors
Can booleanAdmin - Editors can manage folders, teams and dashboards created by them.
- external
Image GrafanaStorage Grafana User Config External Image Storage - External image store settings
- google
Analytics stringUa Id - Google Analytics ID. Example:
UA-123456-4
. - ip
Filter GrafanaObjects Grafana User Config Ip Filter Object[] - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- ip
Filter string[]Strings - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
. - ip
Filters string[] - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
. - metrics
Enabled boolean - Enable Grafana /metrics endpoint.
- oauth
Allow booleanInsecure Email Lookup - Enforce user lookup based on email instead of the unique ID provided by the IdP.
- private
Access GrafanaGrafana User Config Private Access - Allow access to selected service ports from private networks
- privatelink
Access GrafanaGrafana User Config Privatelink Access - Allow access to selected service components through Privatelink
- project
To stringFork From - Name of another project to fork a service from. This has effect only when a new service is being created. Example:
anotherprojectname
. - public
Access GrafanaGrafana User Config Public Access - Allow access to selected service ports from the public Internet
- recovery
Basebackup stringName - Name of the basebackup to restore in forked service. Example:
backup-20191112t091354293891z
. - service
Log boolean - Store logs for the service so that they are available in the HTTP API and console.
- service
To stringFork From - Name of another service to fork from. This has effect only when a new service is being created. Example:
anotherservicename
. - smtp
Server GrafanaGrafana User Config Smtp Server - SMTP server settings
- static
Ips boolean - Use static public IP addresses.
- unified
Alerting booleanEnabled - Enable or disable Grafana unified alerting functionality. By default this is enabled and any legacy alerts will be migrated on upgrade to Grafana 9+. To stay on legacy alerting, set unifiedalertingenabled to false and alerting_enabled to true. See https://grafana.com/docs/grafana/latest/alerting/set-up/migrating-alerts/ for more details.
- user
Auto booleanAssign Org - Auto-assign new users on signup to main organization. Defaults to false.
- user
Auto stringAssign Org Role - Enum:
Viewer
,Admin
,Editor
. Set role for new signups. Defaults to Viewer. - viewers
Can booleanEdit - Users with view-only permission can edit but not save dashboards.
- additional_
backup_ strregions - Additional Cloud Regions for Backup Replication.
- alerting_
enabled bool - Enable or disable Grafana legacy alerting functionality. This should not be enabled with unifiedalertingenabled.
- alerting_
error_ stror_ timeout - Enum:
alerting
,keep_state
. Default error or timeout setting for new alerting rules. - alerting_
max_ intannotations_ to_ keep - Max number of alert annotations that Grafana stores. 0 (default) keeps all alert annotations. Example:
0
. - alerting_
nodata_ stror_ nullvalues - Enum:
alerting
,no_data
,keep_state
,ok
. Default value for 'no data or null values' for new alerting rules. - allow_
embedding bool - Allow embedding Grafana dashboards with iframe/frame/object/embed tags. Disabled by default to limit impact of clickjacking.
- auth_
azuread GrafanaGrafana User Config Auth Azuread - Azure AD OAuth integration
- auth_
basic_ boolenabled - Enable or disable basic authentication form, used by Grafana built-in login.
- auth_
generic_ Grafanaoauth Grafana User Config Auth Generic Oauth - Generic OAuth integration
- auth_
github GrafanaGrafana User Config Auth Github - Github Auth integration
- auth_
gitlab GrafanaGrafana User Config Auth Gitlab - GitLab Auth integration
- auth_
google GrafanaGrafana User Config Auth Google - Google Auth integration
- str
- Enum:
lax
,strict
,none
. Cookie SameSite attribute:strict
prevents sending cookie for cross-site requests, effectively disabling direct linking from other sites to Grafana.lax
is the default value. - custom_
domain str - Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example:
grafana.example.org
. - dashboard_
previews_ boolenabled - This feature is new in Grafana 9 and is quite resource intensive. It may cause low-end plans to work more slowly while the dashboard previews are rendering.
- dashboards_
min_ strrefresh_ interval - Signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s, 1h. Example:
5s
. - dashboards_
versions_ intto_ keep - Dashboard versions to keep per dashboard. Example:
20
. - dataproxy_
send_ booluser_ header - Send
X-Grafana-User
header to data source. - dataproxy_
timeout int - Timeout for data proxy requests in seconds. Example:
30
. - date_
formats GrafanaGrafana User Config Date Formats - Grafana date format specifications
- disable_
gravatar bool - Set to true to disable gravatar. Defaults to false (gravatar is enabled).
- editors_
can_ booladmin - Editors can manage folders, teams and dashboards created by them.
- external_
image_ Grafanastorage Grafana User Config External Image Storage - External image store settings
- google_
analytics_ strua_ id - Google Analytics ID. Example:
UA-123456-4
. - ip_
filter_ Sequence[Grafanaobjects Grafana User Config Ip Filter Object] - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- ip_
filter_ Sequence[str]strings - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
. - ip_
filters Sequence[str] - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
. - metrics_
enabled bool - Enable Grafana /metrics endpoint.
- oauth_
allow_ boolinsecure_ email_ lookup - Enforce user lookup based on email instead of the unique ID provided by the IdP.
- private_
access GrafanaGrafana User Config Private Access - Allow access to selected service ports from private networks
- privatelink_
access GrafanaGrafana User Config Privatelink Access - Allow access to selected service components through Privatelink
- project_
to_ strfork_ from - Name of another project to fork a service from. This has effect only when a new service is being created. Example:
anotherprojectname
. - public_
access GrafanaGrafana User Config Public Access - Allow access to selected service ports from the public Internet
- recovery_
basebackup_ strname - Name of the basebackup to restore in forked service. Example:
backup-20191112t091354293891z
. - service_
log bool - Store logs for the service so that they are available in the HTTP API and console.
- service_
to_ strfork_ from - Name of another service to fork from. This has effect only when a new service is being created. Example:
anotherservicename
. - smtp_
server GrafanaGrafana User Config Smtp Server - SMTP server settings
- static_
ips bool - Use static public IP addresses.
- unified_
alerting_ boolenabled - Enable or disable Grafana unified alerting functionality. By default this is enabled and any legacy alerts will be migrated on upgrade to Grafana 9+. To stay on legacy alerting, set unifiedalertingenabled to false and alerting_enabled to true. See https://grafana.com/docs/grafana/latest/alerting/set-up/migrating-alerts/ for more details.
- user_
auto_ boolassign_ org - Auto-assign new users on signup to main organization. Defaults to false.
- user_
auto_ strassign_ org_ role - Enum:
Viewer
,Admin
,Editor
. Set role for new signups. Defaults to Viewer. - viewers_
can_ booledit - Users with view-only permission can edit but not save dashboards.
- additional
Backup StringRegions - Additional Cloud Regions for Backup Replication.
- alerting
Enabled Boolean - Enable or disable Grafana legacy alerting functionality. This should not be enabled with unifiedalertingenabled.
- alerting
Error StringOr Timeout - Enum:
alerting
,keep_state
. Default error or timeout setting for new alerting rules. - alerting
Max NumberAnnotations To Keep - Max number of alert annotations that Grafana stores. 0 (default) keeps all alert annotations. Example:
0
. - alerting
Nodata StringOr Nullvalues - Enum:
alerting
,no_data
,keep_state
,ok
. Default value for 'no data or null values' for new alerting rules. - allow
Embedding Boolean - Allow embedding Grafana dashboards with iframe/frame/object/embed tags. Disabled by default to limit impact of clickjacking.
- auth
Azuread Property Map - Azure AD OAuth integration
- auth
Basic BooleanEnabled - Enable or disable basic authentication form, used by Grafana built-in login.
- auth
Generic Property MapOauth - Generic OAuth integration
- auth
Github Property Map - Github Auth integration
- auth
Gitlab Property Map - GitLab Auth integration
- auth
Google Property Map - Google Auth integration
- String
- Enum:
lax
,strict
,none
. Cookie SameSite attribute:strict
prevents sending cookie for cross-site requests, effectively disabling direct linking from other sites to Grafana.lax
is the default value. - custom
Domain String - Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example:
grafana.example.org
. - dashboard
Previews BooleanEnabled - This feature is new in Grafana 9 and is quite resource intensive. It may cause low-end plans to work more slowly while the dashboard previews are rendering.
- dashboards
Min StringRefresh Interval - Signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s, 1h. Example:
5s
. - dashboards
Versions NumberTo Keep - Dashboard versions to keep per dashboard. Example:
20
. - dataproxy
Send BooleanUser Header - Send
X-Grafana-User
header to data source. - dataproxy
Timeout Number - Timeout for data proxy requests in seconds. Example:
30
. - date
Formats Property Map - Grafana date format specifications
- disable
Gravatar Boolean - Set to true to disable gravatar. Defaults to false (gravatar is enabled).
- editors
Can BooleanAdmin - Editors can manage folders, teams and dashboards created by them.
- external
Image Property MapStorage - External image store settings
- google
Analytics StringUa Id - Google Analytics ID. Example:
UA-123456-4
. - ip
Filter List<Property Map>Objects - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- ip
Filter List<String>Strings - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
. - ip
Filters List<String> - Allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
. - metrics
Enabled Boolean - Enable Grafana /metrics endpoint.
- oauth
Allow BooleanInsecure Email Lookup - Enforce user lookup based on email instead of the unique ID provided by the IdP.
- private
Access Property Map - Allow access to selected service ports from private networks
- privatelink
Access Property Map - Allow access to selected service components through Privatelink
- project
To StringFork From - Name of another project to fork a service from. This has effect only when a new service is being created. Example:
anotherprojectname
. - public
Access Property Map - Allow access to selected service ports from the public Internet
- recovery
Basebackup StringName - Name of the basebackup to restore in forked service. Example:
backup-20191112t091354293891z
. - service
Log Boolean - Store logs for the service so that they are available in the HTTP API and console.
- service
To StringFork From - Name of another service to fork from. This has effect only when a new service is being created. Example:
anotherservicename
. - smtp
Server Property Map - SMTP server settings
- static
Ips Boolean - Use static public IP addresses.
- unified
Alerting BooleanEnabled - Enable or disable Grafana unified alerting functionality. By default this is enabled and any legacy alerts will be migrated on upgrade to Grafana 9+. To stay on legacy alerting, set unifiedalertingenabled to false and alerting_enabled to true. See https://grafana.com/docs/grafana/latest/alerting/set-up/migrating-alerts/ for more details.
- user
Auto BooleanAssign Org - Auto-assign new users on signup to main organization. Defaults to false.
- user
Auto StringAssign Org Role - Enum:
Viewer
,Admin
,Editor
. Set role for new signups. Defaults to Viewer. - viewers
Can BooleanEdit - Users with view-only permission can edit but not save dashboards.
GrafanaGrafanaUserConfigAuthAzuread, GrafanaGrafanaUserConfigAuthAzureadArgs
- Auth
Url string - Authorization URL. Example:
https://login.microsoftonline.com/<AZURE_TENANT_ID>/oauth2/v2.0/authorize
. - Client
Id string - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - Client
Secret string - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - Token
Url string - Token URL. Example:
https://login.microsoftonline.com/<AZURE_TENANT_ID>/oauth2/v2.0/token
. - Allow
Sign boolUp - Automatically sign-up users on successful sign-in.
- Allowed
Domains List<string> - Allowed domains.
- Allowed
Groups List<string> - Require users to belong to one of given groups.
- Auth
Url string - Authorization URL. Example:
https://login.microsoftonline.com/<AZURE_TENANT_ID>/oauth2/v2.0/authorize
. - Client
Id string - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - Client
Secret string - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - Token
Url string - Token URL. Example:
https://login.microsoftonline.com/<AZURE_TENANT_ID>/oauth2/v2.0/token
. - Allow
Sign boolUp - Automatically sign-up users on successful sign-in.
- Allowed
Domains []string - Allowed domains.
- Allowed
Groups []string - Require users to belong to one of given groups.
- auth
Url String - Authorization URL. Example:
https://login.microsoftonline.com/<AZURE_TENANT_ID>/oauth2/v2.0/authorize
. - client
Id String - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client
Secret String - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - token
Url String - Token URL. Example:
https://login.microsoftonline.com/<AZURE_TENANT_ID>/oauth2/v2.0/token
. - allow
Sign BooleanUp - Automatically sign-up users on successful sign-in.
- allowed
Domains List<String> - Allowed domains.
- allowed
Groups List<String> - Require users to belong to one of given groups.
- auth
Url string - Authorization URL. Example:
https://login.microsoftonline.com/<AZURE_TENANT_ID>/oauth2/v2.0/authorize
. - client
Id string - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client
Secret string - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - token
Url string - Token URL. Example:
https://login.microsoftonline.com/<AZURE_TENANT_ID>/oauth2/v2.0/token
. - allow
Sign booleanUp - Automatically sign-up users on successful sign-in.
- allowed
Domains string[] - Allowed domains.
- allowed
Groups string[] - Require users to belong to one of given groups.
- auth_
url str - Authorization URL. Example:
https://login.microsoftonline.com/<AZURE_TENANT_ID>/oauth2/v2.0/authorize
. - client_
id str - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client_
secret str - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - token_
url str - Token URL. Example:
https://login.microsoftonline.com/<AZURE_TENANT_ID>/oauth2/v2.0/token
. - allow_
sign_ boolup - Automatically sign-up users on successful sign-in.
- allowed_
domains Sequence[str] - Allowed domains.
- allowed_
groups Sequence[str] - Require users to belong to one of given groups.
- auth
Url String - Authorization URL. Example:
https://login.microsoftonline.com/<AZURE_TENANT_ID>/oauth2/v2.0/authorize
. - client
Id String - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client
Secret String - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - token
Url String - Token URL. Example:
https://login.microsoftonline.com/<AZURE_TENANT_ID>/oauth2/v2.0/token
. - allow
Sign BooleanUp - Automatically sign-up users on successful sign-in.
- allowed
Domains List<String> - Allowed domains.
- allowed
Groups List<String> - Require users to belong to one of given groups.
GrafanaGrafanaUserConfigAuthGenericOauth, GrafanaGrafanaUserConfigAuthGenericOauthArgs
- Api
Url string - API URL. Example:
https://yourprovider.com/api
. - Auth
Url string - Authorization URL. Example:
https://yourprovider.com/oauth/authorize
. - Client
Id string - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - Client
Secret string - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - Token
Url string - Token URL. Example:
https://yourprovider.com/oauth/token
. - Allow
Sign boolUp - Automatically sign-up users on successful sign-in.
- Allowed
Domains List<string> - Allowed domains.
- Allowed
Organizations List<string> - Require user to be member of one of the listed organizations.
- Auto
Login bool - Allow users to bypass the login screen and automatically log in.
- Name string
- Name of the OAuth integration. Example:
My authentication
. - Scopes List<string>
- OAuth scopes.
- Api
Url string - API URL. Example:
https://yourprovider.com/api
. - Auth
Url string - Authorization URL. Example:
https://yourprovider.com/oauth/authorize
. - Client
Id string - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - Client
Secret string - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - Token
Url string - Token URL. Example:
https://yourprovider.com/oauth/token
. - Allow
Sign boolUp - Automatically sign-up users on successful sign-in.
- Allowed
Domains []string - Allowed domains.
- Allowed
Organizations []string - Require user to be member of one of the listed organizations.
- Auto
Login bool - Allow users to bypass the login screen and automatically log in.
- Name string
- Name of the OAuth integration. Example:
My authentication
. - Scopes []string
- OAuth scopes.
- api
Url String - API URL. Example:
https://yourprovider.com/api
. - auth
Url String - Authorization URL. Example:
https://yourprovider.com/oauth/authorize
. - client
Id String - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client
Secret String - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - token
Url String - Token URL. Example:
https://yourprovider.com/oauth/token
. - allow
Sign BooleanUp - Automatically sign-up users on successful sign-in.
- allowed
Domains List<String> - Allowed domains.
- allowed
Organizations List<String> - Require user to be member of one of the listed organizations.
- auto
Login Boolean - Allow users to bypass the login screen and automatically log in.
- name String
- Name of the OAuth integration. Example:
My authentication
. - scopes List<String>
- OAuth scopes.
- api
Url string - API URL. Example:
https://yourprovider.com/api
. - auth
Url string - Authorization URL. Example:
https://yourprovider.com/oauth/authorize
. - client
Id string - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client
Secret string - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - token
Url string - Token URL. Example:
https://yourprovider.com/oauth/token
. - allow
Sign booleanUp - Automatically sign-up users on successful sign-in.
- allowed
Domains string[] - Allowed domains.
- allowed
Organizations string[] - Require user to be member of one of the listed organizations.
- auto
Login boolean - Allow users to bypass the login screen and automatically log in.
- name string
- Name of the OAuth integration. Example:
My authentication
. - scopes string[]
- OAuth scopes.
- api_
url str - API URL. Example:
https://yourprovider.com/api
. - auth_
url str - Authorization URL. Example:
https://yourprovider.com/oauth/authorize
. - client_
id str - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client_
secret str - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - token_
url str - Token URL. Example:
https://yourprovider.com/oauth/token
. - allow_
sign_ boolup - Automatically sign-up users on successful sign-in.
- allowed_
domains Sequence[str] - Allowed domains.
- allowed_
organizations Sequence[str] - Require user to be member of one of the listed organizations.
- auto_
login bool - Allow users to bypass the login screen and automatically log in.
- name str
- Name of the OAuth integration. Example:
My authentication
. - scopes Sequence[str]
- OAuth scopes.
- api
Url String - API URL. Example:
https://yourprovider.com/api
. - auth
Url String - Authorization URL. Example:
https://yourprovider.com/oauth/authorize
. - client
Id String - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client
Secret String - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - token
Url String - Token URL. Example:
https://yourprovider.com/oauth/token
. - allow
Sign BooleanUp - Automatically sign-up users on successful sign-in.
- allowed
Domains List<String> - Allowed domains.
- allowed
Organizations List<String> - Require user to be member of one of the listed organizations.
- auto
Login Boolean - Allow users to bypass the login screen and automatically log in.
- name String
- Name of the OAuth integration. Example:
My authentication
. - scopes List<String>
- OAuth scopes.
GrafanaGrafanaUserConfigAuthGithub, GrafanaGrafanaUserConfigAuthGithubArgs
- Client
Id string - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - Client
Secret string - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - Allow
Sign boolUp - Automatically sign-up users on successful sign-in.
- Allowed
Organizations List<string> - Require users to belong to one of given organizations.
- Auto
Login bool - Allow users to bypass the login screen and automatically log in.
- Skip
Org boolRole Sync - Stop automatically syncing user roles.
- Team
Ids List<int> - Require users to belong to one of given team IDs.
- Client
Id string - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - Client
Secret string - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - Allow
Sign boolUp - Automatically sign-up users on successful sign-in.
- Allowed
Organizations []string - Require users to belong to one of given organizations.
- Auto
Login bool - Allow users to bypass the login screen and automatically log in.
- Skip
Org boolRole Sync - Stop automatically syncing user roles.
- Team
Ids []int - Require users to belong to one of given team IDs.
- client
Id String - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client
Secret String - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - allow
Sign BooleanUp - Automatically sign-up users on successful sign-in.
- allowed
Organizations List<String> - Require users to belong to one of given organizations.
- auto
Login Boolean - Allow users to bypass the login screen and automatically log in.
- skip
Org BooleanRole Sync - Stop automatically syncing user roles.
- team
Ids List<Integer> - Require users to belong to one of given team IDs.
- client
Id string - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client
Secret string - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - allow
Sign booleanUp - Automatically sign-up users on successful sign-in.
- allowed
Organizations string[] - Require users to belong to one of given organizations.
- auto
Login boolean - Allow users to bypass the login screen and automatically log in.
- skip
Org booleanRole Sync - Stop automatically syncing user roles.
- team
Ids number[] - Require users to belong to one of given team IDs.
- client_
id str - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client_
secret str - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - allow_
sign_ boolup - Automatically sign-up users on successful sign-in.
- allowed_
organizations Sequence[str] - Require users to belong to one of given organizations.
- auto_
login bool - Allow users to bypass the login screen and automatically log in.
- skip_
org_ boolrole_ sync - Stop automatically syncing user roles.
- team_
ids Sequence[int] - Require users to belong to one of given team IDs.
- client
Id String - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client
Secret String - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - allow
Sign BooleanUp - Automatically sign-up users on successful sign-in.
- allowed
Organizations List<String> - Require users to belong to one of given organizations.
- auto
Login Boolean - Allow users to bypass the login screen and automatically log in.
- skip
Org BooleanRole Sync - Stop automatically syncing user roles.
- team
Ids List<Number> - Require users to belong to one of given team IDs.
GrafanaGrafanaUserConfigAuthGitlab, GrafanaGrafanaUserConfigAuthGitlabArgs
- Allowed
Groups List<string> - Require users to belong to one of given groups.
- Client
Id string - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - Client
Secret string - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - Allow
Sign boolUp - Automatically sign-up users on successful sign-in.
- Api
Url string - API URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/api/v4
. - Auth
Url string - Authorization URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/oauth/authorize
. - Token
Url string - Token URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/oauth/token
.
- Allowed
Groups []string - Require users to belong to one of given groups.
- Client
Id string - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - Client
Secret string - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - Allow
Sign boolUp - Automatically sign-up users on successful sign-in.
- Api
Url string - API URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/api/v4
. - Auth
Url string - Authorization URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/oauth/authorize
. - Token
Url string - Token URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/oauth/token
.
- allowed
Groups List<String> - Require users to belong to one of given groups.
- client
Id String - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client
Secret String - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - allow
Sign BooleanUp - Automatically sign-up users on successful sign-in.
- api
Url String - API URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/api/v4
. - auth
Url String - Authorization URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/oauth/authorize
. - token
Url String - Token URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/oauth/token
.
- allowed
Groups string[] - Require users to belong to one of given groups.
- client
Id string - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client
Secret string - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - allow
Sign booleanUp - Automatically sign-up users on successful sign-in.
- api
Url string - API URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/api/v4
. - auth
Url string - Authorization URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/oauth/authorize
. - token
Url string - Token URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/oauth/token
.
- allowed_
groups Sequence[str] - Require users to belong to one of given groups.
- client_
id str - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client_
secret str - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - allow_
sign_ boolup - Automatically sign-up users on successful sign-in.
- api_
url str - API URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/api/v4
. - auth_
url str - Authorization URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/oauth/authorize
. - token_
url str - Token URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/oauth/token
.
- allowed
Groups List<String> - Require users to belong to one of given groups.
- client
Id String - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client
Secret String - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - allow
Sign BooleanUp - Automatically sign-up users on successful sign-in.
- api
Url String - API URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/api/v4
. - auth
Url String - Authorization URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/oauth/authorize
. - token
Url String - Token URL. This only needs to be set when using self hosted GitLab. Example:
https://gitlab.com/oauth/token
.
GrafanaGrafanaUserConfigAuthGoogle, GrafanaGrafanaUserConfigAuthGoogleArgs
- Allowed
Domains List<string> - Domains allowed to sign-in to this Grafana.
- Client
Id string - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - Client
Secret string - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - Allow
Sign boolUp - Automatically sign-up users on successful sign-in.
- Allowed
Domains []string - Domains allowed to sign-in to this Grafana.
- Client
Id string - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - Client
Secret string - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - Allow
Sign boolUp - Automatically sign-up users on successful sign-in.
- allowed
Domains List<String> - Domains allowed to sign-in to this Grafana.
- client
Id String - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client
Secret String - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - allow
Sign BooleanUp - Automatically sign-up users on successful sign-in.
- allowed
Domains string[] - Domains allowed to sign-in to this Grafana.
- client
Id string - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client
Secret string - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - allow
Sign booleanUp - Automatically sign-up users on successful sign-in.
- allowed_
domains Sequence[str] - Domains allowed to sign-in to this Grafana.
- client_
id str - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client_
secret str - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - allow_
sign_ boolup - Automatically sign-up users on successful sign-in.
- allowed
Domains List<String> - Domains allowed to sign-in to this Grafana.
- client
Id String - Client ID from provider. Example:
b1ba0bf54a4c2c0a1c29
. - client
Secret String - Client secret from provider. Example:
bfa6gea4f129076761dcba8ce5e1e406bd83af7b
. - allow
Sign BooleanUp - Automatically sign-up users on successful sign-in.
GrafanaGrafanaUserConfigDateFormats, GrafanaGrafanaUserConfigDateFormatsArgs
- Default
Timezone string - Default time zone for user preferences. Value
browser
uses browser local time zone. Example:Europe/Helsinki
. - Full
Date string - Moment.js style format string for cases where full date is shown. Example:
YYYY MM DD
. - Interval
Day string - Moment.js style format string used when a time requiring day accuracy is shown. Example:
MM/DD
. - Interval
Hour string - Moment.js style format string used when a time requiring hour accuracy is shown. Example:
MM/DD HH:mm
. - Interval
Minute string - Moment.js style format string used when a time requiring minute accuracy is shown. Example:
HH:mm
. - Interval
Month string - Moment.js style format string used when a time requiring month accuracy is shown. Example:
YYYY-MM
. - Interval
Second string - Moment.js style format string used when a time requiring second accuracy is shown. Example:
HH:mm:ss
. - Interval
Year string - Moment.js style format string used when a time requiring year accuracy is shown. Example:
YYYY
.
- Default
Timezone string - Default time zone for user preferences. Value
browser
uses browser local time zone. Example:Europe/Helsinki
. - Full
Date string - Moment.js style format string for cases where full date is shown. Example:
YYYY MM DD
. - Interval
Day string - Moment.js style format string used when a time requiring day accuracy is shown. Example:
MM/DD
. - Interval
Hour string - Moment.js style format string used when a time requiring hour accuracy is shown. Example:
MM/DD HH:mm
. - Interval
Minute string - Moment.js style format string used when a time requiring minute accuracy is shown. Example:
HH:mm
. - Interval
Month string - Moment.js style format string used when a time requiring month accuracy is shown. Example:
YYYY-MM
. - Interval
Second string - Moment.js style format string used when a time requiring second accuracy is shown. Example:
HH:mm:ss
. - Interval
Year string - Moment.js style format string used when a time requiring year accuracy is shown. Example:
YYYY
.
- default
Timezone String - Default time zone for user preferences. Value
browser
uses browser local time zone. Example:Europe/Helsinki
. - full
Date String - Moment.js style format string for cases where full date is shown. Example:
YYYY MM DD
. - interval
Day String - Moment.js style format string used when a time requiring day accuracy is shown. Example:
MM/DD
. - interval
Hour String - Moment.js style format string used when a time requiring hour accuracy is shown. Example:
MM/DD HH:mm
. - interval
Minute String - Moment.js style format string used when a time requiring minute accuracy is shown. Example:
HH:mm
. - interval
Month String - Moment.js style format string used when a time requiring month accuracy is shown. Example:
YYYY-MM
. - interval
Second String - Moment.js style format string used when a time requiring second accuracy is shown. Example:
HH:mm:ss
. - interval
Year String - Moment.js style format string used when a time requiring year accuracy is shown. Example:
YYYY
.
- default
Timezone string - Default time zone for user preferences. Value
browser
uses browser local time zone. Example:Europe/Helsinki
. - full
Date string - Moment.js style format string for cases where full date is shown. Example:
YYYY MM DD
. - interval
Day string - Moment.js style format string used when a time requiring day accuracy is shown. Example:
MM/DD
. - interval
Hour string - Moment.js style format string used when a time requiring hour accuracy is shown. Example:
MM/DD HH:mm
. - interval
Minute string - Moment.js style format string used when a time requiring minute accuracy is shown. Example:
HH:mm
. - interval
Month string - Moment.js style format string used when a time requiring month accuracy is shown. Example:
YYYY-MM
. - interval
Second string - Moment.js style format string used when a time requiring second accuracy is shown. Example:
HH:mm:ss
. - interval
Year string - Moment.js style format string used when a time requiring year accuracy is shown. Example:
YYYY
.
- default_
timezone str - Default time zone for user preferences. Value
browser
uses browser local time zone. Example:Europe/Helsinki
. - full_
date str - Moment.js style format string for cases where full date is shown. Example:
YYYY MM DD
. - interval_
day str - Moment.js style format string used when a time requiring day accuracy is shown. Example:
MM/DD
. - interval_
hour str - Moment.js style format string used when a time requiring hour accuracy is shown. Example:
MM/DD HH:mm
. - interval_
minute str - Moment.js style format string used when a time requiring minute accuracy is shown. Example:
HH:mm
. - interval_
month str - Moment.js style format string used when a time requiring month accuracy is shown. Example:
YYYY-MM
. - interval_
second str - Moment.js style format string used when a time requiring second accuracy is shown. Example:
HH:mm:ss
. - interval_
year str - Moment.js style format string used when a time requiring year accuracy is shown. Example:
YYYY
.
- default
Timezone String - Default time zone for user preferences. Value
browser
uses browser local time zone. Example:Europe/Helsinki
. - full
Date String - Moment.js style format string for cases where full date is shown. Example:
YYYY MM DD
. - interval
Day String - Moment.js style format string used when a time requiring day accuracy is shown. Example:
MM/DD
. - interval
Hour String - Moment.js style format string used when a time requiring hour accuracy is shown. Example:
MM/DD HH:mm
. - interval
Minute String - Moment.js style format string used when a time requiring minute accuracy is shown. Example:
HH:mm
. - interval
Month String - Moment.js style format string used when a time requiring month accuracy is shown. Example:
YYYY-MM
. - interval
Second String - Moment.js style format string used when a time requiring second accuracy is shown. Example:
HH:mm:ss
. - interval
Year String - Moment.js style format string used when a time requiring year accuracy is shown. Example:
YYYY
.
GrafanaGrafanaUserConfigExternalImageStorage, GrafanaGrafanaUserConfigExternalImageStorageArgs
- Access
Key string - S3 access key. Requires permissions to the S3 bucket for the s3:PutObject and s3:PutObjectAcl actions. Example:
AAAAAAAAAAAAAAAAAAA
. - Bucket
Url string - Bucket URL for S3. Example:
https://grafana.s3-ap-southeast-2.amazonaws.com/
. - Provider string
- Enum:
s3
. Provider type. - Secret
Key string - S3 secret key. Example:
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
.
- Access
Key string - S3 access key. Requires permissions to the S3 bucket for the s3:PutObject and s3:PutObjectAcl actions. Example:
AAAAAAAAAAAAAAAAAAA
. - Bucket
Url string - Bucket URL for S3. Example:
https://grafana.s3-ap-southeast-2.amazonaws.com/
. - Provider string
- Enum:
s3
. Provider type. - Secret
Key string - S3 secret key. Example:
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
.
- access
Key String - S3 access key. Requires permissions to the S3 bucket for the s3:PutObject and s3:PutObjectAcl actions. Example:
AAAAAAAAAAAAAAAAAAA
. - bucket
Url String - Bucket URL for S3. Example:
https://grafana.s3-ap-southeast-2.amazonaws.com/
. - provider String
- Enum:
s3
. Provider type. - secret
Key String - S3 secret key. Example:
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
.
- access
Key string - S3 access key. Requires permissions to the S3 bucket for the s3:PutObject and s3:PutObjectAcl actions. Example:
AAAAAAAAAAAAAAAAAAA
. - bucket
Url string - Bucket URL for S3. Example:
https://grafana.s3-ap-southeast-2.amazonaws.com/
. - provider string
- Enum:
s3
. Provider type. - secret
Key string - S3 secret key. Example:
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
.
- access_
key str - S3 access key. Requires permissions to the S3 bucket for the s3:PutObject and s3:PutObjectAcl actions. Example:
AAAAAAAAAAAAAAAAAAA
. - bucket_
url str - Bucket URL for S3. Example:
https://grafana.s3-ap-southeast-2.amazonaws.com/
. - provider str
- Enum:
s3
. Provider type. - secret_
key str - S3 secret key. Example:
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
.
- access
Key String - S3 access key. Requires permissions to the S3 bucket for the s3:PutObject and s3:PutObjectAcl actions. Example:
AAAAAAAAAAAAAAAAAAA
. - bucket
Url String - Bucket URL for S3. Example:
https://grafana.s3-ap-southeast-2.amazonaws.com/
. - provider String
- Enum:
s3
. Provider type. - secret
Key String - S3 secret key. Example:
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
.
GrafanaGrafanaUserConfigIpFilterObject, GrafanaGrafanaUserConfigIpFilterObjectArgs
- Network string
- CIDR address block. Example:
10.20.0.0/16
. - Description string
- Description for IP filter list entry. Example:
Production service IP range
.
- Network string
- CIDR address block. Example:
10.20.0.0/16
. - Description string
- Description for IP filter list entry. Example:
Production service IP range
.
- network String
- CIDR address block. Example:
10.20.0.0/16
. - description String
- Description for IP filter list entry. Example:
Production service IP range
.
- network string
- CIDR address block. Example:
10.20.0.0/16
. - description string
- Description for IP filter list entry. Example:
Production service IP range
.
- network str
- CIDR address block. Example:
10.20.0.0/16
. - description str
- Description for IP filter list entry. Example:
Production service IP range
.
- network String
- CIDR address block. Example:
10.20.0.0/16
. - description String
- Description for IP filter list entry. Example:
Production service IP range
.
GrafanaGrafanaUserConfigPrivateAccess, GrafanaGrafanaUserConfigPrivateAccessArgs
- Grafana bool
- Allow clients to connect to grafana with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
- Grafana bool
- Allow clients to connect to grafana with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
- grafana Boolean
- Allow clients to connect to grafana with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
- grafana boolean
- Allow clients to connect to grafana with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
- grafana bool
- Allow clients to connect to grafana with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
- grafana Boolean
- Allow clients to connect to grafana with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
GrafanaGrafanaUserConfigPrivatelinkAccess, GrafanaGrafanaUserConfigPrivatelinkAccessArgs
- Grafana bool
- Enable grafana.
- Grafana bool
- Enable grafana.
- grafana Boolean
- Enable grafana.
- grafana boolean
- Enable grafana.
- grafana bool
- Enable grafana.
- grafana Boolean
- Enable grafana.
GrafanaGrafanaUserConfigPublicAccess, GrafanaGrafanaUserConfigPublicAccessArgs
- Grafana bool
- Allow clients to connect to grafana from the public internet for service nodes that are in a project VPC or another type of private network.
- Grafana bool
- Allow clients to connect to grafana from the public internet for service nodes that are in a project VPC or another type of private network.
- grafana Boolean
- Allow clients to connect to grafana from the public internet for service nodes that are in a project VPC or another type of private network.
- grafana boolean
- Allow clients to connect to grafana from the public internet for service nodes that are in a project VPC or another type of private network.
- grafana bool
- Allow clients to connect to grafana from the public internet for service nodes that are in a project VPC or another type of private network.
- grafana Boolean
- Allow clients to connect to grafana from the public internet for service nodes that are in a project VPC or another type of private network.
GrafanaGrafanaUserConfigSmtpServer, GrafanaGrafanaUserConfigSmtpServerArgs
- From
Address string - Address used for sending emails. Example:
yourgrafanauser@yourdomain.example.com
. - Host string
- Server hostname or IP. Example:
smtp.example.com
. - Port int
- SMTP server port. Example:
25
. - From
Name string - Name used in outgoing emails, defaults to Grafana.
- Password string
- Password for SMTP authentication. Example:
ein0eemeev5eeth3Ahfu
. - Skip
Verify bool - Skip verifying server certificate. Defaults to false.
- Starttls
Policy string - Enum:
OpportunisticStartTLS
,MandatoryStartTLS
,NoStartTLS
. Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS. - Username string
- Username for SMTP authentication. Example:
smtpuser
.
- From
Address string - Address used for sending emails. Example:
yourgrafanauser@yourdomain.example.com
. - Host string
- Server hostname or IP. Example:
smtp.example.com
. - Port int
- SMTP server port. Example:
25
. - From
Name string - Name used in outgoing emails, defaults to Grafana.
- Password string
- Password for SMTP authentication. Example:
ein0eemeev5eeth3Ahfu
. - Skip
Verify bool - Skip verifying server certificate. Defaults to false.
- Starttls
Policy string - Enum:
OpportunisticStartTLS
,MandatoryStartTLS
,NoStartTLS
. Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS. - Username string
- Username for SMTP authentication. Example:
smtpuser
.
- from
Address String - Address used for sending emails. Example:
yourgrafanauser@yourdomain.example.com
. - host String
- Server hostname or IP. Example:
smtp.example.com
. - port Integer
- SMTP server port. Example:
25
. - from
Name String - Name used in outgoing emails, defaults to Grafana.
- password String
- Password for SMTP authentication. Example:
ein0eemeev5eeth3Ahfu
. - skip
Verify Boolean - Skip verifying server certificate. Defaults to false.
- starttls
Policy String - Enum:
OpportunisticStartTLS
,MandatoryStartTLS
,NoStartTLS
. Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS. - username String
- Username for SMTP authentication. Example:
smtpuser
.
- from
Address string - Address used for sending emails. Example:
yourgrafanauser@yourdomain.example.com
. - host string
- Server hostname or IP. Example:
smtp.example.com
. - port number
- SMTP server port. Example:
25
. - from
Name string - Name used in outgoing emails, defaults to Grafana.
- password string
- Password for SMTP authentication. Example:
ein0eemeev5eeth3Ahfu
. - skip
Verify boolean - Skip verifying server certificate. Defaults to false.
- starttls
Policy string - Enum:
OpportunisticStartTLS
,MandatoryStartTLS
,NoStartTLS
. Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS. - username string
- Username for SMTP authentication. Example:
smtpuser
.
- from_
address str - Address used for sending emails. Example:
yourgrafanauser@yourdomain.example.com
. - host str
- Server hostname or IP. Example:
smtp.example.com
. - port int
- SMTP server port. Example:
25
. - from_
name str - Name used in outgoing emails, defaults to Grafana.
- password str
- Password for SMTP authentication. Example:
ein0eemeev5eeth3Ahfu
. - skip_
verify bool - Skip verifying server certificate. Defaults to false.
- starttls_
policy str - Enum:
OpportunisticStartTLS
,MandatoryStartTLS
,NoStartTLS
. Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS. - username str
- Username for SMTP authentication. Example:
smtpuser
.
- from
Address String - Address used for sending emails. Example:
yourgrafanauser@yourdomain.example.com
. - host String
- Server hostname or IP. Example:
smtp.example.com
. - port Number
- SMTP server port. Example:
25
. - from
Name String - Name used in outgoing emails, defaults to Grafana.
- password String
- Password for SMTP authentication. Example:
ein0eemeev5eeth3Ahfu
. - skip
Verify Boolean - Skip verifying server certificate. Defaults to false.
- starttls
Policy String - Enum:
OpportunisticStartTLS
,MandatoryStartTLS
,NoStartTLS
. Either OpportunisticStartTLS, MandatoryStartTLS or NoStartTLS. Default is OpportunisticStartTLS. - username String
- Username for SMTP authentication. Example:
smtpuser
.
GrafanaServiceIntegration, GrafanaServiceIntegrationArgs
- Integration
Type string - Type of the service integration. The only supported value at the moment is
read_replica
- Source
Service stringName - Name of the source service
- Integration
Type string - Type of the service integration. The only supported value at the moment is
read_replica
- Source
Service stringName - Name of the source service
- integration
Type String - Type of the service integration. The only supported value at the moment is
read_replica
- source
Service StringName - Name of the source service
- integration
Type string - Type of the service integration. The only supported value at the moment is
read_replica
- source
Service stringName - Name of the source service
- integration_
type str - Type of the service integration. The only supported value at the moment is
read_replica
- source_
service_ strname - Name of the source service
- integration
Type String - Type of the service integration. The only supported value at the moment is
read_replica
- source
Service StringName - Name of the source service
GrafanaTag, GrafanaTagArgs
GrafanaTechEmail, GrafanaTechEmailArgs
- Email string
- An email address to contact for technical issues
- Email string
- An email address to contact for technical issues
- email String
- An email address to contact for technical issues
- email string
- An email address to contact for technical issues
- email str
- An email address to contact for technical issues
- email String
- An email address to contact for technical issues
Import
$ pulumi import aiven:index/grafana:Grafana gr1 project/service_name
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Aiven pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aiven
Terraform Provider.