VpcIngressConnection

class VpcIngressConnection : KotlinCustomResource

Manages an App Runner VPC Ingress Connection.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.apprunner.VpcIngressConnection;
import com.pulumi.aws.apprunner.VpcIngressConnectionArgs;
import com.pulumi.aws.apprunner.inputs.VpcIngressConnectionIngressVpcConfigurationArgs;
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 example = new VpcIngressConnection("example", VpcIngressConnectionArgs.builder()
.serviceArn(aws_apprunner_service.example().arn())
.ingressVpcConfiguration(VpcIngressConnectionIngressVpcConfigurationArgs.builder()
.vpcId(aws_default_vpc.default().id())
.vpcEndpointId(aws_vpc_endpoint.apprunner().id())
.build())
.tags(Map.of("foo", "bar"))
.build());
}
}

Import

App Runner VPC Ingress Connection can be imported by using the arn, e.g.,

$ pulumi import aws:apprunner/vpcIngressConnection:VpcIngressConnection example "arn:aws:apprunner:us-west-2:837424938642:vpcingressconnection/example/b379f86381d74825832c2e82080342fa"

Properties

Link copied to clipboard
val arn: Output<String>

The Amazon Resource Name (ARN) of the VPC Ingress Connection.

Link copied to clipboard
val domainName: Output<String>

The domain name associated with the VPC Ingress Connection resource.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

Specifications for the customer’s Amazon VPC and the related AWS PrivateLink VPC endpoint that are used to create the VPC Ingress Connection resource. See Ingress VPC Configuration below for more details.

Link copied to clipboard
val name: Output<String>

A name for the VPC Ingress Connection resource. It must be unique across all the active VPC Ingress Connections in your AWS account in the AWS Region.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val serviceArn: Output<String>

The Amazon Resource Name (ARN) for this App Runner service that is used to create the VPC Ingress Connection resource.

Link copied to clipboard
val status: Output<String>

The current status of the VPC Ingress Connection.

Link copied to clipboard
val tags: Output<Map<String, String>>?

Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val urn: Output<String>