1. Packages
  2. Aiven Provider
  3. API Docs
  4. OrganizationVpc
Aiven v6.36.0 published on Thursday, Mar 13, 2025 by Pulumi

aiven.OrganizationVpc

Explore with Pulumi AI

aiven logo
Aiven v6.36.0 published on Thursday, Mar 13, 2025 by Pulumi

    Creates and manages a VPC for an Aiven organization.

    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 exampleVpc = new aiven.OrganizationVpc("example_vpc", {
        organizationId: example.id,
        cloudName: "aws-eu-central-1",
        networkCidr: "10.0.0.0/24",
    });
    
    import pulumi
    import pulumi_aiven as aiven
    
    example_vpc = aiven.OrganizationVpc("example_vpc",
        organization_id=example["id"],
        cloud_name="aws-eu-central-1",
        network_cidr="10.0.0.0/24")
    
    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.NewOrganizationVpc(ctx, "example_vpc", &aiven.OrganizationVpcArgs{
    			OrganizationId: pulumi.Any(example.Id),
    			CloudName:      pulumi.String("aws-eu-central-1"),
    			NetworkCidr:    pulumi.String("10.0.0.0/24"),
    		})
    		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 exampleVpc = new Aiven.OrganizationVpc("example_vpc", new()
        {
            OrganizationId = example.Id,
            CloudName = "aws-eu-central-1",
            NetworkCidr = "10.0.0.0/24",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aiven.OrganizationVpc;
    import com.pulumi.aiven.OrganizationVpcArgs;
    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 exampleVpc = new OrganizationVpc("exampleVpc", OrganizationVpcArgs.builder()
                .organizationId(example.id())
                .cloudName("aws-eu-central-1")
                .networkCidr("10.0.0.0/24")
                .build());
    
        }
    }
    
    resources:
      exampleVpc:
        type: aiven:OrganizationVpc
        name: example_vpc
        properties:
          organizationId: ${example.id}
          cloudName: aws-eu-central-1
          networkCidr: 10.0.0.0/24
    

    Create OrganizationVpc Resource

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

    Constructor syntax

    new OrganizationVpc(name: string, args: OrganizationVpcArgs, opts?: CustomResourceOptions);
    @overload
    def OrganizationVpc(resource_name: str,
                        args: OrganizationVpcArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def OrganizationVpc(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        cloud_name: Optional[str] = None,
                        network_cidr: Optional[str] = None,
                        organization_id: Optional[str] = None)
    func NewOrganizationVpc(ctx *Context, name string, args OrganizationVpcArgs, opts ...ResourceOption) (*OrganizationVpc, error)
    public OrganizationVpc(string name, OrganizationVpcArgs args, CustomResourceOptions? opts = null)
    public OrganizationVpc(String name, OrganizationVpcArgs args)
    public OrganizationVpc(String name, OrganizationVpcArgs args, CustomResourceOptions options)
    
    type: aiven:OrganizationVpc
    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 OrganizationVpcArgs
    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 OrganizationVpcArgs
    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 OrganizationVpcArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OrganizationVpcArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OrganizationVpcArgs
    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 organizationVpcResource = new Aiven.OrganizationVpc("organizationVpcResource", new()
    {
        CloudName = "string",
        NetworkCidr = "string",
        OrganizationId = "string",
    });
    
    example, err := aiven.NewOrganizationVpc(ctx, "organizationVpcResource", &aiven.OrganizationVpcArgs{
    	CloudName:      pulumi.String("string"),
    	NetworkCidr:    pulumi.String("string"),
    	OrganizationId: pulumi.String("string"),
    })
    
    var organizationVpcResource = new OrganizationVpc("organizationVpcResource", OrganizationVpcArgs.builder()
        .cloudName("string")
        .networkCidr("string")
        .organizationId("string")
        .build());
    
    organization_vpc_resource = aiven.OrganizationVpc("organizationVpcResource",
        cloud_name="string",
        network_cidr="string",
        organization_id="string")
    
    const organizationVpcResource = new aiven.OrganizationVpc("organizationVpcResource", {
        cloudName: "string",
        networkCidr: "string",
        organizationId: "string",
    });
    
    type: aiven:OrganizationVpc
    properties:
        cloudName: string
        networkCidr: string
        organizationId: string
    

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

    CloudName string
    The cloud provider and region where the service is hosted in the format CLOUD_PROVIDER-REGION_NAME. For example, google-europe-west1 or aws-us-east-2. Changing this property forces recreation of the resource.
    NetworkCidr string
    Network address range used by the VPC. For example, 192.168.0.0/24.
    OrganizationId string
    The ID of the organization.
    CloudName string
    The cloud provider and region where the service is hosted in the format CLOUD_PROVIDER-REGION_NAME. For example, google-europe-west1 or aws-us-east-2. Changing this property forces recreation of the resource.
    NetworkCidr string
    Network address range used by the VPC. For example, 192.168.0.0/24.
    OrganizationId string
    The ID of the organization.
    cloudName String
    The cloud provider and region where the service is hosted in the format CLOUD_PROVIDER-REGION_NAME. For example, google-europe-west1 or aws-us-east-2. Changing this property forces recreation of the resource.
    networkCidr String
    Network address range used by the VPC. For example, 192.168.0.0/24.
    organizationId String
    The ID of the organization.
    cloudName string
    The cloud provider and region where the service is hosted in the format CLOUD_PROVIDER-REGION_NAME. For example, google-europe-west1 or aws-us-east-2. Changing this property forces recreation of the resource.
    networkCidr string
    Network address range used by the VPC. For example, 192.168.0.0/24.
    organizationId string
    The ID of the organization.
    cloud_name str
    The cloud provider and region where the service is hosted in the format CLOUD_PROVIDER-REGION_NAME. For example, google-europe-west1 or aws-us-east-2. Changing this property forces recreation of the resource.
    network_cidr str
    Network address range used by the VPC. For example, 192.168.0.0/24.
    organization_id str
    The ID of the organization.
    cloudName String
    The cloud provider and region where the service is hosted in the format CLOUD_PROVIDER-REGION_NAME. For example, google-europe-west1 or aws-us-east-2. Changing this property forces recreation of the resource.
    networkCidr String
    Network address range used by the VPC. For example, 192.168.0.0/24.
    organizationId String
    The ID of the organization.

    Outputs

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

    CreateTime string
    Time of creation of the VPC.
    Id string
    The provider-assigned unique ID for this managed resource.
    OrganizationVpcId string
    The ID of the Aiven Organization VPC.
    State string
    State of the VPC. The possible values are ACTIVE, APPROVED, DELETED and DELETING.
    UpdateTime string
    Time of the last update of the VPC.
    CreateTime string
    Time of creation of the VPC.
    Id string
    The provider-assigned unique ID for this managed resource.
    OrganizationVpcId string
    The ID of the Aiven Organization VPC.
    State string
    State of the VPC. The possible values are ACTIVE, APPROVED, DELETED and DELETING.
    UpdateTime string
    Time of the last update of the VPC.
    createTime String
    Time of creation of the VPC.
    id String
    The provider-assigned unique ID for this managed resource.
    organizationVpcId String
    The ID of the Aiven Organization VPC.
    state String
    State of the VPC. The possible values are ACTIVE, APPROVED, DELETED and DELETING.
    updateTime String
    Time of the last update of the VPC.
    createTime string
    Time of creation of the VPC.
    id string
    The provider-assigned unique ID for this managed resource.
    organizationVpcId string
    The ID of the Aiven Organization VPC.
    state string
    State of the VPC. The possible values are ACTIVE, APPROVED, DELETED and DELETING.
    updateTime string
    Time of the last update of the VPC.
    create_time str
    Time of creation of the VPC.
    id str
    The provider-assigned unique ID for this managed resource.
    organization_vpc_id str
    The ID of the Aiven Organization VPC.
    state str
    State of the VPC. The possible values are ACTIVE, APPROVED, DELETED and DELETING.
    update_time str
    Time of the last update of the VPC.
    createTime String
    Time of creation of the VPC.
    id String
    The provider-assigned unique ID for this managed resource.
    organizationVpcId String
    The ID of the Aiven Organization VPC.
    state String
    State of the VPC. The possible values are ACTIVE, APPROVED, DELETED and DELETING.
    updateTime String
    Time of the last update of the VPC.

    Look up Existing OrganizationVpc Resource

    Get an existing OrganizationVpc 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?: OrganizationVpcState, opts?: CustomResourceOptions): OrganizationVpc
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cloud_name: Optional[str] = None,
            create_time: Optional[str] = None,
            network_cidr: Optional[str] = None,
            organization_id: Optional[str] = None,
            organization_vpc_id: Optional[str] = None,
            state: Optional[str] = None,
            update_time: Optional[str] = None) -> OrganizationVpc
    func GetOrganizationVpc(ctx *Context, name string, id IDInput, state *OrganizationVpcState, opts ...ResourceOption) (*OrganizationVpc, error)
    public static OrganizationVpc Get(string name, Input<string> id, OrganizationVpcState? state, CustomResourceOptions? opts = null)
    public static OrganizationVpc get(String name, Output<String> id, OrganizationVpcState state, CustomResourceOptions options)
    resources:  _:    type: aiven:OrganizationVpc    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:
    CloudName string
    The cloud provider and region where the service is hosted in the format CLOUD_PROVIDER-REGION_NAME. For example, google-europe-west1 or aws-us-east-2. Changing this property forces recreation of the resource.
    CreateTime string
    Time of creation of the VPC.
    NetworkCidr string
    Network address range used by the VPC. For example, 192.168.0.0/24.
    OrganizationId string
    The ID of the organization.
    OrganizationVpcId string
    The ID of the Aiven Organization VPC.
    State string
    State of the VPC. The possible values are ACTIVE, APPROVED, DELETED and DELETING.
    UpdateTime string
    Time of the last update of the VPC.
    CloudName string
    The cloud provider and region where the service is hosted in the format CLOUD_PROVIDER-REGION_NAME. For example, google-europe-west1 or aws-us-east-2. Changing this property forces recreation of the resource.
    CreateTime string
    Time of creation of the VPC.
    NetworkCidr string
    Network address range used by the VPC. For example, 192.168.0.0/24.
    OrganizationId string
    The ID of the organization.
    OrganizationVpcId string
    The ID of the Aiven Organization VPC.
    State string
    State of the VPC. The possible values are ACTIVE, APPROVED, DELETED and DELETING.
    UpdateTime string
    Time of the last update of the VPC.
    cloudName String
    The cloud provider and region where the service is hosted in the format CLOUD_PROVIDER-REGION_NAME. For example, google-europe-west1 or aws-us-east-2. Changing this property forces recreation of the resource.
    createTime String
    Time of creation of the VPC.
    networkCidr String
    Network address range used by the VPC. For example, 192.168.0.0/24.
    organizationId String
    The ID of the organization.
    organizationVpcId String
    The ID of the Aiven Organization VPC.
    state String
    State of the VPC. The possible values are ACTIVE, APPROVED, DELETED and DELETING.
    updateTime String
    Time of the last update of the VPC.
    cloudName string
    The cloud provider and region where the service is hosted in the format CLOUD_PROVIDER-REGION_NAME. For example, google-europe-west1 or aws-us-east-2. Changing this property forces recreation of the resource.
    createTime string
    Time of creation of the VPC.
    networkCidr string
    Network address range used by the VPC. For example, 192.168.0.0/24.
    organizationId string
    The ID of the organization.
    organizationVpcId string
    The ID of the Aiven Organization VPC.
    state string
    State of the VPC. The possible values are ACTIVE, APPROVED, DELETED and DELETING.
    updateTime string
    Time of the last update of the VPC.
    cloud_name str
    The cloud provider and region where the service is hosted in the format CLOUD_PROVIDER-REGION_NAME. For example, google-europe-west1 or aws-us-east-2. Changing this property forces recreation of the resource.
    create_time str
    Time of creation of the VPC.
    network_cidr str
    Network address range used by the VPC. For example, 192.168.0.0/24.
    organization_id str
    The ID of the organization.
    organization_vpc_id str
    The ID of the Aiven Organization VPC.
    state str
    State of the VPC. The possible values are ACTIVE, APPROVED, DELETED and DELETING.
    update_time str
    Time of the last update of the VPC.
    cloudName String
    The cloud provider and region where the service is hosted in the format CLOUD_PROVIDER-REGION_NAME. For example, google-europe-west1 or aws-us-east-2. Changing this property forces recreation of the resource.
    createTime String
    Time of creation of the VPC.
    networkCidr String
    Network address range used by the VPC. For example, 192.168.0.0/24.
    organizationId String
    The ID of the organization.
    organizationVpcId String
    The ID of the Aiven Organization VPC.
    state String
    State of the VPC. The possible values are ACTIVE, APPROVED, DELETED and DELETING.
    updateTime String
    Time of the last update of the VPC.

    Import

    $ pulumi import aiven:index/organizationVpc:OrganizationVpc example ORGANIZATION_ID/ORGANIZATION_VPC_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.
    aiven logo
    Aiven v6.36.0 published on Thursday, Mar 13, 2025 by Pulumi