aiven.AzureOrgVpcPeeringConnection
Explore with Pulumi AI
Creates and manages an Azure VPC peering connection with an Aiven VPC.
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: "azure-germany-westcentral",
networkCidr: "10.0.0.0/24",
});
const examplePeering = new aiven.AzureOrgVpcPeeringConnection("example_peering", {
organizationId: exampleVpc.organizationId,
organizationVpcId: exampleVpc.organizationVpcId,
azureSubscriptionId: "12345678-1234-1234-1234-123456789012",
vnetName: "my-vnet",
peerResourceGroup: "my-resource-group",
peerAzureAppId: "87654321-4321-4321-4321-210987654321",
peerAzureTenantId: "11111111-2222-3333-4444-555555555555",
});
import pulumi
import pulumi_aiven as aiven
example_vpc = aiven.OrganizationVpc("example_vpc",
organization_id=example["id"],
cloud_name="azure-germany-westcentral",
network_cidr="10.0.0.0/24")
example_peering = aiven.AzureOrgVpcPeeringConnection("example_peering",
organization_id=example_vpc.organization_id,
organization_vpc_id=example_vpc.organization_vpc_id,
azure_subscription_id="12345678-1234-1234-1234-123456789012",
vnet_name="my-vnet",
peer_resource_group="my-resource-group",
peer_azure_app_id="87654321-4321-4321-4321-210987654321",
peer_azure_tenant_id="11111111-2222-3333-4444-555555555555")
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 {
exampleVpc, err := aiven.NewOrganizationVpc(ctx, "example_vpc", &aiven.OrganizationVpcArgs{
OrganizationId: pulumi.Any(example.Id),
CloudName: pulumi.String("azure-germany-westcentral"),
NetworkCidr: pulumi.String("10.0.0.0/24"),
})
if err != nil {
return err
}
_, err = aiven.NewAzureOrgVpcPeeringConnection(ctx, "example_peering", &aiven.AzureOrgVpcPeeringConnectionArgs{
OrganizationId: exampleVpc.OrganizationId,
OrganizationVpcId: exampleVpc.OrganizationVpcId,
AzureSubscriptionId: pulumi.String("12345678-1234-1234-1234-123456789012"),
VnetName: pulumi.String("my-vnet"),
PeerResourceGroup: pulumi.String("my-resource-group"),
PeerAzureAppId: pulumi.String("87654321-4321-4321-4321-210987654321"),
PeerAzureTenantId: pulumi.String("11111111-2222-3333-4444-555555555555"),
})
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 = "azure-germany-westcentral",
NetworkCidr = "10.0.0.0/24",
});
var examplePeering = new Aiven.AzureOrgVpcPeeringConnection("example_peering", new()
{
OrganizationId = exampleVpc.OrganizationId,
OrganizationVpcId = exampleVpc.OrganizationVpcId,
AzureSubscriptionId = "12345678-1234-1234-1234-123456789012",
VnetName = "my-vnet",
PeerResourceGroup = "my-resource-group",
PeerAzureAppId = "87654321-4321-4321-4321-210987654321",
PeerAzureTenantId = "11111111-2222-3333-4444-555555555555",
});
});
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 com.pulumi.aiven.AzureOrgVpcPeeringConnection;
import com.pulumi.aiven.AzureOrgVpcPeeringConnectionArgs;
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("azure-germany-westcentral")
.networkCidr("10.0.0.0/24")
.build());
var examplePeering = new AzureOrgVpcPeeringConnection("examplePeering", AzureOrgVpcPeeringConnectionArgs.builder()
.organizationId(exampleVpc.organizationId())
.organizationVpcId(exampleVpc.organizationVpcId())
.azureSubscriptionId("12345678-1234-1234-1234-123456789012")
.vnetName("my-vnet")
.peerResourceGroup("my-resource-group")
.peerAzureAppId("87654321-4321-4321-4321-210987654321")
.peerAzureTenantId("11111111-2222-3333-4444-555555555555")
.build());
}
}
resources:
exampleVpc:
type: aiven:OrganizationVpc
name: example_vpc
properties:
organizationId: ${example.id}
cloudName: azure-germany-westcentral
networkCidr: 10.0.0.0/24
examplePeering:
type: aiven:AzureOrgVpcPeeringConnection
name: example_peering
properties:
organizationId: ${exampleVpc.organizationId}
organizationVpcId: ${exampleVpc.organizationVpcId}
azureSubscriptionId: 12345678-1234-1234-1234-123456789012
vnetName: my-vnet
peerResourceGroup: my-resource-group
peerAzureAppId: 87654321-4321-4321-4321-210987654321
peerAzureTenantId: 11111111-2222-3333-4444-555555555555
Create AzureOrgVpcPeeringConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AzureOrgVpcPeeringConnection(name: string, args: AzureOrgVpcPeeringConnectionArgs, opts?: CustomResourceOptions);
@overload
def AzureOrgVpcPeeringConnection(resource_name: str,
args: AzureOrgVpcPeeringConnectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AzureOrgVpcPeeringConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
azure_subscription_id: Optional[str] = None,
organization_id: Optional[str] = None,
organization_vpc_id: Optional[str] = None,
peer_azure_app_id: Optional[str] = None,
peer_azure_tenant_id: Optional[str] = None,
peer_resource_group: Optional[str] = None,
vnet_name: Optional[str] = None)
func NewAzureOrgVpcPeeringConnection(ctx *Context, name string, args AzureOrgVpcPeeringConnectionArgs, opts ...ResourceOption) (*AzureOrgVpcPeeringConnection, error)
public AzureOrgVpcPeeringConnection(string name, AzureOrgVpcPeeringConnectionArgs args, CustomResourceOptions? opts = null)
public AzureOrgVpcPeeringConnection(String name, AzureOrgVpcPeeringConnectionArgs args)
public AzureOrgVpcPeeringConnection(String name, AzureOrgVpcPeeringConnectionArgs args, CustomResourceOptions options)
type: aiven:AzureOrgVpcPeeringConnection
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. AzureOrgVpcPeeringConnectionArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. AzureOrgVpcPeeringConnectionArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. AzureOrgVpcPeeringConnectionArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. AzureOrgVpcPeeringConnectionArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. AzureOrgVpcPeeringConnectionArgs - 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 azureOrgVpcPeeringConnectionResource = new Aiven.AzureOrgVpcPeeringConnection("azureOrgVpcPeeringConnectionResource", new()
{
AzureSubscriptionId = "string",
OrganizationId = "string",
OrganizationVpcId = "string",
PeerAzureAppId = "string",
PeerAzureTenantId = "string",
PeerResourceGroup = "string",
VnetName = "string",
});
example, err := aiven.NewAzureOrgVpcPeeringConnection(ctx, "azureOrgVpcPeeringConnectionResource", &aiven.AzureOrgVpcPeeringConnectionArgs{
AzureSubscriptionId: pulumi.String("string"),
OrganizationId: pulumi.String("string"),
OrganizationVpcId: pulumi.String("string"),
PeerAzureAppId: pulumi.String("string"),
PeerAzureTenantId: pulumi.String("string"),
PeerResourceGroup: pulumi.String("string"),
VnetName: pulumi.String("string"),
})
var azureOrgVpcPeeringConnectionResource = new AzureOrgVpcPeeringConnection("azureOrgVpcPeeringConnectionResource", AzureOrgVpcPeeringConnectionArgs.builder()
.azureSubscriptionId("string")
.organizationId("string")
.organizationVpcId("string")
.peerAzureAppId("string")
.peerAzureTenantId("string")
.peerResourceGroup("string")
.vnetName("string")
.build());
azure_org_vpc_peering_connection_resource = aiven.AzureOrgVpcPeeringConnection("azureOrgVpcPeeringConnectionResource",
azure_subscription_id="string",
organization_id="string",
organization_vpc_id="string",
peer_azure_app_id="string",
peer_azure_tenant_id="string",
peer_resource_group="string",
vnet_name="string")
const azureOrgVpcPeeringConnectionResource = new aiven.AzureOrgVpcPeeringConnection("azureOrgVpcPeeringConnectionResource", {
azureSubscriptionId: "string",
organizationId: "string",
organizationVpcId: "string",
peerAzureAppId: "string",
peerAzureTenantId: "string",
peerResourceGroup: "string",
vnetName: "string",
});
type: aiven:AzureOrgVpcPeeringConnection
properties:
azureSubscriptionId: string
organizationId: string
organizationVpcId: string
peerAzureAppId: string
peerAzureTenantId: string
peerResourceGroup: string
vnetName: string
AzureOrgVpcPeeringConnection 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 AzureOrgVpcPeeringConnection resource accepts the following input properties:
- Azure
Subscription Id This property is required. Changes to this property will trigger replacement.
- The ID of the Azure subscription in UUID4 format. Changing this property forces recreation of the resource.
- Organization
Id This property is required. Changes to this property will trigger replacement.
- Identifier of the organization.
- Organization
Vpc Id This property is required. Changes to this property will trigger replacement.
- Identifier of the organization VPC.
- Peer
Azure App Id This property is required. Changes to this property will trigger replacement.
- The ID of the Azure app that is allowed to create a peering to the Azure Virtual Network (VNet) in UUID4 format. Changing this property forces recreation of the resource.
- Peer
Azure Tenant Id This property is required. Changes to this property will trigger replacement.
- The Azure tenant ID in UUID4 format. Changing this property forces recreation of the resource.
- Peer
Resource Group This property is required. Changes to this property will trigger replacement.
- The name of the Azure resource group associated with the VNet. Changing this property forces recreation of the resource.
- Vnet
Name This property is required. Changes to this property will trigger replacement.
- The name of the Azure VNet. Changing this property forces recreation of the resource.
- Azure
Subscription Id This property is required. Changes to this property will trigger replacement.
- The ID of the Azure subscription in UUID4 format. Changing this property forces recreation of the resource.
- Organization
Id This property is required. Changes to this property will trigger replacement.
- Identifier of the organization.
- Organization
Vpc Id This property is required. Changes to this property will trigger replacement.
- Identifier of the organization VPC.
- Peer
Azure App Id This property is required. Changes to this property will trigger replacement.
- The ID of the Azure app that is allowed to create a peering to the Azure Virtual Network (VNet) in UUID4 format. Changing this property forces recreation of the resource.
- Peer
Azure Tenant Id This property is required. Changes to this property will trigger replacement.
- The Azure tenant ID in UUID4 format. Changing this property forces recreation of the resource.
- Peer
Resource Group This property is required. Changes to this property will trigger replacement.
- The name of the Azure resource group associated with the VNet. Changing this property forces recreation of the resource.
- Vnet
Name This property is required. Changes to this property will trigger replacement.
- The name of the Azure VNet. Changing this property forces recreation of the resource.
- azure
Subscription Id This property is required. Changes to this property will trigger replacement.
- The ID of the Azure subscription in UUID4 format. Changing this property forces recreation of the resource.
- organization
Id This property is required. Changes to this property will trigger replacement.
- Identifier of the organization.
- organization
Vpc Id This property is required. Changes to this property will trigger replacement.
- Identifier of the organization VPC.
- peer
Azure App Id This property is required. Changes to this property will trigger replacement.
- The ID of the Azure app that is allowed to create a peering to the Azure Virtual Network (VNet) in UUID4 format. Changing this property forces recreation of the resource.
- peer
Azure Tenant Id This property is required. Changes to this property will trigger replacement.
- The Azure tenant ID in UUID4 format. Changing this property forces recreation of the resource.
- peer
Resource Group This property is required. Changes to this property will trigger replacement.
- The name of the Azure resource group associated with the VNet. Changing this property forces recreation of the resource.
- vnet
Name This property is required. Changes to this property will trigger replacement.
- The name of the Azure VNet. Changing this property forces recreation of the resource.
- azure
Subscription Id This property is required. Changes to this property will trigger replacement.
- The ID of the Azure subscription in UUID4 format. Changing this property forces recreation of the resource.
- organization
Id This property is required. Changes to this property will trigger replacement.
- Identifier of the organization.
- organization
Vpc Id This property is required. Changes to this property will trigger replacement.
- Identifier of the organization VPC.
- peer
Azure App Id This property is required. Changes to this property will trigger replacement.
- The ID of the Azure app that is allowed to create a peering to the Azure Virtual Network (VNet) in UUID4 format. Changing this property forces recreation of the resource.
- peer
Azure Tenant Id This property is required. Changes to this property will trigger replacement.
- The Azure tenant ID in UUID4 format. Changing this property forces recreation of the resource.
- peer
Resource Group This property is required. Changes to this property will trigger replacement.
- The name of the Azure resource group associated with the VNet. Changing this property forces recreation of the resource.
- vnet
Name This property is required. Changes to this property will trigger replacement.
- The name of the Azure VNet. Changing this property forces recreation of the resource.
- azure_
subscription_ id This property is required. Changes to this property will trigger replacement.
- The ID of the Azure subscription in UUID4 format. Changing this property forces recreation of the resource.
- organization_
id This property is required. Changes to this property will trigger replacement.
- Identifier of the organization.
- organization_
vpc_ id This property is required. Changes to this property will trigger replacement.
- Identifier of the organization VPC.
- peer_
azure_ app_ id This property is required. Changes to this property will trigger replacement.
- The ID of the Azure app that is allowed to create a peering to the Azure Virtual Network (VNet) in UUID4 format. Changing this property forces recreation of the resource.
- peer_
azure_ tenant_ id This property is required. Changes to this property will trigger replacement.
- The Azure tenant ID in UUID4 format. Changing this property forces recreation of the resource.
- peer_
resource_ group This property is required. Changes to this property will trigger replacement.
- The name of the Azure resource group associated with the VNet. Changing this property forces recreation of the resource.
- vnet_
name This property is required. Changes to this property will trigger replacement.
- The name of the Azure VNet. Changing this property forces recreation of the resource.
- azure
Subscription Id This property is required. Changes to this property will trigger replacement.
- The ID of the Azure subscription in UUID4 format. Changing this property forces recreation of the resource.
- organization
Id This property is required. Changes to this property will trigger replacement.
- Identifier of the organization.
- organization
Vpc Id This property is required. Changes to this property will trigger replacement.
- Identifier of the organization VPC.
- peer
Azure App Id This property is required. Changes to this property will trigger replacement.
- The ID of the Azure app that is allowed to create a peering to the Azure Virtual Network (VNet) in UUID4 format. Changing this property forces recreation of the resource.
- peer
Azure Tenant Id This property is required. Changes to this property will trigger replacement.
- The Azure tenant ID in UUID4 format. Changing this property forces recreation of the resource.
- peer
Resource Group This property is required. Changes to this property will trigger replacement.
- The name of the Azure resource group associated with the VNet. Changing this property forces recreation of the resource.
- vnet
Name This property is required. Changes to this property will trigger replacement.
- The name of the Azure VNet. Changing this property forces recreation of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the AzureOrgVpcPeeringConnection resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Peering
Connection stringId - The ID of the cloud provider for the peering connection.
- State string
- State of the peering connection
- Id string
- The provider-assigned unique ID for this managed resource.
- Peering
Connection stringId - The ID of the cloud provider for the peering connection.
- State string
- State of the peering connection
- id String
- The provider-assigned unique ID for this managed resource.
- peering
Connection StringId - The ID of the cloud provider for the peering connection.
- state String
- State of the peering connection
- id string
- The provider-assigned unique ID for this managed resource.
- peering
Connection stringId - The ID of the cloud provider for the peering connection.
- state string
- State of the peering connection
- id str
- The provider-assigned unique ID for this managed resource.
- peering_
connection_ strid - The ID of the cloud provider for the peering connection.
- state str
- State of the peering connection
- id String
- The provider-assigned unique ID for this managed resource.
- peering
Connection StringId - The ID of the cloud provider for the peering connection.
- state String
- State of the peering connection
Look up Existing AzureOrgVpcPeeringConnection Resource
Get an existing AzureOrgVpcPeeringConnection 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?: AzureOrgVpcPeeringConnectionState, opts?: CustomResourceOptions): AzureOrgVpcPeeringConnection
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
azure_subscription_id: Optional[str] = None,
organization_id: Optional[str] = None,
organization_vpc_id: Optional[str] = None,
peer_azure_app_id: Optional[str] = None,
peer_azure_tenant_id: Optional[str] = None,
peer_resource_group: Optional[str] = None,
peering_connection_id: Optional[str] = None,
state: Optional[str] = None,
vnet_name: Optional[str] = None) -> AzureOrgVpcPeeringConnection
func GetAzureOrgVpcPeeringConnection(ctx *Context, name string, id IDInput, state *AzureOrgVpcPeeringConnectionState, opts ...ResourceOption) (*AzureOrgVpcPeeringConnection, error)
public static AzureOrgVpcPeeringConnection Get(string name, Input<string> id, AzureOrgVpcPeeringConnectionState? state, CustomResourceOptions? opts = null)
public static AzureOrgVpcPeeringConnection get(String name, Output<String> id, AzureOrgVpcPeeringConnectionState state, CustomResourceOptions options)
resources: _: type: aiven:AzureOrgVpcPeeringConnection get: id: ${id}
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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.
- Azure
Subscription Id Changes to this property will trigger replacement.
- The ID of the Azure subscription in UUID4 format. Changing this property forces recreation of the resource.
- Organization
Id Changes to this property will trigger replacement.
- Identifier of the organization.
- Organization
Vpc Id Changes to this property will trigger replacement.
- Identifier of the organization VPC.
- Peer
Azure App Id Changes to this property will trigger replacement.
- The ID of the Azure app that is allowed to create a peering to the Azure Virtual Network (VNet) in UUID4 format. Changing this property forces recreation of the resource.
- Peer
Azure Tenant Id Changes to this property will trigger replacement.
- The Azure tenant ID in UUID4 format. Changing this property forces recreation of the resource.
- Peer
Resource Group Changes to this property will trigger replacement.
- The name of the Azure resource group associated with the VNet. Changing this property forces recreation of the resource.
- Peering
Connection stringId - The ID of the cloud provider for the peering connection.
- State string
- State of the peering connection
- Vnet
Name Changes to this property will trigger replacement.
- The name of the Azure VNet. Changing this property forces recreation of the resource.
- Azure
Subscription Id Changes to this property will trigger replacement.
- The ID of the Azure subscription in UUID4 format. Changing this property forces recreation of the resource.
- Organization
Id Changes to this property will trigger replacement.
- Identifier of the organization.
- Organization
Vpc Id Changes to this property will trigger replacement.
- Identifier of the organization VPC.
- Peer
Azure App Id Changes to this property will trigger replacement.
- The ID of the Azure app that is allowed to create a peering to the Azure Virtual Network (VNet) in UUID4 format. Changing this property forces recreation of the resource.
- Peer
Azure Tenant Id Changes to this property will trigger replacement.
- The Azure tenant ID in UUID4 format. Changing this property forces recreation of the resource.
- Peer
Resource Group Changes to this property will trigger replacement.
- The name of the Azure resource group associated with the VNet. Changing this property forces recreation of the resource.
- Peering
Connection stringId - The ID of the cloud provider for the peering connection.
- State string
- State of the peering connection
- Vnet
Name Changes to this property will trigger replacement.
- The name of the Azure VNet. Changing this property forces recreation of the resource.
- azure
Subscription Id Changes to this property will trigger replacement.
- The ID of the Azure subscription in UUID4 format. Changing this property forces recreation of the resource.
- organization
Id Changes to this property will trigger replacement.
- Identifier of the organization.
- organization
Vpc Id Changes to this property will trigger replacement.
- Identifier of the organization VPC.
- peer
Azure App Id Changes to this property will trigger replacement.
- The ID of the Azure app that is allowed to create a peering to the Azure Virtual Network (VNet) in UUID4 format. Changing this property forces recreation of the resource.
- peer
Azure Tenant Id Changes to this property will trigger replacement.
- The Azure tenant ID in UUID4 format. Changing this property forces recreation of the resource.
- peer
Resource Group Changes to this property will trigger replacement.
- The name of the Azure resource group associated with the VNet. Changing this property forces recreation of the resource.
- peering
Connection StringId - The ID of the cloud provider for the peering connection.
- state String
- State of the peering connection
- vnet
Name Changes to this property will trigger replacement.
- The name of the Azure VNet. Changing this property forces recreation of the resource.
- azure
Subscription Id Changes to this property will trigger replacement.
- The ID of the Azure subscription in UUID4 format. Changing this property forces recreation of the resource.
- organization
Id Changes to this property will trigger replacement.
- Identifier of the organization.
- organization
Vpc Id Changes to this property will trigger replacement.
- Identifier of the organization VPC.
- peer
Azure App Id Changes to this property will trigger replacement.
- The ID of the Azure app that is allowed to create a peering to the Azure Virtual Network (VNet) in UUID4 format. Changing this property forces recreation of the resource.
- peer
Azure Tenant Id Changes to this property will trigger replacement.
- The Azure tenant ID in UUID4 format. Changing this property forces recreation of the resource.
- peer
Resource Group Changes to this property will trigger replacement.
- The name of the Azure resource group associated with the VNet. Changing this property forces recreation of the resource.
- peering
Connection stringId - The ID of the cloud provider for the peering connection.
- state string
- State of the peering connection
- vnet
Name Changes to this property will trigger replacement.
- The name of the Azure VNet. Changing this property forces recreation of the resource.
- azure_
subscription_ id Changes to this property will trigger replacement.
- The ID of the Azure subscription in UUID4 format. Changing this property forces recreation of the resource.
- organization_
id Changes to this property will trigger replacement.
- Identifier of the organization.
- organization_
vpc_ id Changes to this property will trigger replacement.
- Identifier of the organization VPC.
- peer_
azure_ app_ id Changes to this property will trigger replacement.
- The ID of the Azure app that is allowed to create a peering to the Azure Virtual Network (VNet) in UUID4 format. Changing this property forces recreation of the resource.
- peer_
azure_ tenant_ id Changes to this property will trigger replacement.
- The Azure tenant ID in UUID4 format. Changing this property forces recreation of the resource.
- peer_
resource_ group Changes to this property will trigger replacement.
- The name of the Azure resource group associated with the VNet. Changing this property forces recreation of the resource.
- peering_
connection_ strid - The ID of the cloud provider for the peering connection.
- state str
- State of the peering connection
- vnet_
name Changes to this property will trigger replacement.
- The name of the Azure VNet. Changing this property forces recreation of the resource.
- azure
Subscription Id Changes to this property will trigger replacement.
- The ID of the Azure subscription in UUID4 format. Changing this property forces recreation of the resource.
- organization
Id Changes to this property will trigger replacement.
- Identifier of the organization.
- organization
Vpc Id Changes to this property will trigger replacement.
- Identifier of the organization VPC.
- peer
Azure App Id Changes to this property will trigger replacement.
- The ID of the Azure app that is allowed to create a peering to the Azure Virtual Network (VNet) in UUID4 format. Changing this property forces recreation of the resource.
- peer
Azure Tenant Id Changes to this property will trigger replacement.
- The Azure tenant ID in UUID4 format. Changing this property forces recreation of the resource.
- peer
Resource Group Changes to this property will trigger replacement.
- The name of the Azure resource group associated with the VNet. Changing this property forces recreation of the resource.
- peering
Connection StringId - The ID of the cloud provider for the peering connection.
- state String
- State of the peering connection
- vnet
Name Changes to this property will trigger replacement.
- The name of the Azure VNet. Changing this property forces recreation of the resource.
Import
$ pulumi import aiven:index/azureOrgVpcPeeringConnection:AzureOrgVpcPeeringConnection example ORGANIZATION_ID/ORGANIZATION_VPC_ID/AZURE_SUBSCRIPTION_ID/VNET_NAME/RESOURCE_GROUP
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.