UNPKG

@pulumi/awsx

Version:

[![Actions Status](https://github.com/pulumi/pulumi-awsx/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-awsx/actions) [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fur

28 lines (27 loc) 1 kB
import * as pulumi from "@pulumi/pulumi"; /** * [NOT YET IMPLEMENTED] Get the Default VPC for a region. */ /** @deprecated Waiting for https://github.com/pulumi/pulumi/issues/7583. Use the DefaultVpc resource until resolved. */ export declare function getDefaultVpc(args?: GetDefaultVpcArgs, opts?: pulumi.InvokeOptions): Promise<GetDefaultVpcResult>; /** * Arguments for getting the default VPC */ export interface GetDefaultVpcArgs { } /** * Outputs from the default VPC configuration */ export interface GetDefaultVpcResult { readonly privateSubnetIds: string[]; readonly publicSubnetIds: string[]; /** * The VPC ID for the default VPC */ readonly vpcId: string; } /** * [NOT YET IMPLEMENTED] Get the Default VPC for a region. */ /** @deprecated Waiting for https://github.com/pulumi/pulumi/issues/7583. Use the DefaultVpc resource until resolved. */ export declare function getDefaultVpcOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDefaultVpcResult>;