hcp.getAwsNetworkPeering
Explore with Pulumi AI
The AWS network peering data source provides information about an existing network peering between an HVN and a peer AWS VPC.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Hcp = Pulumi.Hcp;
return await Deployment.RunAsync(() =>
{
var test = Hcp.GetAwsNetworkPeering.Invoke(new()
{
HvnId = @var.Hvn_id,
PeeringId = @var.Peering_id,
WaitForActiveState = true,
});
});
package main
import (
"github.com/grapl-security/pulumi-hcp/sdk/go/hcp"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := hcp.LookupAwsNetworkPeering(ctx, &GetAwsNetworkPeeringArgs{
HvnId: _var.Hvn_id,
PeeringId: _var.Peering_id,
WaitForActiveState: pulumi.BoolRef(true),
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.hcp.HcpFunctions;
import com.pulumi.hcp.inputs.GetAwsNetworkPeeringArgs;
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 = HcpFunctions.getAwsNetworkPeering(GetAwsNetworkPeeringArgs.builder()
.hvnId(var_.hvn_id())
.peeringId(var_.peering_id())
.waitForActiveState(true)
.build());
}
}
import pulumi
import pulumi_hcp as hcp
test = hcp.get_aws_network_peering(hvn_id=var["hvn_id"],
peering_id=var["peering_id"],
wait_for_active_state=True)
import * as pulumi from "@pulumi/pulumi";
import * as hcp from "@pulumi/hcp";
const test = hcp.getAwsNetworkPeering({
hvnId: _var.hvn_id,
peeringId: _var.peering_id,
waitForActiveState: true,
});
variables:
test:
Fn::Invoke:
Function: hcp:getAwsNetworkPeering
Arguments:
hvnId: ${var.hvn_id}
peeringId: ${var.peering_id}
waitForActiveState: true
Using getAwsNetworkPeering
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 getAwsNetworkPeering(args: GetAwsNetworkPeeringArgs, opts?: InvokeOptions): Promise<GetAwsNetworkPeeringResult>
function getAwsNetworkPeeringOutput(args: GetAwsNetworkPeeringOutputArgs, opts?: InvokeOptions): Output<GetAwsNetworkPeeringResult>
def get_aws_network_peering(hvn_id: Optional[str] = None,
peering_id: Optional[str] = None,
wait_for_active_state: Optional[bool] = None,
opts: Optional[InvokeOptions] = None) -> GetAwsNetworkPeeringResult
def get_aws_network_peering_output(hvn_id: Optional[pulumi.Input[str]] = None,
peering_id: Optional[pulumi.Input[str]] = None,
wait_for_active_state: Optional[pulumi.Input[bool]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAwsNetworkPeeringResult]
func LookupAwsNetworkPeering(ctx *Context, args *LookupAwsNetworkPeeringArgs, opts ...InvokeOption) (*LookupAwsNetworkPeeringResult, error)
func LookupAwsNetworkPeeringOutput(ctx *Context, args *LookupAwsNetworkPeeringOutputArgs, opts ...InvokeOption) LookupAwsNetworkPeeringResultOutput
> Note: This function is named LookupAwsNetworkPeering
in the Go SDK.
public static class GetAwsNetworkPeering
{
public static Task<GetAwsNetworkPeeringResult> InvokeAsync(GetAwsNetworkPeeringArgs args, InvokeOptions? opts = null)
public static Output<GetAwsNetworkPeeringResult> Invoke(GetAwsNetworkPeeringInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAwsNetworkPeeringResult> getAwsNetworkPeering(GetAwsNetworkPeeringArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: hcp:index/getAwsNetworkPeering:getAwsNetworkPeering
arguments:
# arguments dictionary
The following arguments are supported:
- Hvn
Id string The ID of the HashiCorp Virtual Network (HVN).
- Peering
Id string The ID of the network peering.
- Wait
For boolActive State
- Hvn
Id string The ID of the HashiCorp Virtual Network (HVN).
- Peering
Id string The ID of the network peering.
- Wait
For boolActive State
- hvn
Id String The ID of the HashiCorp Virtual Network (HVN).
- peering
Id String The ID of the network peering.
- wait
For BooleanActive State
- hvn
Id string The ID of the HashiCorp Virtual Network (HVN).
- peering
Id string The ID of the network peering.
- wait
For booleanActive State
- hvn_
id str The ID of the HashiCorp Virtual Network (HVN).
- peering_
id str The ID of the network peering.
- wait_
for_ boolactive_ state
- hvn
Id String The ID of the HashiCorp Virtual Network (HVN).
- peering
Id String The ID of the network peering.
- wait
For BooleanActive State
getAwsNetworkPeering Result
The following output properties are available:
- Created
At string The time that the network peering was created.
- Expires
At string The time after which the network peering will be considered expired if it hasn't transitioned into
ACCEPTED
orACTIVE
state.- Hvn
Id string The ID of the HashiCorp Virtual Network (HVN).
- Id string
The provider-assigned unique ID for this managed resource.
- Organization
Id string The ID of the HCP organization where the network peering is located. Always matches the HVN's organization.
- Peer
Account stringId The account ID of the peer VPC in AWS.
- Peer
Vpc stringId The ID of the peer VPC in AWS.
- Peer
Vpc stringRegion The region of the peer VPC in AWS.
- Peering
Id string The ID of the network peering.
- Project
Id string The ID of the HCP project where the network peering is located. Always matches the HVN's project.
- Provider
Peering stringId The peering connection ID used by AWS.
- Self
Link string A unique URL identifying the network peering.
- State string
The state of the network peering.
- Wait
For boolActive State
- Created
At string The time that the network peering was created.
- Expires
At string The time after which the network peering will be considered expired if it hasn't transitioned into
ACCEPTED
orACTIVE
state.- Hvn
Id string The ID of the HashiCorp Virtual Network (HVN).
- Id string
The provider-assigned unique ID for this managed resource.
- Organization
Id string The ID of the HCP organization where the network peering is located. Always matches the HVN's organization.
- Peer
Account stringId The account ID of the peer VPC in AWS.
- Peer
Vpc stringId The ID of the peer VPC in AWS.
- Peer
Vpc stringRegion The region of the peer VPC in AWS.
- Peering
Id string The ID of the network peering.
- Project
Id string The ID of the HCP project where the network peering is located. Always matches the HVN's project.
- Provider
Peering stringId The peering connection ID used by AWS.
- Self
Link string A unique URL identifying the network peering.
- State string
The state of the network peering.
- Wait
For boolActive State
- created
At String The time that the network peering was created.
- expires
At String The time after which the network peering will be considered expired if it hasn't transitioned into
ACCEPTED
orACTIVE
state.- hvn
Id String The ID of the HashiCorp Virtual Network (HVN).
- id String
The provider-assigned unique ID for this managed resource.
- organization
Id String The ID of the HCP organization where the network peering is located. Always matches the HVN's organization.
- peer
Account StringId The account ID of the peer VPC in AWS.
- peer
Vpc StringId The ID of the peer VPC in AWS.
- peer
Vpc StringRegion The region of the peer VPC in AWS.
- peering
Id String The ID of the network peering.
- project
Id String The ID of the HCP project where the network peering is located. Always matches the HVN's project.
- provider
Peering StringId The peering connection ID used by AWS.
- self
Link String A unique URL identifying the network peering.
- state String
The state of the network peering.
- wait
For BooleanActive State
- created
At string The time that the network peering was created.
- expires
At string The time after which the network peering will be considered expired if it hasn't transitioned into
ACCEPTED
orACTIVE
state.- hvn
Id string The ID of the HashiCorp Virtual Network (HVN).
- id string
The provider-assigned unique ID for this managed resource.
- organization
Id string The ID of the HCP organization where the network peering is located. Always matches the HVN's organization.
- peer
Account stringId The account ID of the peer VPC in AWS.
- peer
Vpc stringId The ID of the peer VPC in AWS.
- peer
Vpc stringRegion The region of the peer VPC in AWS.
- peering
Id string The ID of the network peering.
- project
Id string The ID of the HCP project where the network peering is located. Always matches the HVN's project.
- provider
Peering stringId The peering connection ID used by AWS.
- self
Link string A unique URL identifying the network peering.
- state string
The state of the network peering.
- wait
For booleanActive State
- created_
at str The time that the network peering was created.
- expires_
at str The time after which the network peering will be considered expired if it hasn't transitioned into
ACCEPTED
orACTIVE
state.- hvn_
id str The ID of the HashiCorp Virtual Network (HVN).
- id str
The provider-assigned unique ID for this managed resource.
- organization_
id str The ID of the HCP organization where the network peering is located. Always matches the HVN's organization.
- peer_
account_ strid The account ID of the peer VPC in AWS.
- peer_
vpc_ strid The ID of the peer VPC in AWS.
- peer_
vpc_ strregion The region of the peer VPC in AWS.
- peering_
id str The ID of the network peering.
- project_
id str The ID of the HCP project where the network peering is located. Always matches the HVN's project.
- provider_
peering_ strid The peering connection ID used by AWS.
- self_
link str A unique URL identifying the network peering.
- state str
The state of the network peering.
- wait_
for_ boolactive_ state
- created
At String The time that the network peering was created.
- expires
At String The time after which the network peering will be considered expired if it hasn't transitioned into
ACCEPTED
orACTIVE
state.- hvn
Id String The ID of the HashiCorp Virtual Network (HVN).
- id String
The provider-assigned unique ID for this managed resource.
- organization
Id String The ID of the HCP organization where the network peering is located. Always matches the HVN's organization.
- peer
Account StringId The account ID of the peer VPC in AWS.
- peer
Vpc StringId The ID of the peer VPC in AWS.
- peer
Vpc StringRegion The region of the peer VPC in AWS.
- peering
Id String The ID of the network peering.
- project
Id String The ID of the HCP project where the network peering is located. Always matches the HVN's project.
- provider
Peering StringId The peering connection ID used by AWS.
- self
Link String A unique URL identifying the network peering.
- state String
The state of the network peering.
- wait
For BooleanActive State
Package Details
- Repository
- hcp grapl-security/pulumi-hcp
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
hcp
Terraform Provider.