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

grafana.cloud.ProviderAzureCredential

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 "@pulumiverse/grafana";
    
    const test = 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",
            },
        ],
    });
    
    import pulumi
    import pulumiverse_grafana as grafana
    
    test = 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",
            },
        ])
    
    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 {
    		_, 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
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Grafana = Pulumiverse.Grafana;
    
    return await Deployment.RunAsync(() => 
    {
        var test = 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",
                },
            },
        });
    
    });
    
    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 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 ProviderAzureCredential("test", 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());
    
        }
    }
    
    resources:
      test:
        type: grafana:cloud:ProviderAzureCredential
        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
    

    Create ProviderAzureCredential Resource

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

    Constructor syntax

    new ProviderAzureCredential(name: string, args: ProviderAzureCredentialArgs, opts?: CustomResourceOptions);
    @overload
    def ProviderAzureCredential(resource_name: str,
                                args: ProviderAzureCredentialArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def ProviderAzureCredential(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                client_id: Optional[str] = None,
                                client_secret: Optional[str] = None,
                                stack_id: Optional[str] = None,
                                tenant_id: Optional[str] = None,
                                name: Optional[str] = None,
                                resource_discovery_tag_filters: Optional[Sequence[ProviderAzureCredentialResourceDiscoveryTagFilterArgs]] = None)
    func NewProviderAzureCredential(ctx *Context, name string, args ProviderAzureCredentialArgs, opts ...ResourceOption) (*ProviderAzureCredential, error)
    public ProviderAzureCredential(string name, ProviderAzureCredentialArgs args, CustomResourceOptions? opts = null)
    public ProviderAzureCredential(String name, ProviderAzureCredentialArgs args)
    public ProviderAzureCredential(String name, ProviderAzureCredentialArgs args, CustomResourceOptions options)
    
    type: grafana:cloud:ProviderAzureCredential
    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 ProviderAzureCredentialArgs
    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 ProviderAzureCredentialArgs
    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 ProviderAzureCredentialArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProviderAzureCredentialArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProviderAzureCredentialArgs
    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 providerAzureCredentialResource = new Grafana.Cloud.ProviderAzureCredential("providerAzureCredentialResource", new()
    {
        ClientId = "string",
        ClientSecret = "string",
        StackId = "string",
        TenantId = "string",
        Name = "string",
        ResourceDiscoveryTagFilters = new[]
        {
            new Grafana.Cloud.Inputs.ProviderAzureCredentialResourceDiscoveryTagFilterArgs
            {
                Key = "string",
                Value = "string",
            },
        },
    });
    
    example, err := cloud.NewProviderAzureCredential(ctx, "providerAzureCredentialResource", &cloud.ProviderAzureCredentialArgs{
    	ClientId:     pulumi.String("string"),
    	ClientSecret: pulumi.String("string"),
    	StackId:      pulumi.String("string"),
    	TenantId:     pulumi.String("string"),
    	Name:         pulumi.String("string"),
    	ResourceDiscoveryTagFilters: cloud.ProviderAzureCredentialResourceDiscoveryTagFilterArray{
    		&cloud.ProviderAzureCredentialResourceDiscoveryTagFilterArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    })
    
    var providerAzureCredentialResource = new ProviderAzureCredential("providerAzureCredentialResource", ProviderAzureCredentialArgs.builder()
        .clientId("string")
        .clientSecret("string")
        .stackId("string")
        .tenantId("string")
        .name("string")
        .resourceDiscoveryTagFilters(ProviderAzureCredentialResourceDiscoveryTagFilterArgs.builder()
            .key("string")
            .value("string")
            .build())
        .build());
    
    provider_azure_credential_resource = grafana.cloud.ProviderAzureCredential("providerAzureCredentialResource",
        client_id="string",
        client_secret="string",
        stack_id="string",
        tenant_id="string",
        name="string",
        resource_discovery_tag_filters=[{
            "key": "string",
            "value": "string",
        }])
    
    const providerAzureCredentialResource = new grafana.cloud.ProviderAzureCredential("providerAzureCredentialResource", {
        clientId: "string",
        clientSecret: "string",
        stackId: "string",
        tenantId: "string",
        name: "string",
        resourceDiscoveryTagFilters: [{
            key: "string",
            value: "string",
        }],
    });
    
    type: grafana:cloud:ProviderAzureCredential
    properties:
        clientId: string
        clientSecret: string
        name: string
        resourceDiscoveryTagFilters:
            - key: string
              value: string
        stackId: string
        tenantId: string
    

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

    ClientId string
    The client ID of the Azure Credential.
    ClientSecret string
    The client secret of the Azure Credential.
    StackId string
    TenantId string
    The tenant ID of the Azure Credential.
    Name string
    The name of the Azure Credential.
    ResourceDiscoveryTagFilters List<Pulumiverse.Grafana.Cloud.Inputs.ProviderAzureCredentialResourceDiscoveryTagFilter>
    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.
    StackId string
    TenantId string
    The tenant ID of the Azure Credential.
    Name string
    The name of the Azure Credential.
    ResourceDiscoveryTagFilters []ProviderAzureCredentialResourceDiscoveryTagFilterArgs
    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.
    stackId String
    tenantId String
    The tenant ID of the Azure Credential.
    name String
    The name of the Azure Credential.
    resourceDiscoveryTagFilters List<ProviderAzureCredentialResourceDiscoveryTagFilter>
    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.
    stackId string
    tenantId string
    The tenant ID of the Azure Credential.
    name string
    The name of the Azure Credential.
    resourceDiscoveryTagFilters ProviderAzureCredentialResourceDiscoveryTagFilter[]
    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.
    stack_id str
    tenant_id str
    The tenant ID of the Azure Credential.
    name str
    The name of the Azure Credential.
    resource_discovery_tag_filters Sequence[ProviderAzureCredentialResourceDiscoveryTagFilterArgs]
    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.
    stackId String
    tenantId String
    The tenant ID of the Azure Credential.
    name String
    The name of the Azure Credential.
    resourceDiscoveryTagFilters List<Property Map>
    The list of tag filters to apply to resources.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceId string
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceId string
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceId String
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    id string
    The provider-assigned unique ID for this managed resource.
    resourceId string
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    id str
    The provider-assigned unique ID for this managed resource.
    resource_id str
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceId String
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.

    Look up Existing ProviderAzureCredential Resource

    Get an existing ProviderAzureCredential 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?: ProviderAzureCredentialState, opts?: CustomResourceOptions): ProviderAzureCredential
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            client_id: Optional[str] = None,
            client_secret: Optional[str] = None,
            name: Optional[str] = None,
            resource_discovery_tag_filters: Optional[Sequence[ProviderAzureCredentialResourceDiscoveryTagFilterArgs]] = None,
            resource_id: Optional[str] = None,
            stack_id: Optional[str] = None,
            tenant_id: Optional[str] = None) -> ProviderAzureCredential
    func GetProviderAzureCredential(ctx *Context, name string, id IDInput, state *ProviderAzureCredentialState, opts ...ResourceOption) (*ProviderAzureCredential, error)
    public static ProviderAzureCredential Get(string name, Input<string> id, ProviderAzureCredentialState? state, CustomResourceOptions? opts = null)
    public static ProviderAzureCredential get(String name, Output<String> id, ProviderAzureCredentialState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    ClientId string
    The client ID of the Azure Credential.
    ClientSecret string
    The client secret of the Azure Credential.
    Name string
    The name of the Azure Credential.
    ResourceDiscoveryTagFilters List<Pulumiverse.Grafana.Cloud.Inputs.ProviderAzureCredentialResourceDiscoveryTagFilter>
    The list of tag filters to apply to resources.
    ResourceId string
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    StackId string
    TenantId string
    The tenant ID of the Azure Credential.
    ClientId string
    The client ID of the Azure Credential.
    ClientSecret string
    The client secret of the Azure Credential.
    Name string
    The name of the Azure Credential.
    ResourceDiscoveryTagFilters []ProviderAzureCredentialResourceDiscoveryTagFilterArgs
    The list of tag filters to apply to resources.
    ResourceId string
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    StackId string
    TenantId string
    The tenant ID of the Azure Credential.
    clientId String
    The client ID of the Azure Credential.
    clientSecret String
    The client secret of the Azure Credential.
    name String
    The name of the Azure Credential.
    resourceDiscoveryTagFilters List<ProviderAzureCredentialResourceDiscoveryTagFilter>
    The list of tag filters to apply to resources.
    resourceId String
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    stackId String
    tenantId String
    The tenant ID of the Azure Credential.
    clientId string
    The client ID of the Azure Credential.
    clientSecret string
    The client secret of the Azure Credential.
    name string
    The name of the Azure Credential.
    resourceDiscoveryTagFilters ProviderAzureCredentialResourceDiscoveryTagFilter[]
    The list of tag filters to apply to resources.
    resourceId string
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    stackId string
    tenantId string
    The tenant ID of the Azure Credential.
    client_id str
    The client ID of the Azure Credential.
    client_secret str
    The client secret of the Azure Credential.
    name str
    The name of the Azure Credential.
    resource_discovery_tag_filters Sequence[ProviderAzureCredentialResourceDiscoveryTagFilterArgs]
    The list of tag filters to apply to resources.
    resource_id str
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    stack_id str
    tenant_id str
    The tenant ID of the Azure Credential.
    clientId String
    The client ID of the Azure Credential.
    clientSecret String
    The client secret of the Azure Credential.
    name String
    The name of the Azure Credential.
    resourceDiscoveryTagFilters List<Property Map>
    The list of tag filters to apply to resources.
    resourceId String
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    stackId String
    tenantId String
    The tenant ID of the Azure Credential.

    Supporting Types

    ProviderAzureCredentialResourceDiscoveryTagFilter, ProviderAzureCredentialResourceDiscoveryTagFilterArgs

    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.

    Import

    $ pulumi import grafana:cloud/providerAzureCredential:ProviderAzureCredential name "{{ stack_id }}:{{ resource_id }}"
    

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