1. Packages
  2. Grafana Cloud
  3. API Docs
  4. cloud
  5. getProviderAzureCredential
Grafana v0.10.0 published on Friday, Jan 10, 2025 by pulumiverse

grafana.cloud.getProviderAzureCredential

Explore with Pulumi AI

grafana logo
Grafana v0.10.0 published on Friday, Jan 10, 2025 by pulumiverse

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as grafana from "@pulumi/grafana";
    import * as grafana from "@pulumiverse/grafana";
    
    const testProviderAzureCredential = new grafana.cloud.ProviderAzureCredential("test", {
        stackId: "1",
        name: "test-name",
        clientId: "my-client-id",
        clientSecret: "my-client-secret",
        tenantId: "my-tenant-id",
        resourceDiscoveryTagFilters: [
            {
                key: "key-1",
                value: "value-1",
            },
            {
                key: "key-2",
                value: "value-2",
            },
        ],
    });
    const test = grafana.cloud.getProviderAzureCredentialOutput({
        stackId: testProviderAzureCredential.stackId,
        resourceId: testProviderAzureCredential.resourceId,
    });
    
    import pulumi
    import pulumi_grafana as grafana
    import pulumiverse_grafana as grafana
    
    test_provider_azure_credential = grafana.cloud.ProviderAzureCredential("test",
        stack_id="1",
        name="test-name",
        client_id="my-client-id",
        client_secret="my-client-secret",
        tenant_id="my-tenant-id",
        resource_discovery_tag_filters=[
            {
                "key": "key-1",
                "value": "value-1",
            },
            {
                "key": "key-2",
                "value": "value-2",
            },
        ])
    test = grafana.cloud.get_provider_azure_credential_output(stack_id=test_provider_azure_credential.stack_id,
        resource_id=test_provider_azure_credential.resource_id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-grafana/sdk/go/grafana/cloud"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		testProviderAzureCredential, err := cloud.NewProviderAzureCredential(ctx, "test", &cloud.ProviderAzureCredentialArgs{
    			StackId:      pulumi.String("1"),
    			Name:         pulumi.String("test-name"),
    			ClientId:     pulumi.String("my-client-id"),
    			ClientSecret: pulumi.String("my-client-secret"),
    			TenantId:     pulumi.String("my-tenant-id"),
    			ResourceDiscoveryTagFilters: cloud.ProviderAzureCredentialResourceDiscoveryTagFilterArray{
    				&cloud.ProviderAzureCredentialResourceDiscoveryTagFilterArgs{
    					Key:   pulumi.String("key-1"),
    					Value: pulumi.String("value-1"),
    				},
    				&cloud.ProviderAzureCredentialResourceDiscoveryTagFilterArgs{
    					Key:   pulumi.String("key-2"),
    					Value: pulumi.String("value-2"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_ = cloud.LookupProviderAzureCredentialOutput(ctx, cloud.GetProviderAzureCredentialOutputArgs{
    			StackId:    testProviderAzureCredential.StackId,
    			ResourceId: testProviderAzureCredential.ResourceId,
    		}, nil)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Grafana = Pulumi.Grafana;
    using Grafana = Pulumiverse.Grafana;
    
    return await Deployment.RunAsync(() => 
    {
        var testProviderAzureCredential = new Grafana.Cloud.ProviderAzureCredential("test", new()
        {
            StackId = "1",
            Name = "test-name",
            ClientId = "my-client-id",
            ClientSecret = "my-client-secret",
            TenantId = "my-tenant-id",
            ResourceDiscoveryTagFilters = new[]
            {
                new Grafana.Cloud.Inputs.ProviderAzureCredentialResourceDiscoveryTagFilterArgs
                {
                    Key = "key-1",
                    Value = "value-1",
                },
                new Grafana.Cloud.Inputs.ProviderAzureCredentialResourceDiscoveryTagFilterArgs
                {
                    Key = "key-2",
                    Value = "value-2",
                },
            },
        });
    
        var test = Grafana.Cloud.GetProviderAzureCredential.Invoke(new()
        {
            StackId = testProviderAzureCredential.StackId,
            ResourceId = testProviderAzureCredential.ResourceId,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.grafana.cloud.ProviderAzureCredential;
    import com.pulumi.grafana.cloud.ProviderAzureCredentialArgs;
    import com.pulumi.grafana.cloud.inputs.ProviderAzureCredentialResourceDiscoveryTagFilterArgs;
    import com.pulumi.grafana.cloud.CloudFunctions;
    import com.pulumi.grafana.cloud.inputs.GetProviderAzureCredentialArgs;
    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 testProviderAzureCredential = new ProviderAzureCredential("testProviderAzureCredential", ProviderAzureCredentialArgs.builder()
                .stackId("1")
                .name("test-name")
                .clientId("my-client-id")
                .clientSecret("my-client-secret")
                .tenantId("my-tenant-id")
                .resourceDiscoveryTagFilters(            
                    ProviderAzureCredentialResourceDiscoveryTagFilterArgs.builder()
                        .key("key-1")
                        .value("value-1")
                        .build(),
                    ProviderAzureCredentialResourceDiscoveryTagFilterArgs.builder()
                        .key("key-2")
                        .value("value-2")
                        .build())
                .build());
    
            final var test = CloudFunctions.getProviderAzureCredential(GetProviderAzureCredentialArgs.builder()
                .stackId(testProviderAzureCredential.stackId())
                .resourceId(testProviderAzureCredential.resourceId())
                .build());
    
        }
    }
    
    resources:
      testProviderAzureCredential:
        type: grafana:cloud:ProviderAzureCredential
        name: test
        properties:
          stackId: '1'
          name: test-name
          clientId: my-client-id
          clientSecret: my-client-secret
          tenantId: my-tenant-id
          resourceDiscoveryTagFilters:
            - key: key-1
              value: value-1
            - key: key-2
              value: value-2
    variables:
      test:
        fn::invoke:
          function: grafana:cloud:getProviderAzureCredential
          arguments:
            stackId: ${testProviderAzureCredential.stackId}
            resourceId: ${testProviderAzureCredential.resourceId}
    

    Using getProviderAzureCredential

    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 getProviderAzureCredential(args: GetProviderAzureCredentialArgs, opts?: InvokeOptions): Promise<GetProviderAzureCredentialResult>
    function getProviderAzureCredentialOutput(args: GetProviderAzureCredentialOutputArgs, opts?: InvokeOptions): Output<GetProviderAzureCredentialResult>
    def get_provider_azure_credential(resource_discovery_tag_filters: Optional[Sequence[GetProviderAzureCredentialResourceDiscoveryTagFilter]] = None,
                                      resource_id: Optional[str] = None,
                                      stack_id: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetProviderAzureCredentialResult
    def get_provider_azure_credential_output(resource_discovery_tag_filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetProviderAzureCredentialResourceDiscoveryTagFilterArgs]]]] = None,
                                      resource_id: Optional[pulumi.Input[str]] = None,
                                      stack_id: Optional[pulumi.Input[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetProviderAzureCredentialResult]
    func LookupProviderAzureCredential(ctx *Context, args *LookupProviderAzureCredentialArgs, opts ...InvokeOption) (*LookupProviderAzureCredentialResult, error)
    func LookupProviderAzureCredentialOutput(ctx *Context, args *LookupProviderAzureCredentialOutputArgs, opts ...InvokeOption) LookupProviderAzureCredentialResultOutput

    > Note: This function is named LookupProviderAzureCredential in the Go SDK.

    public static class GetProviderAzureCredential 
    {
        public static Task<GetProviderAzureCredentialResult> InvokeAsync(GetProviderAzureCredentialArgs args, InvokeOptions? opts = null)
        public static Output<GetProviderAzureCredentialResult> Invoke(GetProviderAzureCredentialInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetProviderAzureCredentialResult> getProviderAzureCredential(GetProviderAzureCredentialArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: grafana:cloud/getProviderAzureCredential:getProviderAzureCredential
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ResourceId string
    The ID given by the Grafana Cloud Provider API to this Azure Credential resource.
    StackId string
    ResourceDiscoveryTagFilters List<Pulumiverse.Grafana.Cloud.Inputs.GetProviderAzureCredentialResourceDiscoveryTagFilter>
    The list of tag filters to apply to resources.
    ResourceId string
    The ID given by the Grafana Cloud Provider API to this Azure Credential resource.
    StackId string
    ResourceDiscoveryTagFilters []GetProviderAzureCredentialResourceDiscoveryTagFilter
    The list of tag filters to apply to resources.
    resourceId String
    The ID given by the Grafana Cloud Provider API to this Azure Credential resource.
    stackId String
    resourceDiscoveryTagFilters List<GetProviderAzureCredentialResourceDiscoveryTagFilter>
    The list of tag filters to apply to resources.
    resourceId string
    The ID given by the Grafana Cloud Provider API to this Azure Credential resource.
    stackId string
    resourceDiscoveryTagFilters GetProviderAzureCredentialResourceDiscoveryTagFilter[]
    The list of tag filters to apply to resources.
    resource_id str
    The ID given by the Grafana Cloud Provider API to this Azure Credential resource.
    stack_id str
    resource_discovery_tag_filters Sequence[GetProviderAzureCredentialResourceDiscoveryTagFilter]
    The list of tag filters to apply to resources.
    resourceId String
    The ID given by the Grafana Cloud Provider API to this Azure Credential resource.
    stackId String
    resourceDiscoveryTagFilters List<Property Map>
    The list of tag filters to apply to resources.

    getProviderAzureCredential Result

    The following output properties are available:

    ClientId string
    The client ID of the Azure Credential.
    ClientSecret string
    The client secret of the Azure Credential.
    Id string
    Name string
    The name of the Azure Credential.
    ResourceId string
    The ID given by the Grafana Cloud Provider API to this Azure Credential resource.
    StackId string
    TenantId string
    The tenant ID of the Azure Credential.
    ResourceDiscoveryTagFilters List<Pulumiverse.Grafana.Cloud.Outputs.GetProviderAzureCredentialResourceDiscoveryTagFilter>
    The list of tag filters to apply to resources.
    ClientId string
    The client ID of the Azure Credential.
    ClientSecret string
    The client secret of the Azure Credential.
    Id string
    Name string
    The name of the Azure Credential.
    ResourceId string
    The ID given by the Grafana Cloud Provider API to this Azure Credential resource.
    StackId string
    TenantId string
    The tenant ID of the Azure Credential.
    ResourceDiscoveryTagFilters []GetProviderAzureCredentialResourceDiscoveryTagFilter
    The list of tag filters to apply to resources.
    clientId String
    The client ID of the Azure Credential.
    clientSecret String
    The client secret of the Azure Credential.
    id String
    name String
    The name of the Azure Credential.
    resourceId String
    The ID given by the Grafana Cloud Provider API to this Azure Credential resource.
    stackId String
    tenantId String
    The tenant ID of the Azure Credential.
    resourceDiscoveryTagFilters List<GetProviderAzureCredentialResourceDiscoveryTagFilter>
    The list of tag filters to apply to resources.
    clientId string
    The client ID of the Azure Credential.
    clientSecret string
    The client secret of the Azure Credential.
    id string
    name string
    The name of the Azure Credential.
    resourceId string
    The ID given by the Grafana Cloud Provider API to this Azure Credential resource.
    stackId string
    tenantId string
    The tenant ID of the Azure Credential.
    resourceDiscoveryTagFilters GetProviderAzureCredentialResourceDiscoveryTagFilter[]
    The list of tag filters to apply to resources.
    client_id str
    The client ID of the Azure Credential.
    client_secret str
    The client secret of the Azure Credential.
    id str
    name str
    The name of the Azure Credential.
    resource_id str
    The ID given by the Grafana Cloud Provider API to this Azure Credential resource.
    stack_id str
    tenant_id str
    The tenant ID of the Azure Credential.
    resource_discovery_tag_filters Sequence[GetProviderAzureCredentialResourceDiscoveryTagFilter]
    The list of tag filters to apply to resources.
    clientId String
    The client ID of the Azure Credential.
    clientSecret String
    The client secret of the Azure Credential.
    id String
    name String
    The name of the Azure Credential.
    resourceId String
    The ID given by the Grafana Cloud Provider API to this Azure Credential resource.
    stackId String
    tenantId String
    The tenant ID of the Azure Credential.
    resourceDiscoveryTagFilters List<Property Map>
    The list of tag filters to apply to resources.

    Supporting Types

    GetProviderAzureCredentialResourceDiscoveryTagFilter

    Key string
    The key of the tag filter.
    Value string
    The value of the tag filter.
    Key string
    The key of the tag filter.
    Value string
    The value of the tag filter.
    key String
    The key of the tag filter.
    value String
    The value of the tag filter.
    key string
    The key of the tag filter.
    value string
    The value of the tag filter.
    key str
    The key of the tag filter.
    value str
    The value of the tag filter.
    key String
    The key of the tag filter.
    value String
    The value of the tag filter.

    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.10.0 published on Friday, Jan 10, 2025 by pulumiverse