aiven.OrganizationProject
Explore with Pulumi AI
Creates and manages an Aiven project.
This resource is in the beta stage and may change without notice. Set
the PROVIDER_AIVEN_ENABLE_BETA
environment variable to use the resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const foo = new aiven.OrganizationProject("foo", {
projectId: "example-project",
organizationId: fooAivenOrganization.id,
billingGroupId: fooAivenBillingGroup.id,
tags: [{
key: "key_1",
value: "value_1",
}],
});
import pulumi
import pulumi_aiven as aiven
foo = aiven.OrganizationProject("foo",
project_id="example-project",
organization_id=foo_aiven_organization["id"],
billing_group_id=foo_aiven_billing_group["id"],
tags=[{
"key": "key_1",
"value": "value_1",
}])
package main
import (
"github.com/pulumi/pulumi-aiven/sdk/v6/go/aiven"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := aiven.NewOrganizationProject(ctx, "foo", &aiven.OrganizationProjectArgs{
ProjectId: pulumi.String("example-project"),
OrganizationId: pulumi.Any(fooAivenOrganization.Id),
BillingGroupId: pulumi.Any(fooAivenBillingGroup.Id),
Tags: aiven.OrganizationProjectTagArray{
&aiven.OrganizationProjectTagArgs{
Key: pulumi.String("key_1"),
Value: pulumi.String("value_1"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aiven = Pulumi.Aiven;
return await Deployment.RunAsync(() =>
{
var foo = new Aiven.OrganizationProject("foo", new()
{
ProjectId = "example-project",
OrganizationId = fooAivenOrganization.Id,
BillingGroupId = fooAivenBillingGroup.Id,
Tags = new[]
{
new Aiven.Inputs.OrganizationProjectTagArgs
{
Key = "key_1",
Value = "value_1",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aiven.OrganizationProject;
import com.pulumi.aiven.OrganizationProjectArgs;
import com.pulumi.aiven.inputs.OrganizationProjectTagArgs;
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 foo = new OrganizationProject("foo", OrganizationProjectArgs.builder()
.projectId("example-project")
.organizationId(fooAivenOrganization.id())
.billingGroupId(fooAivenBillingGroup.id())
.tags(OrganizationProjectTagArgs.builder()
.key("key_1")
.value("value_1")
.build())
.build());
}
}
resources:
foo:
type: aiven:OrganizationProject
properties:
projectId: example-project
organizationId: ${fooAivenOrganization.id}
billingGroupId: ${fooAivenBillingGroup.id}
tags:
- key: key_1
value: value_1
Create OrganizationProject Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OrganizationProject(name: string, args: OrganizationProjectArgs, opts?: CustomResourceOptions);
@overload
def OrganizationProject(resource_name: str,
args: OrganizationProjectArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OrganizationProject(resource_name: str,
opts: Optional[ResourceOptions] = None,
billing_group_id: Optional[str] = None,
organization_id: Optional[str] = None,
project_id: Optional[str] = None,
parent_id: Optional[str] = None,
tags: Optional[Sequence[OrganizationProjectTagArgs]] = None,
technical_emails: Optional[Sequence[str]] = None)
func NewOrganizationProject(ctx *Context, name string, args OrganizationProjectArgs, opts ...ResourceOption) (*OrganizationProject, error)
public OrganizationProject(string name, OrganizationProjectArgs args, CustomResourceOptions? opts = null)
public OrganizationProject(String name, OrganizationProjectArgs args)
public OrganizationProject(String name, OrganizationProjectArgs args, CustomResourceOptions options)
type: aiven:OrganizationProject
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 OrganizationProjectArgs
- 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 OrganizationProjectArgs
- 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 OrganizationProjectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OrganizationProjectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OrganizationProjectArgs
- 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 organizationProjectResource = new Aiven.OrganizationProject("organizationProjectResource", new()
{
BillingGroupId = "string",
OrganizationId = "string",
ProjectId = "string",
ParentId = "string",
Tags = new[]
{
new Aiven.Inputs.OrganizationProjectTagArgs
{
Key = "string",
Value = "string",
},
},
TechnicalEmails = new[]
{
"string",
},
});
example, err := aiven.NewOrganizationProject(ctx, "organizationProjectResource", &aiven.OrganizationProjectArgs{
BillingGroupId: pulumi.String("string"),
OrganizationId: pulumi.String("string"),
ProjectId: pulumi.String("string"),
ParentId: pulumi.String("string"),
Tags: aiven.OrganizationProjectTagArray{
&aiven.OrganizationProjectTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TechnicalEmails: pulumi.StringArray{
pulumi.String("string"),
},
})
var organizationProjectResource = new OrganizationProject("organizationProjectResource", OrganizationProjectArgs.builder()
.billingGroupId("string")
.organizationId("string")
.projectId("string")
.parentId("string")
.tags(OrganizationProjectTagArgs.builder()
.key("string")
.value("string")
.build())
.technicalEmails("string")
.build());
organization_project_resource = aiven.OrganizationProject("organizationProjectResource",
billing_group_id="string",
organization_id="string",
project_id="string",
parent_id="string",
tags=[{
"key": "string",
"value": "string",
}],
technical_emails=["string"])
const organizationProjectResource = new aiven.OrganizationProject("organizationProjectResource", {
billingGroupId: "string",
organizationId: "string",
projectId: "string",
parentId: "string",
tags: [{
key: "string",
value: "string",
}],
technicalEmails: ["string"],
});
type: aiven:OrganizationProject
properties:
billingGroupId: string
organizationId: string
parentId: string
projectId: string
tags:
- key: string
value: string
technicalEmails:
- string
OrganizationProject 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 OrganizationProject resource accepts the following input properties:
- Billing
Group stringId - Billing group ID to assign to the project.
- Organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- Project
Id string - Unique identifier for the project that also serves as the project name.
- Parent
Id string - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- List<Organization
Project Tag> - Tags are key-value pairs that allow you to categorize projects.
- Technical
Emails List<string> - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- Billing
Group stringId - Billing group ID to assign to the project.
- Organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- Project
Id string - Unique identifier for the project that also serves as the project name.
- Parent
Id string - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- []Organization
Project Tag Args - Tags are key-value pairs that allow you to categorize projects.
- Technical
Emails []string - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- billing
Group StringId - Billing group ID to assign to the project.
- organization
Id String - ID of an organization. Changing this property forces recreation of the resource.
- project
Id String - Unique identifier for the project that also serves as the project name.
- parent
Id String - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- List<Organization
Project Tag> - Tags are key-value pairs that allow you to categorize projects.
- technical
Emails List<String> - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- billing
Group stringId - Billing group ID to assign to the project.
- organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- project
Id string - Unique identifier for the project that also serves as the project name.
- parent
Id string - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- Organization
Project Tag[] - Tags are key-value pairs that allow you to categorize projects.
- technical
Emails string[] - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- billing_
group_ strid - Billing group ID to assign to the project.
- organization_
id str - ID of an organization. Changing this property forces recreation of the resource.
- project_
id str - Unique identifier for the project that also serves as the project name.
- parent_
id str - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- Sequence[Organization
Project Tag Args] - Tags are key-value pairs that allow you to categorize projects.
- technical_
emails Sequence[str] - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- billing
Group StringId - Billing group ID to assign to the project.
- organization
Id String - ID of an organization. Changing this property forces recreation of the resource.
- project
Id String - Unique identifier for the project that also serves as the project name.
- parent
Id String - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- List<Property Map>
- Tags are key-value pairs that allow you to categorize projects.
- technical
Emails List<String> - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
Outputs
All input properties are implicitly available as output properties. Additionally, the OrganizationProject resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing OrganizationProject Resource
Get an existing OrganizationProject 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?: OrganizationProjectState, opts?: CustomResourceOptions): OrganizationProject
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
billing_group_id: Optional[str] = None,
organization_id: Optional[str] = None,
parent_id: Optional[str] = None,
project_id: Optional[str] = None,
tags: Optional[Sequence[OrganizationProjectTagArgs]] = None,
technical_emails: Optional[Sequence[str]] = None) -> OrganizationProject
func GetOrganizationProject(ctx *Context, name string, id IDInput, state *OrganizationProjectState, opts ...ResourceOption) (*OrganizationProject, error)
public static OrganizationProject Get(string name, Input<string> id, OrganizationProjectState? state, CustomResourceOptions? opts = null)
public static OrganizationProject get(String name, Output<String> id, OrganizationProjectState state, CustomResourceOptions options)
resources: _: type: aiven:OrganizationProject 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.
- Billing
Group stringId - Billing group ID to assign to the project.
- Organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- Parent
Id string - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- Project
Id string - Unique identifier for the project that also serves as the project name.
- List<Organization
Project Tag> - Tags are key-value pairs that allow you to categorize projects.
- Technical
Emails List<string> - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- Billing
Group stringId - Billing group ID to assign to the project.
- Organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- Parent
Id string - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- Project
Id string - Unique identifier for the project that also serves as the project name.
- []Organization
Project Tag Args - Tags are key-value pairs that allow you to categorize projects.
- Technical
Emails []string - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- billing
Group StringId - Billing group ID to assign to the project.
- organization
Id String - ID of an organization. Changing this property forces recreation of the resource.
- parent
Id String - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- project
Id String - Unique identifier for the project that also serves as the project name.
- List<Organization
Project Tag> - Tags are key-value pairs that allow you to categorize projects.
- technical
Emails List<String> - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- billing
Group stringId - Billing group ID to assign to the project.
- organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- parent
Id string - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- project
Id string - Unique identifier for the project that also serves as the project name.
- Organization
Project Tag[] - Tags are key-value pairs that allow you to categorize projects.
- technical
Emails string[] - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- billing_
group_ strid - Billing group ID to assign to the project.
- organization_
id str - ID of an organization. Changing this property forces recreation of the resource.
- parent_
id str - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- project_
id str - Unique identifier for the project that also serves as the project name.
- Sequence[Organization
Project Tag Args] - Tags are key-value pairs that allow you to categorize projects.
- technical_
emails Sequence[str] - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
- billing
Group StringId - Billing group ID to assign to the project.
- organization
Id String - ID of an organization. Changing this property forces recreation of the resource.
- parent
Id String - Link a project to an organization or organizational unit by using its ID. To set up proper dependencies please refer to this variable as a reference.
- project
Id String - Unique identifier for the project that also serves as the project name.
- List<Property Map>
- Tags are key-value pairs that allow you to categorize projects.
- technical
Emails List<String> - The email addresses for project contacts, who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
Supporting Types
OrganizationProjectTag, OrganizationProjectTagArgs
Import
$ pulumi import aiven:index/organizationProject:OrganizationProject main ORGANIZATION_ID/PROJECT_ID
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Aiven pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aiven
Terraform Provider.