1. Packages
  2. Packages
  3. Grafana Cloud
  4. API Docs
  5. cloud
  6. Stack
Viewing docs for Grafana v2.29.0
published on Friday, May 1, 2026 by pulumiverse
grafana logo
Viewing docs for Grafana v2.29.0
published on Friday, May 1, 2026 by pulumiverse

    Required access policy scopes:

    • stacks:read
    • stacks:write
    • stacks:delete

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as grafana from "@pulumiverse/grafana";
    
    const test = new grafana.cloud.Stack("test", {
        name: "gcloudstacktest",
        slug: "gcloudstacktest",
        regionSlug: "eu",
        description: "Test Grafana Cloud Stack",
    });
    
    import pulumi
    import pulumiverse_grafana as grafana
    
    test = grafana.cloud.Stack("test",
        name="gcloudstacktest",
        slug="gcloudstacktest",
        region_slug="eu",
        description="Test Grafana Cloud Stack")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-grafana/sdk/v2/go/grafana/cloud"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloud.NewStack(ctx, "test", &cloud.StackArgs{
    			Name:        pulumi.String("gcloudstacktest"),
    			Slug:        pulumi.String("gcloudstacktest"),
    			RegionSlug:  pulumi.String("eu"),
    			Description: pulumi.String("Test Grafana Cloud Stack"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Grafana = Pulumiverse.Grafana;
    
    return await Deployment.RunAsync(() => 
    {
        var test = new Grafana.Cloud.Stack("test", new()
        {
            Name = "gcloudstacktest",
            Slug = "gcloudstacktest",
            RegionSlug = "eu",
            Description = "Test Grafana Cloud Stack",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.grafana.cloud.Stack;
    import com.pulumi.grafana.cloud.StackArgs;
    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 test = new Stack("test", StackArgs.builder()
                .name("gcloudstacktest")
                .slug("gcloudstacktest")
                .regionSlug("eu")
                .description("Test Grafana Cloud Stack")
                .build());
    
        }
    }
    
    resources:
      test:
        type: grafana:cloud:Stack
        properties:
          name: gcloudstacktest
          slug: gcloudstacktest
          regionSlug: eu
          description: Test Grafana Cloud Stack
    

    Create Stack Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Stack(name: string, args: StackArgs, opts?: CustomResourceOptions);
    @overload
    def Stack(resource_name: str,
              args: StackArgs,
              opts: Optional[ResourceOptions] = None)
    
    @overload
    def Stack(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              slug: Optional[str] = None,
              delete_protection: Optional[bool] = None,
              description: Optional[str] = None,
              labels: Optional[Mapping[str, str]] = None,
              name: Optional[str] = None,
              region_slug: Optional[str] = None,
              url: Optional[str] = None,
              wait_for_readiness: Optional[bool] = None,
              wait_for_readiness_timeout: Optional[str] = None)
    func NewStack(ctx *Context, name string, args StackArgs, opts ...ResourceOption) (*Stack, error)
    public Stack(string name, StackArgs args, CustomResourceOptions? opts = null)
    public Stack(String name, StackArgs args)
    public Stack(String name, StackArgs args, CustomResourceOptions options)
    
    type: grafana:cloud:Stack
    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 StackArgs
    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 StackArgs
    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 StackArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StackArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StackArgs
    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 grafanaStackResource = new Grafana.Cloud.Stack("grafanaStackResource", new()
    {
        Slug = "string",
        DeleteProtection = false,
        Description = "string",
        Labels = 
        {
            { "string", "string" },
        },
        Name = "string",
        RegionSlug = "string",
        Url = "string",
        WaitForReadiness = false,
        WaitForReadinessTimeout = "string",
    });
    
    example, err := cloud.NewStack(ctx, "grafanaStackResource", &cloud.StackArgs{
    	Slug:             pulumi.String("string"),
    	DeleteProtection: pulumi.Bool(false),
    	Description:      pulumi.String("string"),
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Name:                    pulumi.String("string"),
    	RegionSlug:              pulumi.String("string"),
    	Url:                     pulumi.String("string"),
    	WaitForReadiness:        pulumi.Bool(false),
    	WaitForReadinessTimeout: pulumi.String("string"),
    })
    
    var grafanaStackResource = new com.pulumi.grafana.cloud.Stack("grafanaStackResource", com.pulumi.grafana.cloud.StackArgs.builder()
        .slug("string")
        .deleteProtection(false)
        .description("string")
        .labels(Map.of("string", "string"))
        .name("string")
        .regionSlug("string")
        .url("string")
        .waitForReadiness(false)
        .waitForReadinessTimeout("string")
        .build());
    
    grafana_stack_resource = grafana.cloud.Stack("grafanaStackResource",
        slug="string",
        delete_protection=False,
        description="string",
        labels={
            "string": "string",
        },
        name="string",
        region_slug="string",
        url="string",
        wait_for_readiness=False,
        wait_for_readiness_timeout="string")
    
    const grafanaStackResource = new grafana.cloud.Stack("grafanaStackResource", {
        slug: "string",
        deleteProtection: false,
        description: "string",
        labels: {
            string: "string",
        },
        name: "string",
        regionSlug: "string",
        url: "string",
        waitForReadiness: false,
        waitForReadinessTimeout: "string",
    });
    
    type: grafana:cloud:Stack
    properties:
        deleteProtection: false
        description: string
        labels:
            string: string
        name: string
        regionSlug: string
        slug: string
        url: string
        waitForReadiness: false
        waitForReadinessTimeout: string
    

    Stack 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 Stack resource accepts the following input properties:

    Slug string
    Subdomain that the Grafana instance will be available at. Setting slug to <stack_slug> will make the instance available at https://<stack_slug>.grafana.net.
    DeleteProtection bool
    Whether to enable delete protection for the stack, preventing accidental deletion. Defaults to true.
    Description string
    Description of stack.
    Labels Dictionary<string, string>
    A map of labels to assign to the stack. Label keys and values must match the following regexp: "^[a-zA-Z0-9/-._]+$" and stacks cannot have more than 10 labels.
    Name string
    Name of stack. Conventionally matches the url of the instance (e.g. <stack_slug>.grafana.net).
    RegionSlug string
    Region slug to assign to this stack. Changing region will destroy the existing stack and create a new one in the desired region. Use the region list API to get the list of available regions: https://grafana.com/docs/grafana-cloud/developer-resources/api-reference/cloud-api/#list-regions.
    Url string
    Custom URL for the Grafana instance. Must have a CNAME setup to point to .grafana.net before creating the stack
    WaitForReadiness bool
    Whether to wait for readiness of the stack after creating it. The check is a HEAD request to the stack URL (Grafana instance). Defaults to true.
    WaitForReadinessTimeout string
    How long to wait for readiness (if enabled). Defaults to 5m0s.
    Slug string
    Subdomain that the Grafana instance will be available at. Setting slug to <stack_slug> will make the instance available at https://<stack_slug>.grafana.net.
    DeleteProtection bool
    Whether to enable delete protection for the stack, preventing accidental deletion. Defaults to true.
    Description string
    Description of stack.
    Labels map[string]string
    A map of labels to assign to the stack. Label keys and values must match the following regexp: "^[a-zA-Z0-9/-._]+$" and stacks cannot have more than 10 labels.
    Name string
    Name of stack. Conventionally matches the url of the instance (e.g. <stack_slug>.grafana.net).
    RegionSlug string
    Region slug to assign to this stack. Changing region will destroy the existing stack and create a new one in the desired region. Use the region list API to get the list of available regions: https://grafana.com/docs/grafana-cloud/developer-resources/api-reference/cloud-api/#list-regions.
    Url string
    Custom URL for the Grafana instance. Must have a CNAME setup to point to .grafana.net before creating the stack
    WaitForReadiness bool
    Whether to wait for readiness of the stack after creating it. The check is a HEAD request to the stack URL (Grafana instance). Defaults to true.
    WaitForReadinessTimeout string
    How long to wait for readiness (if enabled). Defaults to 5m0s.
    slug String
    Subdomain that the Grafana instance will be available at. Setting slug to <stack_slug> will make the instance available at https://<stack_slug>.grafana.net.
    deleteProtection Boolean
    Whether to enable delete protection for the stack, preventing accidental deletion. Defaults to true.
    description String
    Description of stack.
    labels Map<String,String>
    A map of labels to assign to the stack. Label keys and values must match the following regexp: "^[a-zA-Z0-9/-._]+$" and stacks cannot have more than 10 labels.
    name String
    Name of stack. Conventionally matches the url of the instance (e.g. <stack_slug>.grafana.net).
    regionSlug String
    Region slug to assign to this stack. Changing region will destroy the existing stack and create a new one in the desired region. Use the region list API to get the list of available regions: https://grafana.com/docs/grafana-cloud/developer-resources/api-reference/cloud-api/#list-regions.
    url String
    Custom URL for the Grafana instance. Must have a CNAME setup to point to .grafana.net before creating the stack
    waitForReadiness Boolean
    Whether to wait for readiness of the stack after creating it. The check is a HEAD request to the stack URL (Grafana instance). Defaults to true.
    waitForReadinessTimeout String
    How long to wait for readiness (if enabled). Defaults to 5m0s.
    slug string
    Subdomain that the Grafana instance will be available at. Setting slug to <stack_slug> will make the instance available at https://<stack_slug>.grafana.net.
    deleteProtection boolean
    Whether to enable delete protection for the stack, preventing accidental deletion. Defaults to true.
    description string
    Description of stack.
    labels {[key: string]: string}
    A map of labels to assign to the stack. Label keys and values must match the following regexp: "^[a-zA-Z0-9/-._]+$" and stacks cannot have more than 10 labels.
    name string
    Name of stack. Conventionally matches the url of the instance (e.g. <stack_slug>.grafana.net).
    regionSlug string
    Region slug to assign to this stack. Changing region will destroy the existing stack and create a new one in the desired region. Use the region list API to get the list of available regions: https://grafana.com/docs/grafana-cloud/developer-resources/api-reference/cloud-api/#list-regions.
    url string
    Custom URL for the Grafana instance. Must have a CNAME setup to point to .grafana.net before creating the stack
    waitForReadiness boolean
    Whether to wait for readiness of the stack after creating it. The check is a HEAD request to the stack URL (Grafana instance). Defaults to true.
    waitForReadinessTimeout string
    How long to wait for readiness (if enabled). Defaults to 5m0s.
    slug str
    Subdomain that the Grafana instance will be available at. Setting slug to <stack_slug> will make the instance available at https://<stack_slug>.grafana.net.
    delete_protection bool
    Whether to enable delete protection for the stack, preventing accidental deletion. Defaults to true.
    description str
    Description of stack.
    labels Mapping[str, str]
    A map of labels to assign to the stack. Label keys and values must match the following regexp: "^[a-zA-Z0-9/-._]+$" and stacks cannot have more than 10 labels.
    name str
    Name of stack. Conventionally matches the url of the instance (e.g. <stack_slug>.grafana.net).
    region_slug str
    Region slug to assign to this stack. Changing region will destroy the existing stack and create a new one in the desired region. Use the region list API to get the list of available regions: https://grafana.com/docs/grafana-cloud/developer-resources/api-reference/cloud-api/#list-regions.
    url str
    Custom URL for the Grafana instance. Must have a CNAME setup to point to .grafana.net before creating the stack
    wait_for_readiness bool
    Whether to wait for readiness of the stack after creating it. The check is a HEAD request to the stack URL (Grafana instance). Defaults to true.
    wait_for_readiness_timeout str
    How long to wait for readiness (if enabled). Defaults to 5m0s.
    slug String
    Subdomain that the Grafana instance will be available at. Setting slug to <stack_slug> will make the instance available at https://<stack_slug>.grafana.net.
    deleteProtection Boolean
    Whether to enable delete protection for the stack, preventing accidental deletion. Defaults to true.
    description String
    Description of stack.
    labels Map<String>
    A map of labels to assign to the stack. Label keys and values must match the following regexp: "^[a-zA-Z0-9/-._]+$" and stacks cannot have more than 10 labels.
    name String
    Name of stack. Conventionally matches the url of the instance (e.g. <stack_slug>.grafana.net).
    regionSlug String
    Region slug to assign to this stack. Changing region will destroy the existing stack and create a new one in the desired region. Use the region list API to get the list of available regions: https://grafana.com/docs/grafana-cloud/developer-resources/api-reference/cloud-api/#list-regions.
    url String
    Custom URL for the Grafana instance. Must have a CNAME setup to point to .grafana.net before creating the stack
    waitForReadiness Boolean
    Whether to wait for readiness of the stack after creating it. The check is a HEAD request to the stack URL (Grafana instance). Defaults to true.
    waitForReadinessTimeout String
    How long to wait for readiness (if enabled). Defaults to 5m0s.

    Outputs

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

    AlertmanagerIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Alertmanager instances (Optional)
    AlertmanagerName string
    Name of the Alertmanager instance configured for this stack.
    AlertmanagerStatus string
    Status of the Alertmanager instance configured for this stack.
    AlertmanagerUrl string
    Base URL of the Alertmanager instance configured for this stack.
    AlertmanagerUserId int
    User ID of the Alertmanager instance configured for this stack.
    CloudProviderUrl string
    Base URL of the Cloud Provider API for this stack's cluster. This can be used with the cloudProviderUrl provider config option to manage Cloud Provider resources for this stack.
    ClusterName string
    Name of the cluster where this stack resides.
    ClusterSlug string
    Slug of the cluster where this stack resides.
    ConnectionsApiUrl string
    Base URL of the Connections API for this stack's cluster. This can be used with the connectionsApiUrl provider config option to manage Connections resources for this stack.
    FleetManagementName string
    Name of the Fleet Management instance configured for this stack.
    FleetManagementPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoPrivateDns string
    Private DNS for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoRegions List<string>
    Regions for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoServiceName string
    Service Name for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementStatus string
    Status of the Fleet Management instance configured for this stack.
    FleetManagementUrl string
    Base URL of the Fleet Management instance configured for this stack.
    FleetManagementUserId int
    User ID of the Fleet Management instance configured for this stack.
    GrafanasIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the grafana instance (Optional)
    GraphiteIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Graphite instance (Optional)
    GraphiteName string
    GraphitePrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoPrivateDns string
    Private DNS for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoRegions List<string>
    Regions for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoServiceName string
    Service Name for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphiteStatus string
    GraphiteUrl string
    GraphiteUserId int
    Id string
    The provider-assigned unique ID for this managed resource.
    InfluxUrl string
    Base URL of the InfluxDB instance configured for this stack. The username is the same as the metrics' (prometheusUserId attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/metrics/metrics-influxdb/push-from-telegraf/ for docs on how to use this.
    LogsIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Logs instance (Optional)
    LogsName string
    LogsPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoPrivateDns string
    Private DNS for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoRegions List<string>
    Regions for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoServiceName string
    Service Name for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsStatus string
    LogsUrl string
    LogsUserId int
    OncallApiUrl string
    Base URL of the OnCall API instance configured for this stack.
    OrgId int
    Organization id to assign to this stack.
    OrgName string
    Organization name to assign to this stack.
    OrgSlug string
    Organization slug to assign to this stack.
    OtlpPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoPrivateDns string
    Private DNS for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoRegions List<string>
    Regions for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoServiceName string
    Service Name for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpUrl string
    Base URL of the OTLP instance configured for this stack. The username is the stack's ID (id attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/ for docs on how to use this.
    PdcApiPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoPrivateDns string
    Private DNS for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoRegions List<string>
    Regions for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoServiceName string
    Service Name for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoPrivateDns string
    Private DNS for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoRegions List<string>
    Regions for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoServiceName string
    Service Name for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    ProfilesIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Profiles instance (Optional)
    ProfilesName string
    ProfilesPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoPrivateDns string
    Private DNS for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoRegions List<string>
    Regions for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoServiceName string
    Service Name for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesStatus string
    ProfilesUrl string
    ProfilesUserId int
    PrometheusIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Prometheus instance (Optional)
    PrometheusName string
    Prometheus name for this instance.
    PrometheusPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoPrivateDns string
    Private DNS for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoRegions List<string>
    Regions for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoServiceName string
    Service Name for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusRemoteEndpoint string
    Use this URL to query hosted metrics data e.g. Prometheus data source in Grafana
    PrometheusRemoteWriteEndpoint string
    Use this URL to send prometheus metrics to Grafana cloud
    PrometheusStatus string
    Prometheus status for this instance.
    PrometheusUrl string
    Prometheus url for this instance.
    PrometheusUserId int
    Prometheus user ID. Used for e.g. remote_write.
    SmUrl string
    Base URL of the Synthetic Monitoring API for this stack's region. This can be used with the smUrl provider config option. Note: Synthetic Monitoring requires activation either via the grafana.syntheticMonitoring.Installation resource or manually in the Grafana Cloud UI before it can be used.
    Status string
    Status of the stack.
    TracesIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Traces instance (Optional)
    TracesName string
    TracesPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoPrivateDns string
    Private DNS for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoRegions List<string>
    Regions for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoServiceName string
    Service Name for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesStatus string
    TracesUrl string
    Base URL of the Traces instance configured for this stack. To use this in the Tempo data source in Grafana, append /tempo to the URL.
    TracesUserId int
    AlertmanagerIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Alertmanager instances (Optional)
    AlertmanagerName string
    Name of the Alertmanager instance configured for this stack.
    AlertmanagerStatus string
    Status of the Alertmanager instance configured for this stack.
    AlertmanagerUrl string
    Base URL of the Alertmanager instance configured for this stack.
    AlertmanagerUserId int
    User ID of the Alertmanager instance configured for this stack.
    CloudProviderUrl string
    Base URL of the Cloud Provider API for this stack's cluster. This can be used with the cloudProviderUrl provider config option to manage Cloud Provider resources for this stack.
    ClusterName string
    Name of the cluster where this stack resides.
    ClusterSlug string
    Slug of the cluster where this stack resides.
    ConnectionsApiUrl string
    Base URL of the Connections API for this stack's cluster. This can be used with the connectionsApiUrl provider config option to manage Connections resources for this stack.
    FleetManagementName string
    Name of the Fleet Management instance configured for this stack.
    FleetManagementPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoPrivateDns string
    Private DNS for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoRegions []string
    Regions for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoServiceName string
    Service Name for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementStatus string
    Status of the Fleet Management instance configured for this stack.
    FleetManagementUrl string
    Base URL of the Fleet Management instance configured for this stack.
    FleetManagementUserId int
    User ID of the Fleet Management instance configured for this stack.
    GrafanasIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the grafana instance (Optional)
    GraphiteIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Graphite instance (Optional)
    GraphiteName string
    GraphitePrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoPrivateDns string
    Private DNS for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoRegions []string
    Regions for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoServiceName string
    Service Name for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphiteStatus string
    GraphiteUrl string
    GraphiteUserId int
    Id string
    The provider-assigned unique ID for this managed resource.
    InfluxUrl string
    Base URL of the InfluxDB instance configured for this stack. The username is the same as the metrics' (prometheusUserId attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/metrics/metrics-influxdb/push-from-telegraf/ for docs on how to use this.
    LogsIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Logs instance (Optional)
    LogsName string
    LogsPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoPrivateDns string
    Private DNS for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoRegions []string
    Regions for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoServiceName string
    Service Name for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsStatus string
    LogsUrl string
    LogsUserId int
    OncallApiUrl string
    Base URL of the OnCall API instance configured for this stack.
    OrgId int
    Organization id to assign to this stack.
    OrgName string
    Organization name to assign to this stack.
    OrgSlug string
    Organization slug to assign to this stack.
    OtlpPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoPrivateDns string
    Private DNS for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoRegions []string
    Regions for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoServiceName string
    Service Name for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpUrl string
    Base URL of the OTLP instance configured for this stack. The username is the stack's ID (id attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/ for docs on how to use this.
    PdcApiPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoPrivateDns string
    Private DNS for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoRegions []string
    Regions for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoServiceName string
    Service Name for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoPrivateDns string
    Private DNS for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoRegions []string
    Regions for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoServiceName string
    Service Name for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    ProfilesIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Profiles instance (Optional)
    ProfilesName string
    ProfilesPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoPrivateDns string
    Private DNS for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoRegions []string
    Regions for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoServiceName string
    Service Name for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesStatus string
    ProfilesUrl string
    ProfilesUserId int
    PrometheusIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Prometheus instance (Optional)
    PrometheusName string
    Prometheus name for this instance.
    PrometheusPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoPrivateDns string
    Private DNS for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoRegions []string
    Regions for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoServiceName string
    Service Name for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusRemoteEndpoint string
    Use this URL to query hosted metrics data e.g. Prometheus data source in Grafana
    PrometheusRemoteWriteEndpoint string
    Use this URL to send prometheus metrics to Grafana cloud
    PrometheusStatus string
    Prometheus status for this instance.
    PrometheusUrl string
    Prometheus url for this instance.
    PrometheusUserId int
    Prometheus user ID. Used for e.g. remote_write.
    SmUrl string
    Base URL of the Synthetic Monitoring API for this stack's region. This can be used with the smUrl provider config option. Note: Synthetic Monitoring requires activation either via the grafana.syntheticMonitoring.Installation resource or manually in the Grafana Cloud UI before it can be used.
    Status string
    Status of the stack.
    TracesIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Traces instance (Optional)
    TracesName string
    TracesPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoPrivateDns string
    Private DNS for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoRegions []string
    Regions for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoServiceName string
    Service Name for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesStatus string
    TracesUrl string
    Base URL of the Traces instance configured for this stack. To use this in the Tempo data source in Grafana, append /tempo to the URL.
    TracesUserId int
    alertmanagerIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Alertmanager instances (Optional)
    alertmanagerName String
    Name of the Alertmanager instance configured for this stack.
    alertmanagerStatus String
    Status of the Alertmanager instance configured for this stack.
    alertmanagerUrl String
    Base URL of the Alertmanager instance configured for this stack.
    alertmanagerUserId Integer
    User ID of the Alertmanager instance configured for this stack.
    cloudProviderUrl String
    Base URL of the Cloud Provider API for this stack's cluster. This can be used with the cloudProviderUrl provider config option to manage Cloud Provider resources for this stack.
    clusterName String
    Name of the cluster where this stack resides.
    clusterSlug String
    Slug of the cluster where this stack resides.
    connectionsApiUrl String
    Base URL of the Connections API for this stack's cluster. This can be used with the connectionsApiUrl provider config option to manage Connections resources for this stack.
    fleetManagementName String
    Name of the Fleet Management instance configured for this stack.
    fleetManagementPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoPrivateDns String
    Private DNS for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoRegions List<String>
    Regions for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoServiceName String
    Service Name for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementStatus String
    Status of the Fleet Management instance configured for this stack.
    fleetManagementUrl String
    Base URL of the Fleet Management instance configured for this stack.
    fleetManagementUserId Integer
    User ID of the Fleet Management instance configured for this stack.
    grafanasIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the grafana instance (Optional)
    graphiteIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Graphite instance (Optional)
    graphiteName String
    graphitePrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoPrivateDns String
    Private DNS for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoRegions List<String>
    Regions for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoServiceName String
    Service Name for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphiteStatus String
    graphiteUrl String
    graphiteUserId Integer
    id String
    The provider-assigned unique ID for this managed resource.
    influxUrl String
    Base URL of the InfluxDB instance configured for this stack. The username is the same as the metrics' (prometheusUserId attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/metrics/metrics-influxdb/push-from-telegraf/ for docs on how to use this.
    logsIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Logs instance (Optional)
    logsName String
    logsPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoPrivateDns String
    Private DNS for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoRegions List<String>
    Regions for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoServiceName String
    Service Name for Logs when using AWS PrivateLink (only for AWS stacks)
    logsStatus String
    logsUrl String
    logsUserId Integer
    oncallApiUrl String
    Base URL of the OnCall API instance configured for this stack.
    orgId Integer
    Organization id to assign to this stack.
    orgName String
    Organization name to assign to this stack.
    orgSlug String
    Organization slug to assign to this stack.
    otlpPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoPrivateDns String
    Private DNS for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoRegions List<String>
    Regions for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoServiceName String
    Service Name for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpUrl String
    Base URL of the OTLP instance configured for this stack. The username is the stack's ID (id attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/ for docs on how to use this.
    pdcApiPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoPrivateDns String
    Private DNS for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoRegions List<String>
    Regions for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoServiceName String
    Service Name for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoPrivateDns String
    Private DNS for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoRegions List<String>
    Regions for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoServiceName String
    Service Name for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    profilesIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Profiles instance (Optional)
    profilesName String
    profilesPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoPrivateDns String
    Private DNS for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoRegions List<String>
    Regions for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoServiceName String
    Service Name for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesStatus String
    profilesUrl String
    profilesUserId Integer
    prometheusIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Prometheus instance (Optional)
    prometheusName String
    Prometheus name for this instance.
    prometheusPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoPrivateDns String
    Private DNS for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoRegions List<String>
    Regions for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoServiceName String
    Service Name for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusRemoteEndpoint String
    Use this URL to query hosted metrics data e.g. Prometheus data source in Grafana
    prometheusRemoteWriteEndpoint String
    Use this URL to send prometheus metrics to Grafana cloud
    prometheusStatus String
    Prometheus status for this instance.
    prometheusUrl String
    Prometheus url for this instance.
    prometheusUserId Integer
    Prometheus user ID. Used for e.g. remote_write.
    smUrl String
    Base URL of the Synthetic Monitoring API for this stack's region. This can be used with the smUrl provider config option. Note: Synthetic Monitoring requires activation either via the grafana.syntheticMonitoring.Installation resource or manually in the Grafana Cloud UI before it can be used.
    status String
    Status of the stack.
    tracesIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Traces instance (Optional)
    tracesName String
    tracesPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoPrivateDns String
    Private DNS for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoRegions List<String>
    Regions for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoServiceName String
    Service Name for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesStatus String
    tracesUrl String
    Base URL of the Traces instance configured for this stack. To use this in the Tempo data source in Grafana, append /tempo to the URL.
    tracesUserId Integer
    alertmanagerIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Alertmanager instances (Optional)
    alertmanagerName string
    Name of the Alertmanager instance configured for this stack.
    alertmanagerStatus string
    Status of the Alertmanager instance configured for this stack.
    alertmanagerUrl string
    Base URL of the Alertmanager instance configured for this stack.
    alertmanagerUserId number
    User ID of the Alertmanager instance configured for this stack.
    cloudProviderUrl string
    Base URL of the Cloud Provider API for this stack's cluster. This can be used with the cloudProviderUrl provider config option to manage Cloud Provider resources for this stack.
    clusterName string
    Name of the cluster where this stack resides.
    clusterSlug string
    Slug of the cluster where this stack resides.
    connectionsApiUrl string
    Base URL of the Connections API for this stack's cluster. This can be used with the connectionsApiUrl provider config option to manage Connections resources for this stack.
    fleetManagementName string
    Name of the Fleet Management instance configured for this stack.
    fleetManagementPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoPrivateDns string
    Private DNS for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoRegions string[]
    Regions for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoServiceName string
    Service Name for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementStatus string
    Status of the Fleet Management instance configured for this stack.
    fleetManagementUrl string
    Base URL of the Fleet Management instance configured for this stack.
    fleetManagementUserId number
    User ID of the Fleet Management instance configured for this stack.
    grafanasIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the grafana instance (Optional)
    graphiteIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Graphite instance (Optional)
    graphiteName string
    graphitePrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoPrivateDns string
    Private DNS for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoRegions string[]
    Regions for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoServiceName string
    Service Name for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphiteStatus string
    graphiteUrl string
    graphiteUserId number
    id string
    The provider-assigned unique ID for this managed resource.
    influxUrl string
    Base URL of the InfluxDB instance configured for this stack. The username is the same as the metrics' (prometheusUserId attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/metrics/metrics-influxdb/push-from-telegraf/ for docs on how to use this.
    logsIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Logs instance (Optional)
    logsName string
    logsPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoPrivateDns string
    Private DNS for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoRegions string[]
    Regions for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoServiceName string
    Service Name for Logs when using AWS PrivateLink (only for AWS stacks)
    logsStatus string
    logsUrl string
    logsUserId number
    oncallApiUrl string
    Base URL of the OnCall API instance configured for this stack.
    orgId number
    Organization id to assign to this stack.
    orgName string
    Organization name to assign to this stack.
    orgSlug string
    Organization slug to assign to this stack.
    otlpPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoPrivateDns string
    Private DNS for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoRegions string[]
    Regions for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoServiceName string
    Service Name for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpUrl string
    Base URL of the OTLP instance configured for this stack. The username is the stack's ID (id attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/ for docs on how to use this.
    pdcApiPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoPrivateDns string
    Private DNS for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoRegions string[]
    Regions for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoServiceName string
    Service Name for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoPrivateDns string
    Private DNS for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoRegions string[]
    Regions for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoServiceName string
    Service Name for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    profilesIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Profiles instance (Optional)
    profilesName string
    profilesPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoPrivateDns string
    Private DNS for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoRegions string[]
    Regions for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoServiceName string
    Service Name for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesStatus string
    profilesUrl string
    profilesUserId number
    prometheusIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Prometheus instance (Optional)
    prometheusName string
    Prometheus name for this instance.
    prometheusPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoPrivateDns string
    Private DNS for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoRegions string[]
    Regions for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoServiceName string
    Service Name for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusRemoteEndpoint string
    Use this URL to query hosted metrics data e.g. Prometheus data source in Grafana
    prometheusRemoteWriteEndpoint string
    Use this URL to send prometheus metrics to Grafana cloud
    prometheusStatus string
    Prometheus status for this instance.
    prometheusUrl string
    Prometheus url for this instance.
    prometheusUserId number
    Prometheus user ID. Used for e.g. remote_write.
    smUrl string
    Base URL of the Synthetic Monitoring API for this stack's region. This can be used with the smUrl provider config option. Note: Synthetic Monitoring requires activation either via the grafana.syntheticMonitoring.Installation resource or manually in the Grafana Cloud UI before it can be used.
    status string
    Status of the stack.
    tracesIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Traces instance (Optional)
    tracesName string
    tracesPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoPrivateDns string
    Private DNS for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoRegions string[]
    Regions for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoServiceName string
    Service Name for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesStatus string
    tracesUrl string
    Base URL of the Traces instance configured for this stack. To use this in the Tempo data source in Grafana, append /tempo to the URL.
    tracesUserId number
    alertmanager_ip_allow_list_cname str
    Comma-separated list of CNAMEs that can be whitelisted to access the Alertmanager instances (Optional)
    alertmanager_name str
    Name of the Alertmanager instance configured for this stack.
    alertmanager_status str
    Status of the Alertmanager instance configured for this stack.
    alertmanager_url str
    Base URL of the Alertmanager instance configured for this stack.
    alertmanager_user_id int
    User ID of the Alertmanager instance configured for this stack.
    cloud_provider_url str
    Base URL of the Cloud Provider API for this stack's cluster. This can be used with the cloudProviderUrl provider config option to manage Cloud Provider resources for this stack.
    cluster_name str
    Name of the cluster where this stack resides.
    cluster_slug str
    Slug of the cluster where this stack resides.
    connections_api_url str
    Base URL of the Connections API for this stack's cluster. This can be used with the connectionsApiUrl provider config option to manage Connections resources for this stack.
    fleet_management_name str
    Name of the Fleet Management instance configured for this stack.
    fleet_management_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleet_management_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleet_management_private_connectivity_info_private_dns str
    Private DNS for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleet_management_private_connectivity_info_regions Sequence[str]
    Regions for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleet_management_private_connectivity_info_service_name str
    Service Name for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleet_management_status str
    Status of the Fleet Management instance configured for this stack.
    fleet_management_url str
    Base URL of the Fleet Management instance configured for this stack.
    fleet_management_user_id int
    User ID of the Fleet Management instance configured for this stack.
    grafanas_ip_allow_list_cname str
    Comma-separated list of CNAMEs that can be whitelisted to access the grafana instance (Optional)
    graphite_ip_allow_list_cname str
    Comma-separated list of CNAMEs that can be whitelisted to access the Graphite instance (Optional)
    graphite_name str
    graphite_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphite_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphite_private_connectivity_info_private_dns str
    Private DNS for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphite_private_connectivity_info_regions Sequence[str]
    Regions for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphite_private_connectivity_info_service_name str
    Service Name for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphite_status str
    graphite_url str
    graphite_user_id int
    id str
    The provider-assigned unique ID for this managed resource.
    influx_url str
    Base URL of the InfluxDB instance configured for this stack. The username is the same as the metrics' (prometheusUserId attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/metrics/metrics-influxdb/push-from-telegraf/ for docs on how to use this.
    logs_ip_allow_list_cname str
    Comma-separated list of CNAMEs that can be whitelisted to access the Logs instance (Optional)
    logs_name str
    logs_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for Logs when using AWS PrivateLink (only for AWS stacks)
    logs_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for Logs when using AWS PrivateLink (only for AWS stacks)
    logs_private_connectivity_info_private_dns str
    Private DNS for Logs when using AWS PrivateLink (only for AWS stacks)
    logs_private_connectivity_info_regions Sequence[str]
    Regions for Logs when using AWS PrivateLink (only for AWS stacks)
    logs_private_connectivity_info_service_name str
    Service Name for Logs when using AWS PrivateLink (only for AWS stacks)
    logs_status str
    logs_url str
    logs_user_id int
    oncall_api_url str
    Base URL of the OnCall API instance configured for this stack.
    org_id int
    Organization id to assign to this stack.
    org_name str
    Organization name to assign to this stack.
    org_slug str
    Organization slug to assign to this stack.
    otlp_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlp_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlp_private_connectivity_info_private_dns str
    Private DNS for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlp_private_connectivity_info_regions Sequence[str]
    Regions for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlp_private_connectivity_info_service_name str
    Service Name for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlp_url str
    Base URL of the OTLP instance configured for this stack. The username is the stack's ID (id attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/ for docs on how to use this.
    pdc_api_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdc_api_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdc_api_private_connectivity_info_private_dns str
    Private DNS for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdc_api_private_connectivity_info_regions Sequence[str]
    Regions for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdc_api_private_connectivity_info_service_name str
    Service Name for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdc_gateway_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdc_gateway_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdc_gateway_private_connectivity_info_private_dns str
    Private DNS for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdc_gateway_private_connectivity_info_regions Sequence[str]
    Regions for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdc_gateway_private_connectivity_info_service_name str
    Service Name for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    profiles_ip_allow_list_cname str
    Comma-separated list of CNAMEs that can be whitelisted to access the Profiles instance (Optional)
    profiles_name str
    profiles_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for Profiles when using AWS PrivateLink (only for AWS stacks)
    profiles_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for Profiles when using AWS PrivateLink (only for AWS stacks)
    profiles_private_connectivity_info_private_dns str
    Private DNS for Profiles when using AWS PrivateLink (only for AWS stacks)
    profiles_private_connectivity_info_regions Sequence[str]
    Regions for Profiles when using AWS PrivateLink (only for AWS stacks)
    profiles_private_connectivity_info_service_name str
    Service Name for Profiles when using AWS PrivateLink (only for AWS stacks)
    profiles_status str
    profiles_url str
    profiles_user_id int
    prometheus_ip_allow_list_cname str
    Comma-separated list of CNAMEs that can be whitelisted to access the Prometheus instance (Optional)
    prometheus_name str
    Prometheus name for this instance.
    prometheus_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheus_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheus_private_connectivity_info_private_dns str
    Private DNS for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheus_private_connectivity_info_regions Sequence[str]
    Regions for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheus_private_connectivity_info_service_name str
    Service Name for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheus_remote_endpoint str
    Use this URL to query hosted metrics data e.g. Prometheus data source in Grafana
    prometheus_remote_write_endpoint str
    Use this URL to send prometheus metrics to Grafana cloud
    prometheus_status str
    Prometheus status for this instance.
    prometheus_url str
    Prometheus url for this instance.
    prometheus_user_id int
    Prometheus user ID. Used for e.g. remote_write.
    sm_url str
    Base URL of the Synthetic Monitoring API for this stack's region. This can be used with the smUrl provider config option. Note: Synthetic Monitoring requires activation either via the grafana.syntheticMonitoring.Installation resource or manually in the Grafana Cloud UI before it can be used.
    status str
    Status of the stack.
    traces_ip_allow_list_cname str
    Comma-separated list of CNAMEs that can be whitelisted to access the Traces instance (Optional)
    traces_name str
    traces_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for Traces when using AWS PrivateLink (only for AWS stacks)
    traces_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for Traces when using AWS PrivateLink (only for AWS stacks)
    traces_private_connectivity_info_private_dns str
    Private DNS for Traces when using AWS PrivateLink (only for AWS stacks)
    traces_private_connectivity_info_regions Sequence[str]
    Regions for Traces when using AWS PrivateLink (only for AWS stacks)
    traces_private_connectivity_info_service_name str
    Service Name for Traces when using AWS PrivateLink (only for AWS stacks)
    traces_status str
    traces_url str
    Base URL of the Traces instance configured for this stack. To use this in the Tempo data source in Grafana, append /tempo to the URL.
    traces_user_id int
    alertmanagerIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Alertmanager instances (Optional)
    alertmanagerName String
    Name of the Alertmanager instance configured for this stack.
    alertmanagerStatus String
    Status of the Alertmanager instance configured for this stack.
    alertmanagerUrl String
    Base URL of the Alertmanager instance configured for this stack.
    alertmanagerUserId Number
    User ID of the Alertmanager instance configured for this stack.
    cloudProviderUrl String
    Base URL of the Cloud Provider API for this stack's cluster. This can be used with the cloudProviderUrl provider config option to manage Cloud Provider resources for this stack.
    clusterName String
    Name of the cluster where this stack resides.
    clusterSlug String
    Slug of the cluster where this stack resides.
    connectionsApiUrl String
    Base URL of the Connections API for this stack's cluster. This can be used with the connectionsApiUrl provider config option to manage Connections resources for this stack.
    fleetManagementName String
    Name of the Fleet Management instance configured for this stack.
    fleetManagementPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoPrivateDns String
    Private DNS for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoRegions List<String>
    Regions for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoServiceName String
    Service Name for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementStatus String
    Status of the Fleet Management instance configured for this stack.
    fleetManagementUrl String
    Base URL of the Fleet Management instance configured for this stack.
    fleetManagementUserId Number
    User ID of the Fleet Management instance configured for this stack.
    grafanasIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the grafana instance (Optional)
    graphiteIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Graphite instance (Optional)
    graphiteName String
    graphitePrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoPrivateDns String
    Private DNS for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoRegions List<String>
    Regions for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoServiceName String
    Service Name for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphiteStatus String
    graphiteUrl String
    graphiteUserId Number
    id String
    The provider-assigned unique ID for this managed resource.
    influxUrl String
    Base URL of the InfluxDB instance configured for this stack. The username is the same as the metrics' (prometheusUserId attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/metrics/metrics-influxdb/push-from-telegraf/ for docs on how to use this.
    logsIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Logs instance (Optional)
    logsName String
    logsPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoPrivateDns String
    Private DNS for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoRegions List<String>
    Regions for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoServiceName String
    Service Name for Logs when using AWS PrivateLink (only for AWS stacks)
    logsStatus String
    logsUrl String
    logsUserId Number
    oncallApiUrl String
    Base URL of the OnCall API instance configured for this stack.
    orgId Number
    Organization id to assign to this stack.
    orgName String
    Organization name to assign to this stack.
    orgSlug String
    Organization slug to assign to this stack.
    otlpPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoPrivateDns String
    Private DNS for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoRegions List<String>
    Regions for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoServiceName String
    Service Name for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpUrl String
    Base URL of the OTLP instance configured for this stack. The username is the stack's ID (id attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/ for docs on how to use this.
    pdcApiPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoPrivateDns String
    Private DNS for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoRegions List<String>
    Regions for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoServiceName String
    Service Name for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoPrivateDns String
    Private DNS for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoRegions List<String>
    Regions for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoServiceName String
    Service Name for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    profilesIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Profiles instance (Optional)
    profilesName String
    profilesPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoPrivateDns String
    Private DNS for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoRegions List<String>
    Regions for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoServiceName String
    Service Name for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesStatus String
    profilesUrl String
    profilesUserId Number
    prometheusIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Prometheus instance (Optional)
    prometheusName String
    Prometheus name for this instance.
    prometheusPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoPrivateDns String
    Private DNS for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoRegions List<String>
    Regions for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoServiceName String
    Service Name for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusRemoteEndpoint String
    Use this URL to query hosted metrics data e.g. Prometheus data source in Grafana
    prometheusRemoteWriteEndpoint String
    Use this URL to send prometheus metrics to Grafana cloud
    prometheusStatus String
    Prometheus status for this instance.
    prometheusUrl String
    Prometheus url for this instance.
    prometheusUserId Number
    Prometheus user ID. Used for e.g. remote_write.
    smUrl String
    Base URL of the Synthetic Monitoring API for this stack's region. This can be used with the smUrl provider config option. Note: Synthetic Monitoring requires activation either via the grafana.syntheticMonitoring.Installation resource or manually in the Grafana Cloud UI before it can be used.
    status String
    Status of the stack.
    tracesIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Traces instance (Optional)
    tracesName String
    tracesPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoPrivateDns String
    Private DNS for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoRegions List<String>
    Regions for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoServiceName String
    Service Name for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesStatus String
    tracesUrl String
    Base URL of the Traces instance configured for this stack. To use this in the Tempo data source in Grafana, append /tempo to the URL.
    tracesUserId Number

    Look up Existing Stack Resource

    Get an existing Stack 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?: StackState, opts?: CustomResourceOptions): Stack
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            alertmanager_ip_allow_list_cname: Optional[str] = None,
            alertmanager_name: Optional[str] = None,
            alertmanager_status: Optional[str] = None,
            alertmanager_url: Optional[str] = None,
            alertmanager_user_id: Optional[int] = None,
            cloud_provider_url: Optional[str] = None,
            cluster_name: Optional[str] = None,
            cluster_slug: Optional[str] = None,
            connections_api_url: Optional[str] = None,
            delete_protection: Optional[bool] = None,
            description: Optional[str] = None,
            fleet_management_name: Optional[str] = None,
            fleet_management_private_connectivity_info_availability_zone_ids: Optional[Sequence[str]] = None,
            fleet_management_private_connectivity_info_availability_zones: Optional[Sequence[str]] = None,
            fleet_management_private_connectivity_info_private_dns: Optional[str] = None,
            fleet_management_private_connectivity_info_regions: Optional[Sequence[str]] = None,
            fleet_management_private_connectivity_info_service_name: Optional[str] = None,
            fleet_management_status: Optional[str] = None,
            fleet_management_url: Optional[str] = None,
            fleet_management_user_id: Optional[int] = None,
            grafanas_ip_allow_list_cname: Optional[str] = None,
            graphite_ip_allow_list_cname: Optional[str] = None,
            graphite_name: Optional[str] = None,
            graphite_private_connectivity_info_availability_zone_ids: Optional[Sequence[str]] = None,
            graphite_private_connectivity_info_availability_zones: Optional[Sequence[str]] = None,
            graphite_private_connectivity_info_private_dns: Optional[str] = None,
            graphite_private_connectivity_info_regions: Optional[Sequence[str]] = None,
            graphite_private_connectivity_info_service_name: Optional[str] = None,
            graphite_status: Optional[str] = None,
            graphite_url: Optional[str] = None,
            graphite_user_id: Optional[int] = None,
            influx_url: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            logs_ip_allow_list_cname: Optional[str] = None,
            logs_name: Optional[str] = None,
            logs_private_connectivity_info_availability_zone_ids: Optional[Sequence[str]] = None,
            logs_private_connectivity_info_availability_zones: Optional[Sequence[str]] = None,
            logs_private_connectivity_info_private_dns: Optional[str] = None,
            logs_private_connectivity_info_regions: Optional[Sequence[str]] = None,
            logs_private_connectivity_info_service_name: Optional[str] = None,
            logs_status: Optional[str] = None,
            logs_url: Optional[str] = None,
            logs_user_id: Optional[int] = None,
            name: Optional[str] = None,
            oncall_api_url: Optional[str] = None,
            org_id: Optional[int] = None,
            org_name: Optional[str] = None,
            org_slug: Optional[str] = None,
            otlp_private_connectivity_info_availability_zone_ids: Optional[Sequence[str]] = None,
            otlp_private_connectivity_info_availability_zones: Optional[Sequence[str]] = None,
            otlp_private_connectivity_info_private_dns: Optional[str] = None,
            otlp_private_connectivity_info_regions: Optional[Sequence[str]] = None,
            otlp_private_connectivity_info_service_name: Optional[str] = None,
            otlp_url: Optional[str] = None,
            pdc_api_private_connectivity_info_availability_zone_ids: Optional[Sequence[str]] = None,
            pdc_api_private_connectivity_info_availability_zones: Optional[Sequence[str]] = None,
            pdc_api_private_connectivity_info_private_dns: Optional[str] = None,
            pdc_api_private_connectivity_info_regions: Optional[Sequence[str]] = None,
            pdc_api_private_connectivity_info_service_name: Optional[str] = None,
            pdc_gateway_private_connectivity_info_availability_zone_ids: Optional[Sequence[str]] = None,
            pdc_gateway_private_connectivity_info_availability_zones: Optional[Sequence[str]] = None,
            pdc_gateway_private_connectivity_info_private_dns: Optional[str] = None,
            pdc_gateway_private_connectivity_info_regions: Optional[Sequence[str]] = None,
            pdc_gateway_private_connectivity_info_service_name: Optional[str] = None,
            profiles_ip_allow_list_cname: Optional[str] = None,
            profiles_name: Optional[str] = None,
            profiles_private_connectivity_info_availability_zone_ids: Optional[Sequence[str]] = None,
            profiles_private_connectivity_info_availability_zones: Optional[Sequence[str]] = None,
            profiles_private_connectivity_info_private_dns: Optional[str] = None,
            profiles_private_connectivity_info_regions: Optional[Sequence[str]] = None,
            profiles_private_connectivity_info_service_name: Optional[str] = None,
            profiles_status: Optional[str] = None,
            profiles_url: Optional[str] = None,
            profiles_user_id: Optional[int] = None,
            prometheus_ip_allow_list_cname: Optional[str] = None,
            prometheus_name: Optional[str] = None,
            prometheus_private_connectivity_info_availability_zone_ids: Optional[Sequence[str]] = None,
            prometheus_private_connectivity_info_availability_zones: Optional[Sequence[str]] = None,
            prometheus_private_connectivity_info_private_dns: Optional[str] = None,
            prometheus_private_connectivity_info_regions: Optional[Sequence[str]] = None,
            prometheus_private_connectivity_info_service_name: Optional[str] = None,
            prometheus_remote_endpoint: Optional[str] = None,
            prometheus_remote_write_endpoint: Optional[str] = None,
            prometheus_status: Optional[str] = None,
            prometheus_url: Optional[str] = None,
            prometheus_user_id: Optional[int] = None,
            region_slug: Optional[str] = None,
            slug: Optional[str] = None,
            sm_url: Optional[str] = None,
            status: Optional[str] = None,
            traces_ip_allow_list_cname: Optional[str] = None,
            traces_name: Optional[str] = None,
            traces_private_connectivity_info_availability_zone_ids: Optional[Sequence[str]] = None,
            traces_private_connectivity_info_availability_zones: Optional[Sequence[str]] = None,
            traces_private_connectivity_info_private_dns: Optional[str] = None,
            traces_private_connectivity_info_regions: Optional[Sequence[str]] = None,
            traces_private_connectivity_info_service_name: Optional[str] = None,
            traces_status: Optional[str] = None,
            traces_url: Optional[str] = None,
            traces_user_id: Optional[int] = None,
            url: Optional[str] = None,
            wait_for_readiness: Optional[bool] = None,
            wait_for_readiness_timeout: Optional[str] = None) -> Stack
    func GetStack(ctx *Context, name string, id IDInput, state *StackState, opts ...ResourceOption) (*Stack, error)
    public static Stack Get(string name, Input<string> id, StackState? state, CustomResourceOptions? opts = null)
    public static Stack get(String name, Output<String> id, StackState state, CustomResourceOptions options)
    resources:  _:    type: grafana:cloud:Stack    get:      id: ${id}
    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.
    The following state arguments are supported:
    AlertmanagerIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Alertmanager instances (Optional)
    AlertmanagerName string
    Name of the Alertmanager instance configured for this stack.
    AlertmanagerStatus string
    Status of the Alertmanager instance configured for this stack.
    AlertmanagerUrl string
    Base URL of the Alertmanager instance configured for this stack.
    AlertmanagerUserId int
    User ID of the Alertmanager instance configured for this stack.
    CloudProviderUrl string
    Base URL of the Cloud Provider API for this stack's cluster. This can be used with the cloudProviderUrl provider config option to manage Cloud Provider resources for this stack.
    ClusterName string
    Name of the cluster where this stack resides.
    ClusterSlug string
    Slug of the cluster where this stack resides.
    ConnectionsApiUrl string
    Base URL of the Connections API for this stack's cluster. This can be used with the connectionsApiUrl provider config option to manage Connections resources for this stack.
    DeleteProtection bool
    Whether to enable delete protection for the stack, preventing accidental deletion. Defaults to true.
    Description string
    Description of stack.
    FleetManagementName string
    Name of the Fleet Management instance configured for this stack.
    FleetManagementPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoPrivateDns string
    Private DNS for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoRegions List<string>
    Regions for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoServiceName string
    Service Name for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementStatus string
    Status of the Fleet Management instance configured for this stack.
    FleetManagementUrl string
    Base URL of the Fleet Management instance configured for this stack.
    FleetManagementUserId int
    User ID of the Fleet Management instance configured for this stack.
    GrafanasIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the grafana instance (Optional)
    GraphiteIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Graphite instance (Optional)
    GraphiteName string
    GraphitePrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoPrivateDns string
    Private DNS for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoRegions List<string>
    Regions for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoServiceName string
    Service Name for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphiteStatus string
    GraphiteUrl string
    GraphiteUserId int
    InfluxUrl string
    Base URL of the InfluxDB instance configured for this stack. The username is the same as the metrics' (prometheusUserId attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/metrics/metrics-influxdb/push-from-telegraf/ for docs on how to use this.
    Labels Dictionary<string, string>
    A map of labels to assign to the stack. Label keys and values must match the following regexp: "^[a-zA-Z0-9/-._]+$" and stacks cannot have more than 10 labels.
    LogsIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Logs instance (Optional)
    LogsName string
    LogsPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoPrivateDns string
    Private DNS for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoRegions List<string>
    Regions for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoServiceName string
    Service Name for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsStatus string
    LogsUrl string
    LogsUserId int
    Name string
    Name of stack. Conventionally matches the url of the instance (e.g. <stack_slug>.grafana.net).
    OncallApiUrl string
    Base URL of the OnCall API instance configured for this stack.
    OrgId int
    Organization id to assign to this stack.
    OrgName string
    Organization name to assign to this stack.
    OrgSlug string
    Organization slug to assign to this stack.
    OtlpPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoPrivateDns string
    Private DNS for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoRegions List<string>
    Regions for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoServiceName string
    Service Name for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpUrl string
    Base URL of the OTLP instance configured for this stack. The username is the stack's ID (id attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/ for docs on how to use this.
    PdcApiPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoPrivateDns string
    Private DNS for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoRegions List<string>
    Regions for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoServiceName string
    Service Name for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoPrivateDns string
    Private DNS for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoRegions List<string>
    Regions for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoServiceName string
    Service Name for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    ProfilesIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Profiles instance (Optional)
    ProfilesName string
    ProfilesPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoPrivateDns string
    Private DNS for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoRegions List<string>
    Regions for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoServiceName string
    Service Name for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesStatus string
    ProfilesUrl string
    ProfilesUserId int
    PrometheusIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Prometheus instance (Optional)
    PrometheusName string
    Prometheus name for this instance.
    PrometheusPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoPrivateDns string
    Private DNS for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoRegions List<string>
    Regions for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoServiceName string
    Service Name for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusRemoteEndpoint string
    Use this URL to query hosted metrics data e.g. Prometheus data source in Grafana
    PrometheusRemoteWriteEndpoint string
    Use this URL to send prometheus metrics to Grafana cloud
    PrometheusStatus string
    Prometheus status for this instance.
    PrometheusUrl string
    Prometheus url for this instance.
    PrometheusUserId int
    Prometheus user ID. Used for e.g. remote_write.
    RegionSlug string
    Region slug to assign to this stack. Changing region will destroy the existing stack and create a new one in the desired region. Use the region list API to get the list of available regions: https://grafana.com/docs/grafana-cloud/developer-resources/api-reference/cloud-api/#list-regions.
    Slug string
    Subdomain that the Grafana instance will be available at. Setting slug to <stack_slug> will make the instance available at https://<stack_slug>.grafana.net.
    SmUrl string
    Base URL of the Synthetic Monitoring API for this stack's region. This can be used with the smUrl provider config option. Note: Synthetic Monitoring requires activation either via the grafana.syntheticMonitoring.Installation resource or manually in the Grafana Cloud UI before it can be used.
    Status string
    Status of the stack.
    TracesIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Traces instance (Optional)
    TracesName string
    TracesPrivateConnectivityInfoAvailabilityZoneIds List<string>
    Availability Zone IDs for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoAvailabilityZones List<string>
    Availability Zones for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoPrivateDns string
    Private DNS for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoRegions List<string>
    Regions for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoServiceName string
    Service Name for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesStatus string
    TracesUrl string
    Base URL of the Traces instance configured for this stack. To use this in the Tempo data source in Grafana, append /tempo to the URL.
    TracesUserId int
    Url string
    Custom URL for the Grafana instance. Must have a CNAME setup to point to .grafana.net before creating the stack
    WaitForReadiness bool
    Whether to wait for readiness of the stack after creating it. The check is a HEAD request to the stack URL (Grafana instance). Defaults to true.
    WaitForReadinessTimeout string
    How long to wait for readiness (if enabled). Defaults to 5m0s.
    AlertmanagerIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Alertmanager instances (Optional)
    AlertmanagerName string
    Name of the Alertmanager instance configured for this stack.
    AlertmanagerStatus string
    Status of the Alertmanager instance configured for this stack.
    AlertmanagerUrl string
    Base URL of the Alertmanager instance configured for this stack.
    AlertmanagerUserId int
    User ID of the Alertmanager instance configured for this stack.
    CloudProviderUrl string
    Base URL of the Cloud Provider API for this stack's cluster. This can be used with the cloudProviderUrl provider config option to manage Cloud Provider resources for this stack.
    ClusterName string
    Name of the cluster where this stack resides.
    ClusterSlug string
    Slug of the cluster where this stack resides.
    ConnectionsApiUrl string
    Base URL of the Connections API for this stack's cluster. This can be used with the connectionsApiUrl provider config option to manage Connections resources for this stack.
    DeleteProtection bool
    Whether to enable delete protection for the stack, preventing accidental deletion. Defaults to true.
    Description string
    Description of stack.
    FleetManagementName string
    Name of the Fleet Management instance configured for this stack.
    FleetManagementPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoPrivateDns string
    Private DNS for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoRegions []string
    Regions for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementPrivateConnectivityInfoServiceName string
    Service Name for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    FleetManagementStatus string
    Status of the Fleet Management instance configured for this stack.
    FleetManagementUrl string
    Base URL of the Fleet Management instance configured for this stack.
    FleetManagementUserId int
    User ID of the Fleet Management instance configured for this stack.
    GrafanasIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the grafana instance (Optional)
    GraphiteIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Graphite instance (Optional)
    GraphiteName string
    GraphitePrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoPrivateDns string
    Private DNS for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoRegions []string
    Regions for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphitePrivateConnectivityInfoServiceName string
    Service Name for Graphite when using AWS PrivateLink (only for AWS stacks)
    GraphiteStatus string
    GraphiteUrl string
    GraphiteUserId int
    InfluxUrl string
    Base URL of the InfluxDB instance configured for this stack. The username is the same as the metrics' (prometheusUserId attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/metrics/metrics-influxdb/push-from-telegraf/ for docs on how to use this.
    Labels map[string]string
    A map of labels to assign to the stack. Label keys and values must match the following regexp: "^[a-zA-Z0-9/-._]+$" and stacks cannot have more than 10 labels.
    LogsIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Logs instance (Optional)
    LogsName string
    LogsPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoPrivateDns string
    Private DNS for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoRegions []string
    Regions for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsPrivateConnectivityInfoServiceName string
    Service Name for Logs when using AWS PrivateLink (only for AWS stacks)
    LogsStatus string
    LogsUrl string
    LogsUserId int
    Name string
    Name of stack. Conventionally matches the url of the instance (e.g. <stack_slug>.grafana.net).
    OncallApiUrl string
    Base URL of the OnCall API instance configured for this stack.
    OrgId int
    Organization id to assign to this stack.
    OrgName string
    Organization name to assign to this stack.
    OrgSlug string
    Organization slug to assign to this stack.
    OtlpPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoPrivateDns string
    Private DNS for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoRegions []string
    Regions for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpPrivateConnectivityInfoServiceName string
    Service Name for OTLP when using AWS PrivateLink (only for AWS stacks)
    OtlpUrl string
    Base URL of the OTLP instance configured for this stack. The username is the stack's ID (id attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/ for docs on how to use this.
    PdcApiPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoPrivateDns string
    Private DNS for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoRegions []string
    Regions for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcApiPrivateConnectivityInfoServiceName string
    Service Name for PDC's API when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoPrivateDns string
    Private DNS for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoRegions []string
    Regions for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    PdcGatewayPrivateConnectivityInfoServiceName string
    Service Name for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    ProfilesIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Profiles instance (Optional)
    ProfilesName string
    ProfilesPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoPrivateDns string
    Private DNS for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoRegions []string
    Regions for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesPrivateConnectivityInfoServiceName string
    Service Name for Profiles when using AWS PrivateLink (only for AWS stacks)
    ProfilesStatus string
    ProfilesUrl string
    ProfilesUserId int
    PrometheusIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Prometheus instance (Optional)
    PrometheusName string
    Prometheus name for this instance.
    PrometheusPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoPrivateDns string
    Private DNS for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoRegions []string
    Regions for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusPrivateConnectivityInfoServiceName string
    Service Name for Prometheus when using AWS PrivateLink (only for AWS stacks)
    PrometheusRemoteEndpoint string
    Use this URL to query hosted metrics data e.g. Prometheus data source in Grafana
    PrometheusRemoteWriteEndpoint string
    Use this URL to send prometheus metrics to Grafana cloud
    PrometheusStatus string
    Prometheus status for this instance.
    PrometheusUrl string
    Prometheus url for this instance.
    PrometheusUserId int
    Prometheus user ID. Used for e.g. remote_write.
    RegionSlug string
    Region slug to assign to this stack. Changing region will destroy the existing stack and create a new one in the desired region. Use the region list API to get the list of available regions: https://grafana.com/docs/grafana-cloud/developer-resources/api-reference/cloud-api/#list-regions.
    Slug string
    Subdomain that the Grafana instance will be available at. Setting slug to <stack_slug> will make the instance available at https://<stack_slug>.grafana.net.
    SmUrl string
    Base URL of the Synthetic Monitoring API for this stack's region. This can be used with the smUrl provider config option. Note: Synthetic Monitoring requires activation either via the grafana.syntheticMonitoring.Installation resource or manually in the Grafana Cloud UI before it can be used.
    Status string
    Status of the stack.
    TracesIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Traces instance (Optional)
    TracesName string
    TracesPrivateConnectivityInfoAvailabilityZoneIds []string
    Availability Zone IDs for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoAvailabilityZones []string
    Availability Zones for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoPrivateDns string
    Private DNS for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoRegions []string
    Regions for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesPrivateConnectivityInfoServiceName string
    Service Name for Traces when using AWS PrivateLink (only for AWS stacks)
    TracesStatus string
    TracesUrl string
    Base URL of the Traces instance configured for this stack. To use this in the Tempo data source in Grafana, append /tempo to the URL.
    TracesUserId int
    Url string
    Custom URL for the Grafana instance. Must have a CNAME setup to point to .grafana.net before creating the stack
    WaitForReadiness bool
    Whether to wait for readiness of the stack after creating it. The check is a HEAD request to the stack URL (Grafana instance). Defaults to true.
    WaitForReadinessTimeout string
    How long to wait for readiness (if enabled). Defaults to 5m0s.
    alertmanagerIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Alertmanager instances (Optional)
    alertmanagerName String
    Name of the Alertmanager instance configured for this stack.
    alertmanagerStatus String
    Status of the Alertmanager instance configured for this stack.
    alertmanagerUrl String
    Base URL of the Alertmanager instance configured for this stack.
    alertmanagerUserId Integer
    User ID of the Alertmanager instance configured for this stack.
    cloudProviderUrl String
    Base URL of the Cloud Provider API for this stack's cluster. This can be used with the cloudProviderUrl provider config option to manage Cloud Provider resources for this stack.
    clusterName String
    Name of the cluster where this stack resides.
    clusterSlug String
    Slug of the cluster where this stack resides.
    connectionsApiUrl String
    Base URL of the Connections API for this stack's cluster. This can be used with the connectionsApiUrl provider config option to manage Connections resources for this stack.
    deleteProtection Boolean
    Whether to enable delete protection for the stack, preventing accidental deletion. Defaults to true.
    description String
    Description of stack.
    fleetManagementName String
    Name of the Fleet Management instance configured for this stack.
    fleetManagementPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoPrivateDns String
    Private DNS for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoRegions List<String>
    Regions for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoServiceName String
    Service Name for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementStatus String
    Status of the Fleet Management instance configured for this stack.
    fleetManagementUrl String
    Base URL of the Fleet Management instance configured for this stack.
    fleetManagementUserId Integer
    User ID of the Fleet Management instance configured for this stack.
    grafanasIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the grafana instance (Optional)
    graphiteIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Graphite instance (Optional)
    graphiteName String
    graphitePrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoPrivateDns String
    Private DNS for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoRegions List<String>
    Regions for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoServiceName String
    Service Name for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphiteStatus String
    graphiteUrl String
    graphiteUserId Integer
    influxUrl String
    Base URL of the InfluxDB instance configured for this stack. The username is the same as the metrics' (prometheusUserId attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/metrics/metrics-influxdb/push-from-telegraf/ for docs on how to use this.
    labels Map<String,String>
    A map of labels to assign to the stack. Label keys and values must match the following regexp: "^[a-zA-Z0-9/-._]+$" and stacks cannot have more than 10 labels.
    logsIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Logs instance (Optional)
    logsName String
    logsPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoPrivateDns String
    Private DNS for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoRegions List<String>
    Regions for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoServiceName String
    Service Name for Logs when using AWS PrivateLink (only for AWS stacks)
    logsStatus String
    logsUrl String
    logsUserId Integer
    name String
    Name of stack. Conventionally matches the url of the instance (e.g. <stack_slug>.grafana.net).
    oncallApiUrl String
    Base URL of the OnCall API instance configured for this stack.
    orgId Integer
    Organization id to assign to this stack.
    orgName String
    Organization name to assign to this stack.
    orgSlug String
    Organization slug to assign to this stack.
    otlpPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoPrivateDns String
    Private DNS for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoRegions List<String>
    Regions for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoServiceName String
    Service Name for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpUrl String
    Base URL of the OTLP instance configured for this stack. The username is the stack's ID (id attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/ for docs on how to use this.
    pdcApiPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoPrivateDns String
    Private DNS for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoRegions List<String>
    Regions for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoServiceName String
    Service Name for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoPrivateDns String
    Private DNS for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoRegions List<String>
    Regions for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoServiceName String
    Service Name for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    profilesIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Profiles instance (Optional)
    profilesName String
    profilesPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoPrivateDns String
    Private DNS for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoRegions List<String>
    Regions for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoServiceName String
    Service Name for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesStatus String
    profilesUrl String
    profilesUserId Integer
    prometheusIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Prometheus instance (Optional)
    prometheusName String
    Prometheus name for this instance.
    prometheusPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoPrivateDns String
    Private DNS for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoRegions List<String>
    Regions for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoServiceName String
    Service Name for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusRemoteEndpoint String
    Use this URL to query hosted metrics data e.g. Prometheus data source in Grafana
    prometheusRemoteWriteEndpoint String
    Use this URL to send prometheus metrics to Grafana cloud
    prometheusStatus String
    Prometheus status for this instance.
    prometheusUrl String
    Prometheus url for this instance.
    prometheusUserId Integer
    Prometheus user ID. Used for e.g. remote_write.
    regionSlug String
    Region slug to assign to this stack. Changing region will destroy the existing stack and create a new one in the desired region. Use the region list API to get the list of available regions: https://grafana.com/docs/grafana-cloud/developer-resources/api-reference/cloud-api/#list-regions.
    slug String
    Subdomain that the Grafana instance will be available at. Setting slug to <stack_slug> will make the instance available at https://<stack_slug>.grafana.net.
    smUrl String
    Base URL of the Synthetic Monitoring API for this stack's region. This can be used with the smUrl provider config option. Note: Synthetic Monitoring requires activation either via the grafana.syntheticMonitoring.Installation resource or manually in the Grafana Cloud UI before it can be used.
    status String
    Status of the stack.
    tracesIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Traces instance (Optional)
    tracesName String
    tracesPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoPrivateDns String
    Private DNS for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoRegions List<String>
    Regions for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoServiceName String
    Service Name for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesStatus String
    tracesUrl String
    Base URL of the Traces instance configured for this stack. To use this in the Tempo data source in Grafana, append /tempo to the URL.
    tracesUserId Integer
    url String
    Custom URL for the Grafana instance. Must have a CNAME setup to point to .grafana.net before creating the stack
    waitForReadiness Boolean
    Whether to wait for readiness of the stack after creating it. The check is a HEAD request to the stack URL (Grafana instance). Defaults to true.
    waitForReadinessTimeout String
    How long to wait for readiness (if enabled). Defaults to 5m0s.
    alertmanagerIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Alertmanager instances (Optional)
    alertmanagerName string
    Name of the Alertmanager instance configured for this stack.
    alertmanagerStatus string
    Status of the Alertmanager instance configured for this stack.
    alertmanagerUrl string
    Base URL of the Alertmanager instance configured for this stack.
    alertmanagerUserId number
    User ID of the Alertmanager instance configured for this stack.
    cloudProviderUrl string
    Base URL of the Cloud Provider API for this stack's cluster. This can be used with the cloudProviderUrl provider config option to manage Cloud Provider resources for this stack.
    clusterName string
    Name of the cluster where this stack resides.
    clusterSlug string
    Slug of the cluster where this stack resides.
    connectionsApiUrl string
    Base URL of the Connections API for this stack's cluster. This can be used with the connectionsApiUrl provider config option to manage Connections resources for this stack.
    deleteProtection boolean
    Whether to enable delete protection for the stack, preventing accidental deletion. Defaults to true.
    description string
    Description of stack.
    fleetManagementName string
    Name of the Fleet Management instance configured for this stack.
    fleetManagementPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoPrivateDns string
    Private DNS for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoRegions string[]
    Regions for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoServiceName string
    Service Name for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementStatus string
    Status of the Fleet Management instance configured for this stack.
    fleetManagementUrl string
    Base URL of the Fleet Management instance configured for this stack.
    fleetManagementUserId number
    User ID of the Fleet Management instance configured for this stack.
    grafanasIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the grafana instance (Optional)
    graphiteIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Graphite instance (Optional)
    graphiteName string
    graphitePrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoPrivateDns string
    Private DNS for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoRegions string[]
    Regions for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoServiceName string
    Service Name for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphiteStatus string
    graphiteUrl string
    graphiteUserId number
    influxUrl string
    Base URL of the InfluxDB instance configured for this stack. The username is the same as the metrics' (prometheusUserId attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/metrics/metrics-influxdb/push-from-telegraf/ for docs on how to use this.
    labels {[key: string]: string}
    A map of labels to assign to the stack. Label keys and values must match the following regexp: "^[a-zA-Z0-9/-._]+$" and stacks cannot have more than 10 labels.
    logsIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Logs instance (Optional)
    logsName string
    logsPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoPrivateDns string
    Private DNS for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoRegions string[]
    Regions for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoServiceName string
    Service Name for Logs when using AWS PrivateLink (only for AWS stacks)
    logsStatus string
    logsUrl string
    logsUserId number
    name string
    Name of stack. Conventionally matches the url of the instance (e.g. <stack_slug>.grafana.net).
    oncallApiUrl string
    Base URL of the OnCall API instance configured for this stack.
    orgId number
    Organization id to assign to this stack.
    orgName string
    Organization name to assign to this stack.
    orgSlug string
    Organization slug to assign to this stack.
    otlpPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoPrivateDns string
    Private DNS for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoRegions string[]
    Regions for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoServiceName string
    Service Name for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpUrl string
    Base URL of the OTLP instance configured for this stack. The username is the stack's ID (id attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/ for docs on how to use this.
    pdcApiPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoPrivateDns string
    Private DNS for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoRegions string[]
    Regions for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoServiceName string
    Service Name for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoPrivateDns string
    Private DNS for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoRegions string[]
    Regions for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoServiceName string
    Service Name for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    profilesIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Profiles instance (Optional)
    profilesName string
    profilesPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoPrivateDns string
    Private DNS for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoRegions string[]
    Regions for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoServiceName string
    Service Name for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesStatus string
    profilesUrl string
    profilesUserId number
    prometheusIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Prometheus instance (Optional)
    prometheusName string
    Prometheus name for this instance.
    prometheusPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoPrivateDns string
    Private DNS for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoRegions string[]
    Regions for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoServiceName string
    Service Name for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusRemoteEndpoint string
    Use this URL to query hosted metrics data e.g. Prometheus data source in Grafana
    prometheusRemoteWriteEndpoint string
    Use this URL to send prometheus metrics to Grafana cloud
    prometheusStatus string
    Prometheus status for this instance.
    prometheusUrl string
    Prometheus url for this instance.
    prometheusUserId number
    Prometheus user ID. Used for e.g. remote_write.
    regionSlug string
    Region slug to assign to this stack. Changing region will destroy the existing stack and create a new one in the desired region. Use the region list API to get the list of available regions: https://grafana.com/docs/grafana-cloud/developer-resources/api-reference/cloud-api/#list-regions.
    slug string
    Subdomain that the Grafana instance will be available at. Setting slug to <stack_slug> will make the instance available at https://<stack_slug>.grafana.net.
    smUrl string
    Base URL of the Synthetic Monitoring API for this stack's region. This can be used with the smUrl provider config option. Note: Synthetic Monitoring requires activation either via the grafana.syntheticMonitoring.Installation resource or manually in the Grafana Cloud UI before it can be used.
    status string
    Status of the stack.
    tracesIpAllowListCname string
    Comma-separated list of CNAMEs that can be whitelisted to access the Traces instance (Optional)
    tracesName string
    tracesPrivateConnectivityInfoAvailabilityZoneIds string[]
    Availability Zone IDs for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoAvailabilityZones string[]
    Availability Zones for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoPrivateDns string
    Private DNS for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoRegions string[]
    Regions for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoServiceName string
    Service Name for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesStatus string
    tracesUrl string
    Base URL of the Traces instance configured for this stack. To use this in the Tempo data source in Grafana, append /tempo to the URL.
    tracesUserId number
    url string
    Custom URL for the Grafana instance. Must have a CNAME setup to point to .grafana.net before creating the stack
    waitForReadiness boolean
    Whether to wait for readiness of the stack after creating it. The check is a HEAD request to the stack URL (Grafana instance). Defaults to true.
    waitForReadinessTimeout string
    How long to wait for readiness (if enabled). Defaults to 5m0s.
    alertmanager_ip_allow_list_cname str
    Comma-separated list of CNAMEs that can be whitelisted to access the Alertmanager instances (Optional)
    alertmanager_name str
    Name of the Alertmanager instance configured for this stack.
    alertmanager_status str
    Status of the Alertmanager instance configured for this stack.
    alertmanager_url str
    Base URL of the Alertmanager instance configured for this stack.
    alertmanager_user_id int
    User ID of the Alertmanager instance configured for this stack.
    cloud_provider_url str
    Base URL of the Cloud Provider API for this stack's cluster. This can be used with the cloudProviderUrl provider config option to manage Cloud Provider resources for this stack.
    cluster_name str
    Name of the cluster where this stack resides.
    cluster_slug str
    Slug of the cluster where this stack resides.
    connections_api_url str
    Base URL of the Connections API for this stack's cluster. This can be used with the connectionsApiUrl provider config option to manage Connections resources for this stack.
    delete_protection bool
    Whether to enable delete protection for the stack, preventing accidental deletion. Defaults to true.
    description str
    Description of stack.
    fleet_management_name str
    Name of the Fleet Management instance configured for this stack.
    fleet_management_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleet_management_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleet_management_private_connectivity_info_private_dns str
    Private DNS for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleet_management_private_connectivity_info_regions Sequence[str]
    Regions for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleet_management_private_connectivity_info_service_name str
    Service Name for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleet_management_status str
    Status of the Fleet Management instance configured for this stack.
    fleet_management_url str
    Base URL of the Fleet Management instance configured for this stack.
    fleet_management_user_id int
    User ID of the Fleet Management instance configured for this stack.
    grafanas_ip_allow_list_cname str
    Comma-separated list of CNAMEs that can be whitelisted to access the grafana instance (Optional)
    graphite_ip_allow_list_cname str
    Comma-separated list of CNAMEs that can be whitelisted to access the Graphite instance (Optional)
    graphite_name str
    graphite_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphite_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphite_private_connectivity_info_private_dns str
    Private DNS for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphite_private_connectivity_info_regions Sequence[str]
    Regions for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphite_private_connectivity_info_service_name str
    Service Name for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphite_status str
    graphite_url str
    graphite_user_id int
    influx_url str
    Base URL of the InfluxDB instance configured for this stack. The username is the same as the metrics' (prometheusUserId attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/metrics/metrics-influxdb/push-from-telegraf/ for docs on how to use this.
    labels Mapping[str, str]
    A map of labels to assign to the stack. Label keys and values must match the following regexp: "^[a-zA-Z0-9/-._]+$" and stacks cannot have more than 10 labels.
    logs_ip_allow_list_cname str
    Comma-separated list of CNAMEs that can be whitelisted to access the Logs instance (Optional)
    logs_name str
    logs_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for Logs when using AWS PrivateLink (only for AWS stacks)
    logs_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for Logs when using AWS PrivateLink (only for AWS stacks)
    logs_private_connectivity_info_private_dns str
    Private DNS for Logs when using AWS PrivateLink (only for AWS stacks)
    logs_private_connectivity_info_regions Sequence[str]
    Regions for Logs when using AWS PrivateLink (only for AWS stacks)
    logs_private_connectivity_info_service_name str
    Service Name for Logs when using AWS PrivateLink (only for AWS stacks)
    logs_status str
    logs_url str
    logs_user_id int
    name str
    Name of stack. Conventionally matches the url of the instance (e.g. <stack_slug>.grafana.net).
    oncall_api_url str
    Base URL of the OnCall API instance configured for this stack.
    org_id int
    Organization id to assign to this stack.
    org_name str
    Organization name to assign to this stack.
    org_slug str
    Organization slug to assign to this stack.
    otlp_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlp_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlp_private_connectivity_info_private_dns str
    Private DNS for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlp_private_connectivity_info_regions Sequence[str]
    Regions for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlp_private_connectivity_info_service_name str
    Service Name for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlp_url str
    Base URL of the OTLP instance configured for this stack. The username is the stack's ID (id attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/ for docs on how to use this.
    pdc_api_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdc_api_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdc_api_private_connectivity_info_private_dns str
    Private DNS for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdc_api_private_connectivity_info_regions Sequence[str]
    Regions for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdc_api_private_connectivity_info_service_name str
    Service Name for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdc_gateway_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdc_gateway_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdc_gateway_private_connectivity_info_private_dns str
    Private DNS for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdc_gateway_private_connectivity_info_regions Sequence[str]
    Regions for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdc_gateway_private_connectivity_info_service_name str
    Service Name for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    profiles_ip_allow_list_cname str
    Comma-separated list of CNAMEs that can be whitelisted to access the Profiles instance (Optional)
    profiles_name str
    profiles_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for Profiles when using AWS PrivateLink (only for AWS stacks)
    profiles_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for Profiles when using AWS PrivateLink (only for AWS stacks)
    profiles_private_connectivity_info_private_dns str
    Private DNS for Profiles when using AWS PrivateLink (only for AWS stacks)
    profiles_private_connectivity_info_regions Sequence[str]
    Regions for Profiles when using AWS PrivateLink (only for AWS stacks)
    profiles_private_connectivity_info_service_name str
    Service Name for Profiles when using AWS PrivateLink (only for AWS stacks)
    profiles_status str
    profiles_url str
    profiles_user_id int
    prometheus_ip_allow_list_cname str
    Comma-separated list of CNAMEs that can be whitelisted to access the Prometheus instance (Optional)
    prometheus_name str
    Prometheus name for this instance.
    prometheus_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheus_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheus_private_connectivity_info_private_dns str
    Private DNS for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheus_private_connectivity_info_regions Sequence[str]
    Regions for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheus_private_connectivity_info_service_name str
    Service Name for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheus_remote_endpoint str
    Use this URL to query hosted metrics data e.g. Prometheus data source in Grafana
    prometheus_remote_write_endpoint str
    Use this URL to send prometheus metrics to Grafana cloud
    prometheus_status str
    Prometheus status for this instance.
    prometheus_url str
    Prometheus url for this instance.
    prometheus_user_id int
    Prometheus user ID. Used for e.g. remote_write.
    region_slug str
    Region slug to assign to this stack. Changing region will destroy the existing stack and create a new one in the desired region. Use the region list API to get the list of available regions: https://grafana.com/docs/grafana-cloud/developer-resources/api-reference/cloud-api/#list-regions.
    slug str
    Subdomain that the Grafana instance will be available at. Setting slug to <stack_slug> will make the instance available at https://<stack_slug>.grafana.net.
    sm_url str
    Base URL of the Synthetic Monitoring API for this stack's region. This can be used with the smUrl provider config option. Note: Synthetic Monitoring requires activation either via the grafana.syntheticMonitoring.Installation resource or manually in the Grafana Cloud UI before it can be used.
    status str
    Status of the stack.
    traces_ip_allow_list_cname str
    Comma-separated list of CNAMEs that can be whitelisted to access the Traces instance (Optional)
    traces_name str
    traces_private_connectivity_info_availability_zone_ids Sequence[str]
    Availability Zone IDs for Traces when using AWS PrivateLink (only for AWS stacks)
    traces_private_connectivity_info_availability_zones Sequence[str]
    Availability Zones for Traces when using AWS PrivateLink (only for AWS stacks)
    traces_private_connectivity_info_private_dns str
    Private DNS for Traces when using AWS PrivateLink (only for AWS stacks)
    traces_private_connectivity_info_regions Sequence[str]
    Regions for Traces when using AWS PrivateLink (only for AWS stacks)
    traces_private_connectivity_info_service_name str
    Service Name for Traces when using AWS PrivateLink (only for AWS stacks)
    traces_status str
    traces_url str
    Base URL of the Traces instance configured for this stack. To use this in the Tempo data source in Grafana, append /tempo to the URL.
    traces_user_id int
    url str
    Custom URL for the Grafana instance. Must have a CNAME setup to point to .grafana.net before creating the stack
    wait_for_readiness bool
    Whether to wait for readiness of the stack after creating it. The check is a HEAD request to the stack URL (Grafana instance). Defaults to true.
    wait_for_readiness_timeout str
    How long to wait for readiness (if enabled). Defaults to 5m0s.
    alertmanagerIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Alertmanager instances (Optional)
    alertmanagerName String
    Name of the Alertmanager instance configured for this stack.
    alertmanagerStatus String
    Status of the Alertmanager instance configured for this stack.
    alertmanagerUrl String
    Base URL of the Alertmanager instance configured for this stack.
    alertmanagerUserId Number
    User ID of the Alertmanager instance configured for this stack.
    cloudProviderUrl String
    Base URL of the Cloud Provider API for this stack's cluster. This can be used with the cloudProviderUrl provider config option to manage Cloud Provider resources for this stack.
    clusterName String
    Name of the cluster where this stack resides.
    clusterSlug String
    Slug of the cluster where this stack resides.
    connectionsApiUrl String
    Base URL of the Connections API for this stack's cluster. This can be used with the connectionsApiUrl provider config option to manage Connections resources for this stack.
    deleteProtection Boolean
    Whether to enable delete protection for the stack, preventing accidental deletion. Defaults to true.
    description String
    Description of stack.
    fleetManagementName String
    Name of the Fleet Management instance configured for this stack.
    fleetManagementPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoPrivateDns String
    Private DNS for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoRegions List<String>
    Regions for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementPrivateConnectivityInfoServiceName String
    Service Name for Fleet Management when using AWS PrivateLink (only for AWS stacks)
    fleetManagementStatus String
    Status of the Fleet Management instance configured for this stack.
    fleetManagementUrl String
    Base URL of the Fleet Management instance configured for this stack.
    fleetManagementUserId Number
    User ID of the Fleet Management instance configured for this stack.
    grafanasIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the grafana instance (Optional)
    graphiteIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Graphite instance (Optional)
    graphiteName String
    graphitePrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoPrivateDns String
    Private DNS for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoRegions List<String>
    Regions for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphitePrivateConnectivityInfoServiceName String
    Service Name for Graphite when using AWS PrivateLink (only for AWS stacks)
    graphiteStatus String
    graphiteUrl String
    graphiteUserId Number
    influxUrl String
    Base URL of the InfluxDB instance configured for this stack. The username is the same as the metrics' (prometheusUserId attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/metrics/metrics-influxdb/push-from-telegraf/ for docs on how to use this.
    labels Map<String>
    A map of labels to assign to the stack. Label keys and values must match the following regexp: "^[a-zA-Z0-9/-._]+$" and stacks cannot have more than 10 labels.
    logsIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Logs instance (Optional)
    logsName String
    logsPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoPrivateDns String
    Private DNS for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoRegions List<String>
    Regions for Logs when using AWS PrivateLink (only for AWS stacks)
    logsPrivateConnectivityInfoServiceName String
    Service Name for Logs when using AWS PrivateLink (only for AWS stacks)
    logsStatus String
    logsUrl String
    logsUserId Number
    name String
    Name of stack. Conventionally matches the url of the instance (e.g. <stack_slug>.grafana.net).
    oncallApiUrl String
    Base URL of the OnCall API instance configured for this stack.
    orgId Number
    Organization id to assign to this stack.
    orgName String
    Organization name to assign to this stack.
    orgSlug String
    Organization slug to assign to this stack.
    otlpPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoPrivateDns String
    Private DNS for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoRegions List<String>
    Regions for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpPrivateConnectivityInfoServiceName String
    Service Name for OTLP when using AWS PrivateLink (only for AWS stacks)
    otlpUrl String
    Base URL of the OTLP instance configured for this stack. The username is the stack's ID (id attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/ for docs on how to use this.
    pdcApiPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoPrivateDns String
    Private DNS for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoRegions List<String>
    Regions for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcApiPrivateConnectivityInfoServiceName String
    Service Name for PDC's API when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoPrivateDns String
    Private DNS for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoRegions List<String>
    Regions for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    pdcGatewayPrivateConnectivityInfoServiceName String
    Service Name for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
    profilesIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Profiles instance (Optional)
    profilesName String
    profilesPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoPrivateDns String
    Private DNS for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoRegions List<String>
    Regions for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesPrivateConnectivityInfoServiceName String
    Service Name for Profiles when using AWS PrivateLink (only for AWS stacks)
    profilesStatus String
    profilesUrl String
    profilesUserId Number
    prometheusIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Prometheus instance (Optional)
    prometheusName String
    Prometheus name for this instance.
    prometheusPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoPrivateDns String
    Private DNS for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoRegions List<String>
    Regions for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusPrivateConnectivityInfoServiceName String
    Service Name for Prometheus when using AWS PrivateLink (only for AWS stacks)
    prometheusRemoteEndpoint String
    Use this URL to query hosted metrics data e.g. Prometheus data source in Grafana
    prometheusRemoteWriteEndpoint String
    Use this URL to send prometheus metrics to Grafana cloud
    prometheusStatus String
    Prometheus status for this instance.
    prometheusUrl String
    Prometheus url for this instance.
    prometheusUserId Number
    Prometheus user ID. Used for e.g. remote_write.
    regionSlug String
    Region slug to assign to this stack. Changing region will destroy the existing stack and create a new one in the desired region. Use the region list API to get the list of available regions: https://grafana.com/docs/grafana-cloud/developer-resources/api-reference/cloud-api/#list-regions.
    slug String
    Subdomain that the Grafana instance will be available at. Setting slug to <stack_slug> will make the instance available at https://<stack_slug>.grafana.net.
    smUrl String
    Base URL of the Synthetic Monitoring API for this stack's region. This can be used with the smUrl provider config option. Note: Synthetic Monitoring requires activation either via the grafana.syntheticMonitoring.Installation resource or manually in the Grafana Cloud UI before it can be used.
    status String
    Status of the stack.
    tracesIpAllowListCname String
    Comma-separated list of CNAMEs that can be whitelisted to access the Traces instance (Optional)
    tracesName String
    tracesPrivateConnectivityInfoAvailabilityZoneIds List<String>
    Availability Zone IDs for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoAvailabilityZones List<String>
    Availability Zones for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoPrivateDns String
    Private DNS for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoRegions List<String>
    Regions for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesPrivateConnectivityInfoServiceName String
    Service Name for Traces when using AWS PrivateLink (only for AWS stacks)
    tracesStatus String
    tracesUrl String
    Base URL of the Traces instance configured for this stack. To use this in the Tempo data source in Grafana, append /tempo to the URL.
    tracesUserId Number
    url String
    Custom URL for the Grafana instance. Must have a CNAME setup to point to .grafana.net before creating the stack
    waitForReadiness Boolean
    Whether to wait for readiness of the stack after creating it. The check is a HEAD request to the stack URL (Grafana instance). Defaults to true.
    waitForReadinessTimeout String
    How long to wait for readiness (if enabled). Defaults to 5m0s.

    Import

    terraform import grafana_cloud_stack.name "{{ stackSlugOrID }}"
    

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

    Package Details

    Repository
    grafana pulumiverse/pulumi-grafana
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the grafana Terraform Provider.
    grafana logo
    Viewing docs for Grafana v2.29.0
    published on Friday, May 1, 2026 by pulumiverse
      Try Pulumi Cloud free. Your team will thank you.