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

grafana.cloud.ProviderAwsAccount

Explore with Pulumi AI

grafana logo
Grafana v0.16.1 published on Saturday, Mar 15, 2025 by pulumiverse
    Deprecated: grafana.cloud/providerawsaccount.ProviderAwsAccount has been deprecated in favor of grafana.cloudprovider/awsaccount.AwsAccount

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    import * as grafana from "@pulumi/grafana";
    import * as grafana from "@pulumiverse/grafana";
    
    const test = grafana.cloud.getStack({
        slug: "gcloudstacktest",
    });
    const testGetRole = aws.iam.getRole({
        name: "my-role",
    });
    const testAwsAccount = new grafana.cloudprovider.AwsAccount("test", {
        stackId: test.then(test => test.id),
        roleArn: testGetRole.then(testGetRole => testGetRole.arn),
        regions: [
            "us-east-1",
            "us-east-2",
            "us-west-1",
        ],
    });
    
    import pulumi
    import pulumi_aws as aws
    import pulumi_grafana as grafana
    import pulumiverse_grafana as grafana
    
    test = grafana.cloud.get_stack(slug="gcloudstacktest")
    test_get_role = aws.iam.get_role(name="my-role")
    test_aws_account = grafana.cloud_provider.AwsAccount("test",
        stack_id=test.id,
        role_arn=test_get_role.arn,
        regions=[
            "us-east-1",
            "us-east-2",
            "us-west-1",
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-grafana/sdk/go/grafana/cloud"
    	"github.com/pulumiverse/pulumi-grafana/sdk/go/grafana/cloudprovider"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		test, err := cloud.LookupStack(ctx, &cloud.LookupStackArgs{
    			Slug: "gcloudstacktest",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		testGetRole, err := iam.LookupRole(ctx, &iam.LookupRoleArgs{
    			Name: "my-role",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = cloudprovider.NewAwsAccount(ctx, "test", &cloudprovider.AwsAccountArgs{
    			StackId: pulumi.String(test.Id),
    			RoleArn: pulumi.String(testGetRole.Arn),
    			Regions: pulumi.StringArray{
    				pulumi.String("us-east-1"),
    				pulumi.String("us-east-2"),
    				pulumi.String("us-west-1"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    using Grafana = Pulumi.Grafana;
    using Grafana = Pulumiverse.Grafana;
    
    return await Deployment.RunAsync(() => 
    {
        var test = Grafana.Cloud.GetStack.Invoke(new()
        {
            Slug = "gcloudstacktest",
        });
    
        var testGetRole = Aws.Iam.GetRole.Invoke(new()
        {
            Name = "my-role",
        });
    
        var testAwsAccount = new Grafana.CloudProvider.AwsAccount("test", new()
        {
            StackId = test.Apply(getStackResult => getStackResult.Id),
            RoleArn = testGetRole.Apply(getRoleResult => getRoleResult.Arn),
            Regions = new[]
            {
                "us-east-1",
                "us-east-2",
                "us-west-1",
            },
        });
    
    });
    
    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.aws.iam.IamFunctions;
    import com.pulumi.aws.iam.inputs.GetRoleArgs;
    import com.pulumi.grafana.cloudProvider.AwsAccount;
    import com.pulumi.grafana.cloudProvider.AwsAccountArgs;
    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 test = CloudFunctions.getStack(GetStackArgs.builder()
                .slug("gcloudstacktest")
                .build());
    
            final var testGetRole = IamFunctions.getRole(GetRoleArgs.builder()
                .name("my-role")
                .build());
    
            var testAwsAccount = new AwsAccount("testAwsAccount", AwsAccountArgs.builder()
                .stackId(test.applyValue(getStackResult -> getStackResult.id()))
                .roleArn(testGetRole.applyValue(getRoleResult -> getRoleResult.arn()))
                .regions(            
                    "us-east-1",
                    "us-east-2",
                    "us-west-1")
                .build());
    
        }
    }
    
    resources:
      testAwsAccount:
        type: grafana:cloudProvider:AwsAccount
        name: test
        properties:
          stackId: ${test.id}
          roleArn: ${testGetRole.arn}
          regions:
            - us-east-1
            - us-east-2
            - us-west-1
    variables:
      test:
        fn::invoke:
          function: grafana:cloud:getStack
          arguments:
            slug: gcloudstacktest
      testGetRole:
        fn::invoke:
          function: aws:iam:getRole
          arguments:
            name: my-role
    

    Create ProviderAwsAccount Resource

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

    Constructor syntax

    new ProviderAwsAccount(name: string, args: ProviderAwsAccountArgs, opts?: CustomResourceOptions);
    @overload
    def ProviderAwsAccount(resource_name: str,
                           args: ProviderAwsAccountArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ProviderAwsAccount(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           name: Optional[str] = None,
                           regions: Optional[Sequence[str]] = None,
                           role_arn: Optional[str] = None,
                           stack_id: Optional[str] = None)
    func NewProviderAwsAccount(ctx *Context, name string, args ProviderAwsAccountArgs, opts ...ResourceOption) (*ProviderAwsAccount, error)
    public ProviderAwsAccount(string name, ProviderAwsAccountArgs args, CustomResourceOptions? opts = null)
    public ProviderAwsAccount(String name, ProviderAwsAccountArgs args)
    public ProviderAwsAccount(String name, ProviderAwsAccountArgs args, CustomResourceOptions options)
    
    type: grafana:cloud:ProviderAwsAccount
    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 ProviderAwsAccountArgs
    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 ProviderAwsAccountArgs
    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 ProviderAwsAccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProviderAwsAccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProviderAwsAccountArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Regions List<string>
    A set of regions that this AWS Account resource applies to.
    RoleArn string
    An IAM Role ARN string to represent with this AWS Account resource.
    StackId string
    Name string
    An optional human-readable name for this AWS Account resource.
    Regions []string
    A set of regions that this AWS Account resource applies to.
    RoleArn string
    An IAM Role ARN string to represent with this AWS Account resource.
    StackId string
    Name string
    An optional human-readable name for this AWS Account resource.
    regions List<String>
    A set of regions that this AWS Account resource applies to.
    roleArn String
    An IAM Role ARN string to represent with this AWS Account resource.
    stackId String
    name String
    An optional human-readable name for this AWS Account resource.
    regions string[]
    A set of regions that this AWS Account resource applies to.
    roleArn string
    An IAM Role ARN string to represent with this AWS Account resource.
    stackId string
    name string
    An optional human-readable name for this AWS Account resource.
    regions Sequence[str]
    A set of regions that this AWS Account resource applies to.
    role_arn str
    An IAM Role ARN string to represent with this AWS Account resource.
    stack_id str
    name str
    An optional human-readable name for this AWS Account resource.
    regions List<String>
    A set of regions that this AWS Account resource applies to.
    roleArn String
    An IAM Role ARN string to represent with this AWS Account resource.
    stackId String
    name String
    An optional human-readable name for this AWS Account resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ProviderAwsAccount 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 ProviderAwsAccount Resource

    Get an existing ProviderAwsAccount 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?: ProviderAwsAccountState, opts?: CustomResourceOptions): ProviderAwsAccount
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            name: Optional[str] = None,
            regions: Optional[Sequence[str]] = None,
            resource_id: Optional[str] = None,
            role_arn: Optional[str] = None,
            stack_id: Optional[str] = None) -> ProviderAwsAccount
    func GetProviderAwsAccount(ctx *Context, name string, id IDInput, state *ProviderAwsAccountState, opts ...ResourceOption) (*ProviderAwsAccount, error)
    public static ProviderAwsAccount Get(string name, Input<string> id, ProviderAwsAccountState? state, CustomResourceOptions? opts = null)
    public static ProviderAwsAccount get(String name, Output<String> id, ProviderAwsAccountState state, CustomResourceOptions options)
    resources:  _:    type: grafana:cloud:ProviderAwsAccount    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:
    Name string
    An optional human-readable name for this AWS Account resource.
    Regions List<string>
    A set of regions that this AWS Account resource applies to.
    ResourceId string
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    RoleArn string
    An IAM Role ARN string to represent with this AWS Account resource.
    StackId string
    Name string
    An optional human-readable name for this AWS Account resource.
    Regions []string
    A set of regions that this AWS Account resource applies to.
    ResourceId string
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    RoleArn string
    An IAM Role ARN string to represent with this AWS Account resource.
    StackId string
    name String
    An optional human-readable name for this AWS Account resource.
    regions List<String>
    A set of regions that this AWS Account resource applies to.
    resourceId String
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    roleArn String
    An IAM Role ARN string to represent with this AWS Account resource.
    stackId String
    name string
    An optional human-readable name for this AWS Account resource.
    regions string[]
    A set of regions that this AWS Account resource applies to.
    resourceId string
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    roleArn string
    An IAM Role ARN string to represent with this AWS Account resource.
    stackId string
    name str
    An optional human-readable name for this AWS Account resource.
    regions Sequence[str]
    A set of regions that this AWS Account resource applies to.
    resource_id str
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    role_arn str
    An IAM Role ARN string to represent with this AWS Account resource.
    stack_id str
    name String
    An optional human-readable name for this AWS Account resource.
    regions List<String>
    A set of regions that this AWS Account resource applies to.
    resourceId String
    The ID given by the Grafana Cloud Provider API to this AWS Account resource.
    roleArn String
    An IAM Role ARN string to represent with this AWS Account resource.
    stackId String

    Import

    $ pulumi import grafana:cloud/providerAwsAccount:ProviderAwsAccount 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.16.1 published on Saturday, Mar 15, 2025 by pulumiverse