Grafana v0.10.0 published on Friday, Jan 10, 2025 by pulumiverse
grafana.cloud.getProviderAwsAccount
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as grafana from "@pulumi/grafana";
import * as grafana from "@pulumiverse/grafana";
const test = grafana.cloud.getStack({
slug: "gcloudstacktest",
});
const testProviderAwsAccount = new grafana.cloud.ProviderAwsAccount("test", {
stackId: test.then(test => test.id),
roleArn: testAwsIamRole.arn,
regions: [
"us-east-2",
"eu-west-3",
],
});
const testGetProviderAwsAccount = pulumi.all([test, testProviderAwsAccount.resourceId]).apply(([test, resourceId]) => grafana.cloud.getProviderAwsAccountOutput({
stackId: test.id,
resourceId: resourceId,
}));
import pulumi
import pulumi_grafana as grafana
import pulumiverse_grafana as grafana
test = grafana.cloud.get_stack(slug="gcloudstacktest")
test_provider_aws_account = grafana.cloud.ProviderAwsAccount("test",
stack_id=test.id,
role_arn=test_aws_iam_role["arn"],
regions=[
"us-east-2",
"eu-west-3",
])
test_get_provider_aws_account = test_provider_aws_account.resource_id.apply(lambda resource_id: grafana.cloud.get_provider_aws_account_output(stack_id=test.id,
resource_id=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 {
test, err := cloud.LookupStack(ctx, &cloud.LookupStackArgs{
Slug: "gcloudstacktest",
}, nil)
if err != nil {
return err
}
testProviderAwsAccount, err := cloud.NewProviderAwsAccount(ctx, "test", &cloud.ProviderAwsAccountArgs{
StackId: pulumi.String(test.Id),
RoleArn: pulumi.Any(testAwsIamRole.Arn),
Regions: pulumi.StringArray{
pulumi.String("us-east-2"),
pulumi.String("eu-west-3"),
},
})
if err != nil {
return err
}
_ = testProviderAwsAccount.ResourceId.ApplyT(func(resourceId string) (cloud.GetProviderAwsAccountResult, error) {
return cloud.GetProviderAwsAccountResult(interface{}(cloud.LookupProviderAwsAccountOutput(ctx, cloud.GetProviderAwsAccountOutputArgs{
StackId: test.Id,
ResourceId: resourceId,
}, nil))), nil
}).(cloud.GetProviderAwsAccountResultOutput)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Grafana = Pulumi.Grafana;
using Grafana = Pulumiverse.Grafana;
return await Deployment.RunAsync(() =>
{
var test = Grafana.Cloud.GetStack.Invoke(new()
{
Slug = "gcloudstacktest",
});
var testProviderAwsAccount = new Grafana.Cloud.ProviderAwsAccount("test", new()
{
StackId = test.Apply(getStackResult => getStackResult.Id),
RoleArn = testAwsIamRole.Arn,
Regions = new[]
{
"us-east-2",
"eu-west-3",
},
});
var testGetProviderAwsAccount = Grafana.Cloud.GetProviderAwsAccount.Invoke(new()
{
StackId = test.Apply(getStackResult => getStackResult.Id),
ResourceId = testProviderAwsAccount.ResourceId,
});
});
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.cloud.ProviderAwsAccount;
import com.pulumi.grafana.cloud.ProviderAwsAccountArgs;
import com.pulumi.grafana.cloud.inputs.GetProviderAwsAccountArgs;
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());
var testProviderAwsAccount = new ProviderAwsAccount("testProviderAwsAccount", ProviderAwsAccountArgs.builder()
.stackId(test.applyValue(getStackResult -> getStackResult.id()))
.roleArn(testAwsIamRole.arn())
.regions(
"us-east-2",
"eu-west-3")
.build());
final var testGetProviderAwsAccount = CloudFunctions.getProviderAwsAccount(GetProviderAwsAccountArgs.builder()
.stackId(test.applyValue(getStackResult -> getStackResult.id()))
.resourceId(testProviderAwsAccount.resourceId())
.build());
}
}
resources:
testProviderAwsAccount:
type: grafana:cloud:ProviderAwsAccount
name: test
properties:
stackId: ${test.id}
roleArn: ${testAwsIamRole.arn}
regions:
- us-east-2
- eu-west-3
variables:
test:
fn::invoke:
function: grafana:cloud:getStack
arguments:
slug: gcloudstacktest
testGetProviderAwsAccount:
fn::invoke:
function: grafana:cloud:getProviderAwsAccount
arguments:
stackId: ${test.id}
resourceId: ${testProviderAwsAccount.resourceId}
Using getProviderAwsAccount
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 getProviderAwsAccount(args: GetProviderAwsAccountArgs, opts?: InvokeOptions): Promise<GetProviderAwsAccountResult>
function getProviderAwsAccountOutput(args: GetProviderAwsAccountOutputArgs, opts?: InvokeOptions): Output<GetProviderAwsAccountResult>
def get_provider_aws_account(resource_id: Optional[str] = None,
stack_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetProviderAwsAccountResult
def get_provider_aws_account_output(resource_id: Optional[pulumi.Input[str]] = None,
stack_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetProviderAwsAccountResult]
func LookupProviderAwsAccount(ctx *Context, args *LookupProviderAwsAccountArgs, opts ...InvokeOption) (*LookupProviderAwsAccountResult, error)
func LookupProviderAwsAccountOutput(ctx *Context, args *LookupProviderAwsAccountOutputArgs, opts ...InvokeOption) LookupProviderAwsAccountResultOutput
> Note: This function is named LookupProviderAwsAccount
in the Go SDK.
public static class GetProviderAwsAccount
{
public static Task<GetProviderAwsAccountResult> InvokeAsync(GetProviderAwsAccountArgs args, InvokeOptions? opts = null)
public static Output<GetProviderAwsAccountResult> Invoke(GetProviderAwsAccountInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetProviderAwsAccountResult> getProviderAwsAccount(GetProviderAwsAccountArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: grafana:cloud/getProviderAwsAccount:getProviderAwsAccount
arguments:
# arguments dictionary
The following arguments are supported:
- Resource
Id string - The ID given by the Grafana Cloud Provider API to this AWS Account resource.
- Stack
Id string
- Resource
Id string - The ID given by the Grafana Cloud Provider API to this AWS Account resource.
- Stack
Id string
- resource
Id String - The ID given by the Grafana Cloud Provider API to this AWS Account resource.
- stack
Id String
- resource
Id string - The ID given by the Grafana Cloud Provider API to this AWS Account resource.
- stack
Id string
- resource_
id str - The ID given by the Grafana Cloud Provider API to this AWS Account resource.
- stack_
id str
- resource
Id String - The ID given by the Grafana Cloud Provider API to this AWS Account resource.
- stack
Id String
getProviderAwsAccount Result
The following output properties are available:
- Id string
- Regions List<string>
- A set of regions that this AWS Account resource applies to.
- Resource
Id string - The ID given by the Grafana Cloud Provider API to this AWS Account resource.
- Role
Arn string - An IAM Role ARN string to represent with this AWS Account resource.
- Stack
Id string
- Id string
- Regions []string
- A set of regions that this AWS Account resource applies to.
- Resource
Id string - The ID given by the Grafana Cloud Provider API to this AWS Account resource.
- Role
Arn string - An IAM Role ARN string to represent with this AWS Account resource.
- Stack
Id string
- id String
- regions List<String>
- A set of regions that this AWS Account resource applies to.
- resource
Id String - The ID given by the Grafana Cloud Provider API to this AWS Account resource.
- role
Arn String - An IAM Role ARN string to represent with this AWS Account resource.
- stack
Id String
- id string
- regions string[]
- A set of regions that this AWS Account resource applies to.
- resource
Id string - The ID given by the Grafana Cloud Provider API to this AWS Account resource.
- role
Arn string - An IAM Role ARN string to represent with this AWS Account resource.
- stack
Id string
- id str
- 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
- id String
- regions List<String>
- A set of regions that this AWS Account resource applies to.
- resource
Id String - The ID given by the Grafana Cloud Provider API to this AWS Account resource.
- role
Arn String - An IAM Role ARN string to represent with this AWS Account resource.
- stack
Id String
Package Details
- Repository
- grafana pulumiverse/pulumi-grafana
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
grafana
Terraform Provider.