GetAccountTeamProject

Example Usage

using Pulumi;
using Aiven = Pulumi.Aiven;

class MyStack : Stack
{
    public MyStack()
    {
        var accountTeamProject1 = Output.Create(Aiven.GetAccountTeamProject.InvokeAsync(new Aiven.GetAccountTeamProjectArgs
        {
            AccountId = aiven_account_team.Developers.Account_id,
            ProjectName = aiven_project.Project1.Project,
            TeamId = aiven_account_team.Developers.Team_id,
        }));
    }

}

Coming soon!

import pulumi
import pulumi_aiven as aiven

account_team_project1 = aiven.get_account_team_project(account_id=aiven_account_team["developers"]["account_id"],
    project_name=aiven_project["project1"]["project"],
    team_id=aiven_account_team["developers"]["team_id"])
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";

const accountTeamProject1 = pulumi.all([aiven_account_team_developers.accountId, aiven_project_project1.project, aiven_account_team_developers.teamId]).apply(([accountId, project, teamId]) => aiven.getAccountTeamProject({
    accountId: accountId,
    projectName: project,
    teamId: teamId,
}, { async: true }));

Using GetAccountTeamProject

function getAccountTeamProject(args: GetAccountTeamProjectArgs, opts?: InvokeOptions): Promise<GetAccountTeamProjectResult>
function  get_account_team_project(account_id=None, project_name=None, team_id=None, team_type=None, opts=None)
func LookupAccountTeamProject(ctx *Context, args *LookupAccountTeamProjectArgs, opts ...InvokeOption) (*LookupAccountTeamProjectResult, error)

Note: This function is named LookupAccountTeamProject in the Go SDK.

public static class GetAccountTeamProject {
    public static Task<GetAccountTeamProjectResult> InvokeAsync(GetAccountTeamProjectArgs args, InvokeOptions? opts = null)
}

The following arguments are supported:

AccountId string
ProjectName string
TeamId string
TeamType string
AccountId string
ProjectName string
TeamId string
TeamType string
accountId string
projectName string
teamId string
teamType string
account_id str
project_name str
team_id str
team_type str

GetAccountTeamProject Result

The following output properties are available:

AccountId string
Id string

The provider-assigned unique ID for this managed resource.

ProjectName string
TeamId string
TeamType string
AccountId string
Id string

The provider-assigned unique ID for this managed resource.

ProjectName string
TeamId string
TeamType string
accountId string
id string

The provider-assigned unique ID for this managed resource.

projectName string
teamId string
teamType string
account_id str
id str

The provider-assigned unique ID for this managed resource.

project_name str
team_id str
team_type str

Package Details

Repository
https://github.com/pulumi/pulumi-aiven
License
Apache-2.0
Notes
This Pulumi package is based on the aiven Terraform Provider.