1. Packages
  2. Azure Native v1
  3. API Docs
  4. dashboard
  5. Grafana
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.dashboard.Grafana

Explore with Pulumi AI

These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

The grafana resource type. API Version: 2022-05-01-preview.

Example Usage

Grafana_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var grafana = new AzureNative.Dashboard.Grafana("grafana", new()
    {
        Identity = new AzureNative.Dashboard.Inputs.ManagedServiceIdentityArgs
        {
            Type = "SystemAssigned",
        },
        Location = "West US",
        Properties = new AzureNative.Dashboard.Inputs.ManagedGrafanaPropertiesArgs
        {
            ApiKey = "Enabled",
            DeterministicOutboundIP = "Enabled",
            PublicNetworkAccess = "Enabled",
            ZoneRedundancy = "Enabled",
        },
        ResourceGroupName = "myResourceGroup",
        Sku = new AzureNative.Dashboard.Inputs.ResourceSkuArgs
        {
            Name = "Standard",
        },
        Tags = 
        {
            { "Environment", "Dev" },
        },
        WorkspaceName = "myWorkspace",
    });

});
Copy
package main

import (
	dashboard "github.com/pulumi/pulumi-azure-native-sdk/dashboard"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dashboard.NewGrafana(ctx, "grafana", &dashboard.GrafanaArgs{
			Identity: &dashboard.ManagedServiceIdentityArgs{
				Type: pulumi.String("SystemAssigned"),
			},
			Location: pulumi.String("West US"),
			Properties: &dashboard.ManagedGrafanaPropertiesArgs{
				ApiKey:                  pulumi.String("Enabled"),
				DeterministicOutboundIP: pulumi.String("Enabled"),
				PublicNetworkAccess:     pulumi.String("Enabled"),
				ZoneRedundancy:          pulumi.String("Enabled"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			Sku: &dashboard.ResourceSkuArgs{
				Name: pulumi.String("Standard"),
			},
			Tags: pulumi.StringMap{
				"Environment": pulumi.String("Dev"),
			},
			WorkspaceName: pulumi.String("myWorkspace"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.dashboard.Grafana;
import com.pulumi.azurenative.dashboard.GrafanaArgs;
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 grafana = new Grafana("grafana", GrafanaArgs.builder()        
            .identity(Map.of("type", "SystemAssigned"))
            .location("West US")
            .properties(Map.ofEntries(
                Map.entry("apiKey", "Enabled"),
                Map.entry("deterministicOutboundIP", "Enabled"),
                Map.entry("publicNetworkAccess", "Enabled"),
                Map.entry("zoneRedundancy", "Enabled")
            ))
            .resourceGroupName("myResourceGroup")
            .sku(Map.of("name", "Standard"))
            .tags(Map.of("Environment", "Dev"))
            .workspaceName("myWorkspace")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const grafana = new azure_native.dashboard.Grafana("grafana", {
    identity: {
        type: "SystemAssigned",
    },
    location: "West US",
    properties: {
        apiKey: "Enabled",
        deterministicOutboundIP: "Enabled",
        publicNetworkAccess: "Enabled",
        zoneRedundancy: "Enabled",
    },
    resourceGroupName: "myResourceGroup",
    sku: {
        name: "Standard",
    },
    tags: {
        Environment: "Dev",
    },
    workspaceName: "myWorkspace",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

grafana = azure_native.dashboard.Grafana("grafana",
    identity=azure_native.dashboard.ManagedServiceIdentityArgs(
        type="SystemAssigned",
    ),
    location="West US",
    properties=azure_native.dashboard.ManagedGrafanaPropertiesArgs(
        api_key="Enabled",
        deterministic_outbound_ip="Enabled",
        public_network_access="Enabled",
        zone_redundancy="Enabled",
    ),
    resource_group_name="myResourceGroup",
    sku=azure_native.dashboard.ResourceSkuArgs(
        name="Standard",
    ),
    tags={
        "Environment": "Dev",
    },
    workspace_name="myWorkspace")
Copy
resources:
  grafana:
    type: azure-native:dashboard:Grafana
    properties:
      identity:
        type: SystemAssigned
      location: West US
      properties:
        apiKey: Enabled
        deterministicOutboundIP: Enabled
        publicNetworkAccess: Enabled
        zoneRedundancy: Enabled
      resourceGroupName: myResourceGroup
      sku:
        name: Standard
      tags:
        Environment: Dev
      workspaceName: myWorkspace
Copy

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,
            resource_group_name: Optional[str] = None,
            identity: Optional[ManagedServiceIdentityArgs] = None,
            location: Optional[str] = None,
            properties: Optional[ManagedGrafanaPropertiesArgs] = None,
            sku: Optional[ResourceSkuArgs] = None,
            tags: Optional[Mapping[str, str]] = None,
            workspace_name: Optional[str] = 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: azure-native:dashboard:Grafana
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. GrafanaArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. GrafanaArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. GrafanaArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 AzureNative.Dashboard.Grafana("grafanaResource", new()
{
    ResourceGroupName = "string",
    Identity = 
    {
        { "type", "string" },
        { "userAssignedIdentities", 
        {
            { "string", "any" },
        } },
    },
    Location = "string",
    Properties = 
    {
        { "apiKey", "string" },
        { "autoGeneratedDomainNameLabelScope", "string" },
        { "deterministicOutboundIP", "string" },
        { "publicNetworkAccess", "string" },
        { "zoneRedundancy", "string" },
    },
    Sku = 
    {
        { "name", "string" },
    },
    Tags = 
    {
        { "string", "string" },
    },
    WorkspaceName = "string",
});
Copy
example, err := dashboard.NewGrafana(ctx, "grafanaResource", &dashboard.GrafanaArgs{
	ResourceGroupName: "string",
	Identity: map[string]interface{}{
		"type": "string",
		"userAssignedIdentities": map[string]interface{}{
			"string": "any",
		},
	},
	Location: "string",
	Properties: map[string]interface{}{
		"apiKey":                            "string",
		"autoGeneratedDomainNameLabelScope": "string",
		"deterministicOutboundIP":           "string",
		"publicNetworkAccess":               "string",
		"zoneRedundancy":                    "string",
	},
	Sku: map[string]interface{}{
		"name": "string",
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
	WorkspaceName: "string",
})
Copy
var grafanaResource = new Grafana("grafanaResource", GrafanaArgs.builder()
    .resourceGroupName("string")
    .identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .location("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .workspaceName("string")
    .build());
Copy
grafana_resource = azure_native.dashboard.Grafana("grafanaResource",
    resource_group_name=string,
    identity={
        type: string,
        userAssignedIdentities: {
            string: any,
        },
    },
    location=string,
    properties={
        apiKey: string,
        autoGeneratedDomainNameLabelScope: string,
        deterministicOutboundIP: string,
        publicNetworkAccess: string,
        zoneRedundancy: string,
    },
    sku={
        name: string,
    },
    tags={
        string: string,
    },
    workspace_name=string)
Copy
const grafanaResource = new azure_native.dashboard.Grafana("grafanaResource", {
    resourceGroupName: "string",
    identity: {
        type: "string",
        userAssignedIdentities: {
            string: "any",
        },
    },
    location: "string",
    properties: {
        apiKey: "string",
        autoGeneratedDomainNameLabelScope: "string",
        deterministicOutboundIP: "string",
        publicNetworkAccess: "string",
        zoneRedundancy: "string",
    },
    sku: {
        name: "string",
    },
    tags: {
        string: "string",
    },
    workspaceName: "string",
});
Copy
type: azure-native:dashboard:Grafana
properties:
    identity:
        type: string
        userAssignedIdentities:
            string: any
    location: string
    properties:
        apiKey: string
        autoGeneratedDomainNameLabelScope: string
        deterministicOutboundIP: string
        publicNetworkAccess: string
        zoneRedundancy: string
    resourceGroupName: string
    sku:
        name: string
    tags:
        string: string
    workspaceName: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Grafana resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Identity Pulumi.AzureNative.Dashboard.Inputs.ManagedServiceIdentity
The managed identity of the grafana resource.
Location Changes to this property will trigger replacement. string
The geo-location where the grafana resource lives
Properties Pulumi.AzureNative.Dashboard.Inputs.ManagedGrafanaProperties
Properties specific to the grafana resource.
Sku Pulumi.AzureNative.Dashboard.Inputs.ResourceSku
The Sku of the grafana resource.
Tags Dictionary<string, string>
The tags for grafana resource.
WorkspaceName Changes to this property will trigger replacement. string
The workspace name of Azure Managed Grafana.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Identity ManagedServiceIdentityArgs
The managed identity of the grafana resource.
Location Changes to this property will trigger replacement. string
The geo-location where the grafana resource lives
Properties ManagedGrafanaPropertiesArgs
Properties specific to the grafana resource.
Sku ResourceSkuArgs
The Sku of the grafana resource.
Tags map[string]string
The tags for grafana resource.
WorkspaceName Changes to this property will trigger replacement. string
The workspace name of Azure Managed Grafana.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
identity ManagedServiceIdentity
The managed identity of the grafana resource.
location Changes to this property will trigger replacement. String
The geo-location where the grafana resource lives
properties ManagedGrafanaProperties
Properties specific to the grafana resource.
sku ResourceSku
The Sku of the grafana resource.
tags Map<String,String>
The tags for grafana resource.
workspaceName Changes to this property will trigger replacement. String
The workspace name of Azure Managed Grafana.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
identity ManagedServiceIdentity
The managed identity of the grafana resource.
location Changes to this property will trigger replacement. string
The geo-location where the grafana resource lives
properties ManagedGrafanaProperties
Properties specific to the grafana resource.
sku ResourceSku
The Sku of the grafana resource.
tags {[key: string]: string}
The tags for grafana resource.
workspaceName Changes to this property will trigger replacement. string
The workspace name of Azure Managed Grafana.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
identity ManagedServiceIdentityArgs
The managed identity of the grafana resource.
location Changes to this property will trigger replacement. str
The geo-location where the grafana resource lives
properties ManagedGrafanaPropertiesArgs
Properties specific to the grafana resource.
sku ResourceSkuArgs
The Sku of the grafana resource.
tags Mapping[str, str]
The tags for grafana resource.
workspace_name Changes to this property will trigger replacement. str
The workspace name of Azure Managed Grafana.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
identity Property Map
The managed identity of the grafana resource.
location Changes to this property will trigger replacement. String
The geo-location where the grafana resource lives
properties Property Map
Properties specific to the grafana resource.
sku Property Map
The Sku of the grafana resource.
tags Map<String>
The tags for grafana resource.
workspaceName Changes to this property will trigger replacement. String
The workspace name of Azure Managed Grafana.

Outputs

All input properties are implicitly available as output properties. Additionally, the Grafana resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Name string
Name of the grafana resource.
SystemData Pulumi.AzureNative.Dashboard.Outputs.SystemDataResponse
The system meta data relating to this grafana resource.
Type string
The type of the grafana resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Name of the grafana resource.
SystemData SystemDataResponse
The system meta data relating to this grafana resource.
Type string
The type of the grafana resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Name of the grafana resource.
systemData SystemDataResponse
The system meta data relating to this grafana resource.
type String
The type of the grafana resource.
id string
The provider-assigned unique ID for this managed resource.
name string
Name of the grafana resource.
systemData SystemDataResponse
The system meta data relating to this grafana resource.
type string
The type of the grafana resource.
id str
The provider-assigned unique ID for this managed resource.
name str
Name of the grafana resource.
system_data SystemDataResponse
The system meta data relating to this grafana resource.
type str
The type of the grafana resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Name of the grafana resource.
systemData Property Map
The system meta data relating to this grafana resource.
type String
The type of the grafana resource.

Supporting Types

ApiKey
, ApiKeyArgs

Disabled
Disabled
Enabled
Enabled
ApiKeyDisabled
Disabled
ApiKeyEnabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
DISABLED
Disabled
ENABLED
Enabled
"Disabled"
Disabled
"Enabled"
Enabled

AutoGeneratedDomainNameLabelScope
, AutoGeneratedDomainNameLabelScopeArgs

TenantReuse
TenantReuse
AutoGeneratedDomainNameLabelScopeTenantReuse
TenantReuse
TenantReuse
TenantReuse
TenantReuse
TenantReuse
TENANT_REUSE
TenantReuse
"TenantReuse"
TenantReuse

DeterministicOutboundIP
, DeterministicOutboundIPArgs

Disabled
Disabled
Enabled
Enabled
DeterministicOutboundIPDisabled
Disabled
DeterministicOutboundIPEnabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
DISABLED
Disabled
ENABLED
Enabled
"Disabled"
Disabled
"Enabled"
Enabled

ManagedGrafanaProperties
, ManagedGrafanaPropertiesArgs

ApiKey string | Pulumi.AzureNative.Dashboard.ApiKey
The api key setting of the Grafana instance.
AutoGeneratedDomainNameLabelScope string | Pulumi.AzureNative.Dashboard.AutoGeneratedDomainNameLabelScope
Scope for dns deterministic name hash calculation.
DeterministicOutboundIP string | Pulumi.AzureNative.Dashboard.DeterministicOutboundIP
Whether a Grafana instance uses deterministic outbound IPs.
PublicNetworkAccess string | Pulumi.AzureNative.Dashboard.PublicNetworkAccess
Indicate the state for enable or disable traffic over the public interface.
ZoneRedundancy string | Pulumi.AzureNative.Dashboard.ZoneRedundancy
The zone redundancy setting of the Grafana instance.
ApiKey string | ApiKey
The api key setting of the Grafana instance.
AutoGeneratedDomainNameLabelScope string | AutoGeneratedDomainNameLabelScope
Scope for dns deterministic name hash calculation.
DeterministicOutboundIP string | DeterministicOutboundIP
Whether a Grafana instance uses deterministic outbound IPs.
PublicNetworkAccess string | PublicNetworkAccess
Indicate the state for enable or disable traffic over the public interface.
ZoneRedundancy string | ZoneRedundancy
The zone redundancy setting of the Grafana instance.
apiKey String | ApiKey
The api key setting of the Grafana instance.
autoGeneratedDomainNameLabelScope String | AutoGeneratedDomainNameLabelScope
Scope for dns deterministic name hash calculation.
deterministicOutboundIP String | DeterministicOutboundIP
Whether a Grafana instance uses deterministic outbound IPs.
publicNetworkAccess String | PublicNetworkAccess
Indicate the state for enable or disable traffic over the public interface.
zoneRedundancy String | ZoneRedundancy
The zone redundancy setting of the Grafana instance.
apiKey string | ApiKey
The api key setting of the Grafana instance.
autoGeneratedDomainNameLabelScope string | AutoGeneratedDomainNameLabelScope
Scope for dns deterministic name hash calculation.
deterministicOutboundIP string | DeterministicOutboundIP
Whether a Grafana instance uses deterministic outbound IPs.
publicNetworkAccess string | PublicNetworkAccess
Indicate the state for enable or disable traffic over the public interface.
zoneRedundancy string | ZoneRedundancy
The zone redundancy setting of the Grafana instance.
api_key str | ApiKey
The api key setting of the Grafana instance.
auto_generated_domain_name_label_scope str | AutoGeneratedDomainNameLabelScope
Scope for dns deterministic name hash calculation.
deterministic_outbound_ip str | DeterministicOutboundIP
Whether a Grafana instance uses deterministic outbound IPs.
public_network_access str | PublicNetworkAccess
Indicate the state for enable or disable traffic over the public interface.
zone_redundancy str | ZoneRedundancy
The zone redundancy setting of the Grafana instance.
apiKey String | "Disabled" | "Enabled"
The api key setting of the Grafana instance.
autoGeneratedDomainNameLabelScope String | "TenantReuse"
Scope for dns deterministic name hash calculation.
deterministicOutboundIP String | "Disabled" | "Enabled"
Whether a Grafana instance uses deterministic outbound IPs.
publicNetworkAccess String | "Enabled" | "Disabled"
Indicate the state for enable or disable traffic over the public interface.
zoneRedundancy String | "Disabled" | "Enabled"
The zone redundancy setting of the Grafana instance.

ManagedGrafanaPropertiesResponse
, ManagedGrafanaPropertiesResponseArgs

Endpoint This property is required. string
The endpoint of the Grafana instance.
GrafanaVersion This property is required. string
The Grafana software version.
OutboundIPs This property is required. List<string>
List of outbound IPs if deterministicOutboundIP is enabled.
PrivateEndpointConnections This property is required. List<Pulumi.AzureNative.Dashboard.Inputs.PrivateEndpointConnectionResponse>
The private endpoint connections of the Grafana instance.
ProvisioningState This property is required. string
Provisioning state of the resource.
ApiKey string
The api key setting of the Grafana instance.
AutoGeneratedDomainNameLabelScope string
Scope for dns deterministic name hash calculation.
DeterministicOutboundIP string
Whether a Grafana instance uses deterministic outbound IPs.
PublicNetworkAccess string
Indicate the state for enable or disable traffic over the public interface.
ZoneRedundancy string
The zone redundancy setting of the Grafana instance.
Endpoint This property is required. string
The endpoint of the Grafana instance.
GrafanaVersion This property is required. string
The Grafana software version.
OutboundIPs This property is required. []string
List of outbound IPs if deterministicOutboundIP is enabled.
PrivateEndpointConnections This property is required. []PrivateEndpointConnectionResponse
The private endpoint connections of the Grafana instance.
ProvisioningState This property is required. string
Provisioning state of the resource.
ApiKey string
The api key setting of the Grafana instance.
AutoGeneratedDomainNameLabelScope string
Scope for dns deterministic name hash calculation.
DeterministicOutboundIP string
Whether a Grafana instance uses deterministic outbound IPs.
PublicNetworkAccess string
Indicate the state for enable or disable traffic over the public interface.
ZoneRedundancy string
The zone redundancy setting of the Grafana instance.
endpoint This property is required. String
The endpoint of the Grafana instance.
grafanaVersion This property is required. String
The Grafana software version.
outboundIPs This property is required. List<String>
List of outbound IPs if deterministicOutboundIP is enabled.
privateEndpointConnections This property is required. List<PrivateEndpointConnectionResponse>
The private endpoint connections of the Grafana instance.
provisioningState This property is required. String
Provisioning state of the resource.
apiKey String
The api key setting of the Grafana instance.
autoGeneratedDomainNameLabelScope String
Scope for dns deterministic name hash calculation.
deterministicOutboundIP String
Whether a Grafana instance uses deterministic outbound IPs.
publicNetworkAccess String
Indicate the state for enable or disable traffic over the public interface.
zoneRedundancy String
The zone redundancy setting of the Grafana instance.
endpoint This property is required. string
The endpoint of the Grafana instance.
grafanaVersion This property is required. string
The Grafana software version.
outboundIPs This property is required. string[]
List of outbound IPs if deterministicOutboundIP is enabled.
privateEndpointConnections This property is required. PrivateEndpointConnectionResponse[]
The private endpoint connections of the Grafana instance.
provisioningState This property is required. string
Provisioning state of the resource.
apiKey string
The api key setting of the Grafana instance.
autoGeneratedDomainNameLabelScope string
Scope for dns deterministic name hash calculation.
deterministicOutboundIP string
Whether a Grafana instance uses deterministic outbound IPs.
publicNetworkAccess string
Indicate the state for enable or disable traffic over the public interface.
zoneRedundancy string
The zone redundancy setting of the Grafana instance.
endpoint This property is required. str
The endpoint of the Grafana instance.
grafana_version This property is required. str
The Grafana software version.
outbound_ips This property is required. Sequence[str]
List of outbound IPs if deterministicOutboundIP is enabled.
private_endpoint_connections This property is required. Sequence[PrivateEndpointConnectionResponse]
The private endpoint connections of the Grafana instance.
provisioning_state This property is required. str
Provisioning state of the resource.
api_key str
The api key setting of the Grafana instance.
auto_generated_domain_name_label_scope str
Scope for dns deterministic name hash calculation.
deterministic_outbound_ip str
Whether a Grafana instance uses deterministic outbound IPs.
public_network_access str
Indicate the state for enable or disable traffic over the public interface.
zone_redundancy str
The zone redundancy setting of the Grafana instance.
endpoint This property is required. String
The endpoint of the Grafana instance.
grafanaVersion This property is required. String
The Grafana software version.
outboundIPs This property is required. List<String>
List of outbound IPs if deterministicOutboundIP is enabled.
privateEndpointConnections This property is required. List<Property Map>
The private endpoint connections of the Grafana instance.
provisioningState This property is required. String
Provisioning state of the resource.
apiKey String
The api key setting of the Grafana instance.
autoGeneratedDomainNameLabelScope String
Scope for dns deterministic name hash calculation.
deterministicOutboundIP String
Whether a Grafana instance uses deterministic outbound IPs.
publicNetworkAccess String
Indicate the state for enable or disable traffic over the public interface.
zoneRedundancy String
The zone redundancy setting of the Grafana instance.

ManagedServiceIdentity
, ManagedServiceIdentityArgs

Type This property is required. string | Pulumi.AzureNative.Dashboard.ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities Dictionary<string, object>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
Type This property is required. string | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities map[string]interface{}
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<String,Object>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. string | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities {[key: string]: any}
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. str | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
user_assigned_identities Mapping[str, Any]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<Any>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityResponse
, ManagedServiceIdentityResponseArgs

PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.Dashboard.Inputs.UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities map[string]UserAssignedIdentityResponse
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<String,UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principal_id This property is required. str
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenant_id This property is required. str
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. str
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<Property Map>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityType
, ManagedServiceIdentityTypeArgs

None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
ManagedServiceIdentityTypeNone
None
ManagedServiceIdentityTypeSystemAssigned
SystemAssigned
ManagedServiceIdentityTypeUserAssigned
UserAssigned
ManagedServiceIdentityType_SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
NONE
None
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned,UserAssigned
"None"
None
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned
"SystemAssigned,UserAssigned"
SystemAssigned,UserAssigned

PrivateEndpointConnectionResponse
, PrivateEndpointConnectionResponseArgs

Id This property is required. string
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
Name This property is required. string
The name of the resource
PrivateLinkServiceConnectionState This property is required. Pulumi.AzureNative.Dashboard.Inputs.PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
ProvisioningState This property is required. string
The provisioning state of the private endpoint connection resource.
SystemData This property is required. Pulumi.AzureNative.Dashboard.Inputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type This property is required. string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
GroupIds List<string>
The private endpoint connection group ids.
PrivateEndpoint Pulumi.AzureNative.Dashboard.Inputs.PrivateEndpointResponse
The resource of private end point.
Id This property is required. string
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
Name This property is required. string
The name of the resource
PrivateLinkServiceConnectionState This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
ProvisioningState This property is required. string
The provisioning state of the private endpoint connection resource.
SystemData This property is required. SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type This property is required. string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
GroupIds []string
The private endpoint connection group ids.
PrivateEndpoint PrivateEndpointResponse
The resource of private end point.
id This property is required. String
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
name This property is required. String
The name of the resource
privateLinkServiceConnectionState This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
provisioningState This property is required. String
The provisioning state of the private endpoint connection resource.
systemData This property is required. SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type This property is required. String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
groupIds List<String>
The private endpoint connection group ids.
privateEndpoint PrivateEndpointResponse
The resource of private end point.
id This property is required. string
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
name This property is required. string
The name of the resource
privateLinkServiceConnectionState This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
provisioningState This property is required. string
The provisioning state of the private endpoint connection resource.
systemData This property is required. SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type This property is required. string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
groupIds string[]
The private endpoint connection group ids.
privateEndpoint PrivateEndpointResponse
The resource of private end point.
id This property is required. str
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
name This property is required. str
The name of the resource
private_link_service_connection_state This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
provisioning_state This property is required. str
The provisioning state of the private endpoint connection resource.
system_data This property is required. SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type This property is required. str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
group_ids Sequence[str]
The private endpoint connection group ids.
private_endpoint PrivateEndpointResponse
The resource of private end point.
id This property is required. String
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
name This property is required. String
The name of the resource
privateLinkServiceConnectionState This property is required. Property Map
A collection of information about the state of the connection between service consumer and provider.
provisioningState This property is required. String
The provisioning state of the private endpoint connection resource.
systemData This property is required. Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type This property is required. String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
groupIds List<String>
The private endpoint connection group ids.
privateEndpoint Property Map
The resource of private end point.

PrivateEndpointResponse
, PrivateEndpointResponseArgs

Id This property is required. string
The ARM identifier for Private Endpoint
Id This property is required. string
The ARM identifier for Private Endpoint
id This property is required. String
The ARM identifier for Private Endpoint
id This property is required. string
The ARM identifier for Private Endpoint
id This property is required. str
The ARM identifier for Private Endpoint
id This property is required. String
The ARM identifier for Private Endpoint

PrivateLinkServiceConnectionStateResponse
, PrivateLinkServiceConnectionStateResponseArgs

ActionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval/rejection of the connection.
Status string
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
ActionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval/rejection of the connection.
Status string
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired String
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval/rejection of the connection.
status String
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
description string
The reason for approval/rejection of the connection.
status string
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actions_required str
A message indicating if changes on the service provider require any updates on the consumer.
description str
The reason for approval/rejection of the connection.
status str
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired String
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval/rejection of the connection.
status String
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.

PublicNetworkAccess
, PublicNetworkAccessArgs

Enabled
Enabled
Disabled
Disabled
PublicNetworkAccessEnabled
Enabled
PublicNetworkAccessDisabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
ENABLED
Enabled
DISABLED
Disabled
"Enabled"
Enabled
"Disabled"
Disabled

ResourceSku
, ResourceSkuArgs

Name This property is required. string
Name This property is required. string
name This property is required. String
name This property is required. string
name This property is required. str
name This property is required. String

ResourceSkuResponse
, ResourceSkuResponseArgs

Name This property is required. string
Name This property is required. string
name This property is required. String
name This property is required. string
name This property is required. str
name This property is required. String

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

UserAssignedIdentityResponse
, UserAssignedIdentityResponseArgs

ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.
clientId This property is required. string
The client ID of the assigned identity.
principalId This property is required. string
The principal ID of the assigned identity.
client_id This property is required. str
The client ID of the assigned identity.
principal_id This property is required. str
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.

ZoneRedundancy
, ZoneRedundancyArgs

Disabled
Disabled
Enabled
Enabled
ZoneRedundancyDisabled
Disabled
ZoneRedundancyEnabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
DISABLED
Disabled
ENABLED
Enabled
"Disabled"
Disabled
"Enabled"
Enabled

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:dashboard:Grafana myWorkspace /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/grafana/myWorkspace 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v1 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi