Grafana v2.11.0 published on Monday, Oct 13, 2025 by pulumiverse
grafana.frontendObservability.getApp
Example Usage
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
variables:
teststack:
fn::invoke:
function: grafana:cloud:getStack
arguments:
name: gcloudstacktest
test-app:
fn::invoke:
function: grafana:frontendObservability:getApp
arguments:
stackId: ${teststack.id}
name: test-app
Using getApp
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getApp(args: GetAppArgs, opts?: InvokeOptions): Promise<GetAppResult>
function getAppOutput(args: GetAppOutputArgs, opts?: InvokeOptions): Output<GetAppResult>
def get_app(name: Optional[str] = None,
stack_id: Optional[int] = None,
opts: Optional[InvokeOptions] = None) -> GetAppResult
def get_app_output(name: Optional[pulumi.Input[str]] = None,
stack_id: Optional[pulumi.Input[int]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAppResult]
func LookupApp(ctx *Context, args *LookupAppArgs, opts ...InvokeOption) (*LookupAppResult, error)
func LookupAppOutput(ctx *Context, args *LookupAppOutputArgs, opts ...InvokeOption) LookupAppResultOutput
> Note: This function is named LookupApp
in the Go SDK.
public static class GetApp
{
public static Task<GetAppResult> InvokeAsync(GetAppArgs args, InvokeOptions? opts = null)
public static Output<GetAppResult> Invoke(GetAppInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAppResult> getApp(GetAppArgs args, InvokeOptions options)
public static Output<GetAppResult> getApp(GetAppArgs args, InvokeOptions options)
fn::invoke:
function: grafana:frontendObservability/getApp:getApp
arguments:
# arguments dictionary
The following arguments are supported:
getApp Result
The following output properties are available:
- Allowed
Origins List<string> - A list of allowed origins for CORS.
- Collector
Endpoint string - The collector URL Grafana Cloud Frontend Observability. Use this endpoint to send your Telemetry.
- Extra
Log Dictionary<string, string>Attributes - The extra attributes to append in each signal.
- Id int
- Name string
- Settings Dictionary<string, string>
- The settings of the Frontend Observability App.
- Stack
Id int
- Allowed
Origins []string - A list of allowed origins for CORS.
- Collector
Endpoint string - The collector URL Grafana Cloud Frontend Observability. Use this endpoint to send your Telemetry.
- Extra
Log map[string]stringAttributes - The extra attributes to append in each signal.
- Id int
- Name string
- Settings map[string]string
- The settings of the Frontend Observability App.
- Stack
Id int
- allowed
Origins List<String> - A list of allowed origins for CORS.
- collector
Endpoint String - The collector URL Grafana Cloud Frontend Observability. Use this endpoint to send your Telemetry.
- extra
Log Map<String,String>Attributes - The extra attributes to append in each signal.
- id Integer
- name String
- settings Map<String,String>
- The settings of the Frontend Observability App.
- stack
Id Integer
- allowed
Origins string[] - A list of allowed origins for CORS.
- collector
Endpoint string - The collector URL Grafana Cloud Frontend Observability. Use this endpoint to send your Telemetry.
- extra
Log {[key: string]: string}Attributes - The extra attributes to append in each signal.
- id number
- name string
- settings {[key: string]: string}
- The settings of the Frontend Observability App.
- stack
Id number
- allowed_
origins Sequence[str] - A list of allowed origins for CORS.
- collector_
endpoint str - The collector URL Grafana Cloud Frontend Observability. Use this endpoint to send your Telemetry.
- extra_
log_ Mapping[str, str]attributes - The extra attributes to append in each signal.
- id int
- name str
- settings Mapping[str, str]
- The settings of the Frontend Observability App.
- stack_
id int
- allowed
Origins List<String> - A list of allowed origins for CORS.
- collector
Endpoint String - The collector URL Grafana Cloud Frontend Observability. Use this endpoint to send your Telemetry.
- extra
Log Map<String>Attributes - The extra attributes to append in each signal.
- id Number
- name String
- settings Map<String>
- The settings of the Frontend Observability App.
- stack
Id Number
Package Details
- Repository
- grafana pulumiverse/pulumi-grafana
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
grafana
Terraform Provider.