1. Packages
  2. Grafana Cloud
  3. API Docs
  4. frontendObservability
  5. App
Grafana v0.16.1 published on Saturday, Mar 15, 2025 by pulumiverse

grafana.frontendObservability.App

Explore with Pulumi AI

grafana logo
Grafana v0.16.1 published on Saturday, Mar 15, 2025 by pulumiverse

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.grafana.cloud.CloudFunctions;
    import com.pulumi.grafana.cloud.inputs.GetStackArgs;
    import com.pulumi.grafana.frontendObservability.App;
    import com.pulumi.grafana.frontendObservability.AppArgs;
    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) {
            final var teststack = CloudFunctions.getStack(GetStackArgs.builder()
                .name("gcloudstacktest")
                .build());
    
            var test_app = new App("test-app", AppArgs.builder()
                .stackId(teststack.applyValue(getStackResult -> getStackResult.id()))
                .name("test-app")
                .allowedOrigins("https://grafana.com")
                .extraLogAttributes(Map.of("terraform", "true"))
                .settings(Map.of("geolocation.enabled", "1"))
                .build());
    
        }
    }
    
    resources:
      test-app:
        type: grafana:frontendObservability:App
        properties:
          stackId: ${teststack.id}
          name: test-app
          allowedOrigins:
            - https://grafana.com
          extraLogAttributes:
            terraform: 'true'
          settings:
            geolocation.enabled: '1'
    variables:
      teststack:
        fn::invoke:
          function: grafana:cloud:getStack
          arguments:
            name: gcloudstacktest
    

    Create App Resource

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

    Constructor syntax

    new App(name: string, args: AppArgs, opts?: CustomResourceOptions);
    @overload
    def App(resource_name: str,
            args: AppArgs,
            opts: Optional[ResourceOptions] = None)
    
    @overload
    def App(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            allowed_origins: Optional[Sequence[str]] = None,
            extra_log_attributes: Optional[Mapping[str, str]] = None,
            settings: Optional[Mapping[str, str]] = None,
            stack_id: Optional[int] = None,
            name: Optional[str] = None)
    func NewApp(ctx *Context, name string, args AppArgs, opts ...ResourceOption) (*App, error)
    public App(string name, AppArgs args, CustomResourceOptions? opts = null)
    public App(String name, AppArgs args)
    public App(String name, AppArgs args, CustomResourceOptions options)
    
    type: grafana:frontendObservability:App
    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 AppArgs
    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 AppArgs
    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 AppArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AppArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AppArgs
    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 appResource = new Grafana.FrontendObservability.App("appResource", new()
    {
        AllowedOrigins = new[]
        {
            "string",
        },
        ExtraLogAttributes = 
        {
            { "string", "string" },
        },
        Settings = 
        {
            { "string", "string" },
        },
        StackId = 0,
        Name = "string",
    });
    
    example, err := frontendObservability.NewApp(ctx, "appResource", &frontendObservability.AppArgs{
    	AllowedOrigins: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ExtraLogAttributes: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Settings: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	StackId: pulumi.Int(0),
    	Name:    pulumi.String("string"),
    })
    
    var appResource = new App("appResource", AppArgs.builder()
        .allowedOrigins("string")
        .extraLogAttributes(Map.of("string", "string"))
        .settings(Map.of("string", "string"))
        .stackId(0)
        .name("string")
        .build());
    
    app_resource = grafana.frontend_observability.App("appResource",
        allowed_origins=["string"],
        extra_log_attributes={
            "string": "string",
        },
        settings={
            "string": "string",
        },
        stack_id=0,
        name="string")
    
    const appResource = new grafana.frontendobservability.App("appResource", {
        allowedOrigins: ["string"],
        extraLogAttributes: {
            string: "string",
        },
        settings: {
            string: "string",
        },
        stackId: 0,
        name: "string",
    });
    
    type: grafana:frontendObservability:App
    properties:
        allowedOrigins:
            - string
        extraLogAttributes:
            string: string
        name: string
        settings:
            string: string
        stackId: 0
    

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

    AllowedOrigins List<string>
    A list of allowed origins for CORS.
    ExtraLogAttributes Dictionary<string, string>
    The extra attributes to append in each signal.
    Settings Dictionary<string, string>
    The key-value settings of the Frontend Observability app. Available Settings: {combineLabData=(0|1)}
    StackId int
    Name string
    AllowedOrigins []string
    A list of allowed origins for CORS.
    ExtraLogAttributes map[string]string
    The extra attributes to append in each signal.
    Settings map[string]string
    The key-value settings of the Frontend Observability app. Available Settings: {combineLabData=(0|1)}
    StackId int
    Name string
    allowedOrigins List<String>
    A list of allowed origins for CORS.
    extraLogAttributes Map<String,String>
    The extra attributes to append in each signal.
    settings Map<String,String>
    The key-value settings of the Frontend Observability app. Available Settings: {combineLabData=(0|1)}
    stackId Integer
    name String
    allowedOrigins string[]
    A list of allowed origins for CORS.
    extraLogAttributes {[key: string]: string}
    The extra attributes to append in each signal.
    settings {[key: string]: string}
    The key-value settings of the Frontend Observability app. Available Settings: {combineLabData=(0|1)}
    stackId number
    name string
    allowed_origins Sequence[str]
    A list of allowed origins for CORS.
    extra_log_attributes Mapping[str, str]
    The extra attributes to append in each signal.
    settings Mapping[str, str]
    The key-value settings of the Frontend Observability app. Available Settings: {combineLabData=(0|1)}
    stack_id int
    name str
    allowedOrigins List<String>
    A list of allowed origins for CORS.
    extraLogAttributes Map<String>
    The extra attributes to append in each signal.
    settings Map<String>
    The key-value settings of the Frontend Observability app. Available Settings: {combineLabData=(0|1)}
    stackId Number
    name String

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing App Resource

    Get an existing App 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?: AppState, opts?: CustomResourceOptions): App
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allowed_origins: Optional[Sequence[str]] = None,
            extra_log_attributes: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            settings: Optional[Mapping[str, str]] = None,
            stack_id: Optional[int] = None) -> App
    func GetApp(ctx *Context, name string, id IDInput, state *AppState, opts ...ResourceOption) (*App, error)
    public static App Get(string name, Input<string> id, AppState? state, CustomResourceOptions? opts = null)
    public static App get(String name, Output<String> id, AppState state, CustomResourceOptions options)
    resources:  _:    type: grafana:frontendObservability:App    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:
    AllowedOrigins List<string>
    A list of allowed origins for CORS.
    ExtraLogAttributes Dictionary<string, string>
    The extra attributes to append in each signal.
    Name string
    Settings Dictionary<string, string>
    The key-value settings of the Frontend Observability app. Available Settings: {combineLabData=(0|1)}
    StackId int
    AllowedOrigins []string
    A list of allowed origins for CORS.
    ExtraLogAttributes map[string]string
    The extra attributes to append in each signal.
    Name string
    Settings map[string]string
    The key-value settings of the Frontend Observability app. Available Settings: {combineLabData=(0|1)}
    StackId int
    allowedOrigins List<String>
    A list of allowed origins for CORS.
    extraLogAttributes Map<String,String>
    The extra attributes to append in each signal.
    name String
    settings Map<String,String>
    The key-value settings of the Frontend Observability app. Available Settings: {combineLabData=(0|1)}
    stackId Integer
    allowedOrigins string[]
    A list of allowed origins for CORS.
    extraLogAttributes {[key: string]: string}
    The extra attributes to append in each signal.
    name string
    settings {[key: string]: string}
    The key-value settings of the Frontend Observability app. Available Settings: {combineLabData=(0|1)}
    stackId number
    allowed_origins Sequence[str]
    A list of allowed origins for CORS.
    extra_log_attributes Mapping[str, str]
    The extra attributes to append in each signal.
    name str
    settings Mapping[str, str]
    The key-value settings of the Frontend Observability app. Available Settings: {combineLabData=(0|1)}
    stack_id int
    allowedOrigins List<String>
    A list of allowed origins for CORS.
    extraLogAttributes Map<String>
    The extra attributes to append in each signal.
    name String
    settings Map<String>
    The key-value settings of the Frontend Observability app. Available Settings: {combineLabData=(0|1)}
    stackId Number

    Import

    $ pulumi import grafana:frontendObservability/app:App name "{{ stack_id }}:{{ name }}"
    

    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
    Grafana v0.16.1 published on Saturday, Mar 15, 2025 by pulumiverse