Try AWS Native preview for resources not in the classic version.
aws.verifiedaccess.Endpoint
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Resource for managing an AWS EC2 (Elastic Compute Cloud) Verified Access Endpoint.
Example Usage
ALB Example
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.verifiedaccess.Endpoint("example", {
applicationDomain: "example.com",
attachmentType: "vpc",
description: "example",
domainCertificateArn: exampleAwsAcmCertificate.arn,
endpointDomainPrefix: "example",
endpointType: "load-balancer",
loadBalancerOptions: {
loadBalancerArn: exampleAwsLb.arn,
port: 443,
protocol: "https",
subnetIds: .map(subnet => (subnet.id)),
},
securityGroupIds: [exampleAwsSecurityGroup.id],
verifiedAccessGroupId: exampleAwsVerifiedaccessGroup.id,
});
import pulumi
import pulumi_aws as aws
example = aws.verifiedaccess.Endpoint("example",
application_domain="example.com",
attachment_type="vpc",
description="example",
domain_certificate_arn=example_aws_acm_certificate["arn"],
endpoint_domain_prefix="example",
endpoint_type="load-balancer",
load_balancer_options={
"loadBalancerArn": example_aws_lb["arn"],
"port": 443,
"protocol": "https",
"subnetIds": [subnet["id"] for subnet in public],
},
security_group_ids=[example_aws_security_group["id"]],
verified_access_group_id=example_aws_verifiedaccess_group["id"])
Coming soon!
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.VerifiedAccess.Endpoint("example", new()
{
ApplicationDomain = "example.com",
AttachmentType = "vpc",
Description = "example",
DomainCertificateArn = exampleAwsAcmCertificate.Arn,
EndpointDomainPrefix = "example",
EndpointType = "load-balancer",
LoadBalancerOptions = new Aws.VerifiedAccess.Inputs.EndpointLoadBalancerOptionsArgs
{
LoadBalancerArn = exampleAwsLb.Arn,
Port = 443,
Protocol = "https",
SubnetIds = .Select(subnet =>
{
return subnet.Id;
}).ToList(),
},
SecurityGroupIds = new[]
{
exampleAwsSecurityGroup.Id,
},
VerifiedAccessGroupId = exampleAwsVerifiedaccessGroup.Id,
});
});
Coming soon!
Coming soon!
Network Interface Example
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.verifiedaccess.Endpoint("example", {
applicationDomain: "example.com",
attachmentType: "vpc",
description: "example",
domainCertificateArn: exampleAwsAcmCertificate.arn,
endpointDomainPrefix: "example",
endpointType: "network-interface",
networkInterfaceOptions: {
networkInterfaceId: exampleAwsNetworkInterface.id,
port: 443,
protocol: "https",
},
securityGroupIds: [exampleAwsSecurityGroup.id],
verifiedAccessGroupId: exampleAwsVerifiedaccessGroup.id,
});
import pulumi
import pulumi_aws as aws
example = aws.verifiedaccess.Endpoint("example",
application_domain="example.com",
attachment_type="vpc",
description="example",
domain_certificate_arn=example_aws_acm_certificate["arn"],
endpoint_domain_prefix="example",
endpoint_type="network-interface",
network_interface_options={
"networkInterfaceId": example_aws_network_interface["id"],
"port": 443,
"protocol": "https",
},
security_group_ids=[example_aws_security_group["id"]],
verified_access_group_id=example_aws_verifiedaccess_group["id"])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/verifiedaccess"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := verifiedaccess.NewEndpoint(ctx, "example", &verifiedaccess.EndpointArgs{
ApplicationDomain: pulumi.String("example.com"),
AttachmentType: pulumi.String("vpc"),
Description: pulumi.String("example"),
DomainCertificateArn: pulumi.Any(exampleAwsAcmCertificate.Arn),
EndpointDomainPrefix: pulumi.String("example"),
EndpointType: pulumi.String("network-interface"),
NetworkInterfaceOptions: &verifiedaccess.EndpointNetworkInterfaceOptionsArgs{
NetworkInterfaceId: pulumi.Any(exampleAwsNetworkInterface.Id),
Port: pulumi.Int(443),
Protocol: pulumi.String("https"),
},
SecurityGroupIds: pulumi.StringArray{
exampleAwsSecurityGroup.Id,
},
VerifiedAccessGroupId: pulumi.Any(exampleAwsVerifiedaccessGroup.Id),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.VerifiedAccess.Endpoint("example", new()
{
ApplicationDomain = "example.com",
AttachmentType = "vpc",
Description = "example",
DomainCertificateArn = exampleAwsAcmCertificate.Arn,
EndpointDomainPrefix = "example",
EndpointType = "network-interface",
NetworkInterfaceOptions = new Aws.VerifiedAccess.Inputs.EndpointNetworkInterfaceOptionsArgs
{
NetworkInterfaceId = exampleAwsNetworkInterface.Id,
Port = 443,
Protocol = "https",
},
SecurityGroupIds = new[]
{
exampleAwsSecurityGroup.Id,
},
VerifiedAccessGroupId = exampleAwsVerifiedaccessGroup.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.verifiedaccess.Endpoint;
import com.pulumi.aws.verifiedaccess.EndpointArgs;
import com.pulumi.aws.verifiedaccess.inputs.EndpointNetworkInterfaceOptionsArgs;
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 Endpoint("example", EndpointArgs.builder()
.applicationDomain("example.com")
.attachmentType("vpc")
.description("example")
.domainCertificateArn(exampleAwsAcmCertificate.arn())
.endpointDomainPrefix("example")
.endpointType("network-interface")
.networkInterfaceOptions(EndpointNetworkInterfaceOptionsArgs.builder()
.networkInterfaceId(exampleAwsNetworkInterface.id())
.port(443)
.protocol("https")
.build())
.securityGroupIds(exampleAwsSecurityGroup.id())
.verifiedAccessGroupId(exampleAwsVerifiedaccessGroup.id())
.build());
}
}
resources:
example:
type: aws:verifiedaccess:Endpoint
properties:
applicationDomain: example.com
attachmentType: vpc
description: example
domainCertificateArn: ${exampleAwsAcmCertificate.arn}
endpointDomainPrefix: example
endpointType: network-interface
networkInterfaceOptions:
networkInterfaceId: ${exampleAwsNetworkInterface.id}
port: 443
protocol: https
securityGroupIds:
- ${exampleAwsSecurityGroup.id}
verifiedAccessGroupId: ${exampleAwsVerifiedaccessGroup.id}
Create Endpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Endpoint(name: string, args: EndpointArgs, opts?: CustomResourceOptions);
@overload
def Endpoint(resource_name: str,
args: EndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Endpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
application_domain: Optional[str] = None,
attachment_type: Optional[str] = None,
verified_access_group_id: Optional[str] = None,
domain_certificate_arn: Optional[str] = None,
endpoint_domain_prefix: Optional[str] = None,
endpoint_type: Optional[str] = None,
load_balancer_options: Optional[EndpointLoadBalancerOptionsArgs] = None,
network_interface_options: Optional[EndpointNetworkInterfaceOptionsArgs] = None,
policy_document: Optional[str] = None,
security_group_ids: Optional[Sequence[str]] = None,
sse_specification: Optional[EndpointSseSpecificationArgs] = None,
tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None)
func NewEndpoint(ctx *Context, name string, args EndpointArgs, opts ...ResourceOption) (*Endpoint, error)
public Endpoint(string name, EndpointArgs args, CustomResourceOptions? opts = null)
public Endpoint(String name, EndpointArgs args)
public Endpoint(String name, EndpointArgs args, CustomResourceOptions options)
type: aws:verifiedaccess:Endpoint
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 EndpointArgs
- 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 EndpointArgs
- 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 EndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EndpointArgs
- 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 exampleendpointResourceResourceFromVerifiedaccessendpoint = new Aws.VerifiedAccess.Endpoint("exampleendpointResourceResourceFromVerifiedaccessendpoint", new()
{
ApplicationDomain = "string",
AttachmentType = "string",
VerifiedAccessGroupId = "string",
DomainCertificateArn = "string",
EndpointDomainPrefix = "string",
EndpointType = "string",
LoadBalancerOptions = new Aws.VerifiedAccess.Inputs.EndpointLoadBalancerOptionsArgs
{
LoadBalancerArn = "string",
Port = 0,
Protocol = "string",
SubnetIds = new[]
{
"string",
},
},
NetworkInterfaceOptions = new Aws.VerifiedAccess.Inputs.EndpointNetworkInterfaceOptionsArgs
{
NetworkInterfaceId = "string",
Port = 0,
Protocol = "string",
},
PolicyDocument = "string",
SecurityGroupIds = new[]
{
"string",
},
SseSpecification = new Aws.VerifiedAccess.Inputs.EndpointSseSpecificationArgs
{
CustomerManagedKeyEnabled = false,
KmsKeyArn = "string",
},
Tags =
{
{ "string", "string" },
},
Description = "string",
});
example, err := verifiedaccess.NewEndpoint(ctx, "exampleendpointResourceResourceFromVerifiedaccessendpoint", &verifiedaccess.EndpointArgs{
ApplicationDomain: pulumi.String("string"),
AttachmentType: pulumi.String("string"),
VerifiedAccessGroupId: pulumi.String("string"),
DomainCertificateArn: pulumi.String("string"),
EndpointDomainPrefix: pulumi.String("string"),
EndpointType: pulumi.String("string"),
LoadBalancerOptions: &verifiedaccess.EndpointLoadBalancerOptionsArgs{
LoadBalancerArn: pulumi.String("string"),
Port: pulumi.Int(0),
Protocol: pulumi.String("string"),
SubnetIds: pulumi.StringArray{
pulumi.String("string"),
},
},
NetworkInterfaceOptions: &verifiedaccess.EndpointNetworkInterfaceOptionsArgs{
NetworkInterfaceId: pulumi.String("string"),
Port: pulumi.Int(0),
Protocol: pulumi.String("string"),
},
PolicyDocument: pulumi.String("string"),
SecurityGroupIds: pulumi.StringArray{
pulumi.String("string"),
},
SseSpecification: &verifiedaccess.EndpointSseSpecificationArgs{
CustomerManagedKeyEnabled: pulumi.Bool(false),
KmsKeyArn: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
})
var exampleendpointResourceResourceFromVerifiedaccessendpoint = new Endpoint("exampleendpointResourceResourceFromVerifiedaccessendpoint", EndpointArgs.builder()
.applicationDomain("string")
.attachmentType("string")
.verifiedAccessGroupId("string")
.domainCertificateArn("string")
.endpointDomainPrefix("string")
.endpointType("string")
.loadBalancerOptions(EndpointLoadBalancerOptionsArgs.builder()
.loadBalancerArn("string")
.port(0)
.protocol("string")
.subnetIds("string")
.build())
.networkInterfaceOptions(EndpointNetworkInterfaceOptionsArgs.builder()
.networkInterfaceId("string")
.port(0)
.protocol("string")
.build())
.policyDocument("string")
.securityGroupIds("string")
.sseSpecification(EndpointSseSpecificationArgs.builder()
.customerManagedKeyEnabled(false)
.kmsKeyArn("string")
.build())
.tags(Map.of("string", "string"))
.description("string")
.build());
exampleendpoint_resource_resource_from_verifiedaccessendpoint = aws.verifiedaccess.Endpoint("exampleendpointResourceResourceFromVerifiedaccessendpoint",
application_domain="string",
attachment_type="string",
verified_access_group_id="string",
domain_certificate_arn="string",
endpoint_domain_prefix="string",
endpoint_type="string",
load_balancer_options={
"loadBalancerArn": "string",
"port": 0,
"protocol": "string",
"subnetIds": ["string"],
},
network_interface_options={
"networkInterfaceId": "string",
"port": 0,
"protocol": "string",
},
policy_document="string",
security_group_ids=["string"],
sse_specification={
"customerManagedKeyEnabled": False,
"kmsKeyArn": "string",
},
tags={
"string": "string",
},
description="string")
const exampleendpointResourceResourceFromVerifiedaccessendpoint = new aws.verifiedaccess.Endpoint("exampleendpointResourceResourceFromVerifiedaccessendpoint", {
applicationDomain: "string",
attachmentType: "string",
verifiedAccessGroupId: "string",
domainCertificateArn: "string",
endpointDomainPrefix: "string",
endpointType: "string",
loadBalancerOptions: {
loadBalancerArn: "string",
port: 0,
protocol: "string",
subnetIds: ["string"],
},
networkInterfaceOptions: {
networkInterfaceId: "string",
port: 0,
protocol: "string",
},
policyDocument: "string",
securityGroupIds: ["string"],
sseSpecification: {
customerManagedKeyEnabled: false,
kmsKeyArn: "string",
},
tags: {
string: "string",
},
description: "string",
});
type: aws:verifiedaccess:Endpoint
properties:
applicationDomain: string
attachmentType: string
description: string
domainCertificateArn: string
endpointDomainPrefix: string
endpointType: string
loadBalancerOptions:
loadBalancerArn: string
port: 0
protocol: string
subnetIds:
- string
networkInterfaceOptions:
networkInterfaceId: string
port: 0
protocol: string
policyDocument: string
securityGroupIds:
- string
sseSpecification:
customerManagedKeyEnabled: false
kmsKeyArn: string
tags:
string: string
verifiedAccessGroupId: string
Endpoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Endpoint resource accepts the following input properties:
- Application
Domain string - The DNS name for users to reach your application.
- Attachment
Type string - The type of attachment. Currently, only
vpc
is supported. - Domain
Certificate stringArn - The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.
- Endpoint
Domain stringPrefix - A custom identifier that is prepended to the DNS name that is generated for the endpoint.
- Endpoint
Type string - The type of Verified Access endpoint to create. Currently
load-balancer
ornetwork-interface
are supported. - Verified
Access stringGroup Id The ID of the Verified Access group to associate the endpoint with.
The following arguments are optional:
- Description string
- A description for the Verified Access endpoint.
- Load
Balancer EndpointOptions Load Balancer Options - The load balancer details. This parameter is required if the endpoint type is
load-balancer
. - Network
Interface EndpointOptions Network Interface Options - The network interface details. This parameter is required if the endpoint type is
network-interface
. - Policy
Document string - The policy document that is associated with this resource.
- Security
Group List<string>Ids - List of the the security groups IDs to associate with the Verified Access endpoint.
- Sse
Specification EndpointSse Specification - The options in use for server side encryption.
- Dictionary<string, string>
- Key-value tags for the Verified Access Endpoint. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- Application
Domain string - The DNS name for users to reach your application.
- Attachment
Type string - The type of attachment. Currently, only
vpc
is supported. - Domain
Certificate stringArn - The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.
- Endpoint
Domain stringPrefix - A custom identifier that is prepended to the DNS name that is generated for the endpoint.
- Endpoint
Type string - The type of Verified Access endpoint to create. Currently
load-balancer
ornetwork-interface
are supported. - Verified
Access stringGroup Id The ID of the Verified Access group to associate the endpoint with.
The following arguments are optional:
- Description string
- A description for the Verified Access endpoint.
- Load
Balancer EndpointOptions Load Balancer Options Args - The load balancer details. This parameter is required if the endpoint type is
load-balancer
. - Network
Interface EndpointOptions Network Interface Options Args - The network interface details. This parameter is required if the endpoint type is
network-interface
. - Policy
Document string - The policy document that is associated with this resource.
- Security
Group []stringIds - List of the the security groups IDs to associate with the Verified Access endpoint.
- Sse
Specification EndpointSse Specification Args - The options in use for server side encryption.
- map[string]string
- Key-value tags for the Verified Access Endpoint. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- application
Domain String - The DNS name for users to reach your application.
- attachment
Type String - The type of attachment. Currently, only
vpc
is supported. - domain
Certificate StringArn - The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.
- endpoint
Domain StringPrefix - A custom identifier that is prepended to the DNS name that is generated for the endpoint.
- endpoint
Type String - The type of Verified Access endpoint to create. Currently
load-balancer
ornetwork-interface
are supported. - verified
Access StringGroup Id The ID of the Verified Access group to associate the endpoint with.
The following arguments are optional:
- description String
- A description for the Verified Access endpoint.
- load
Balancer EndpointOptions Load Balancer Options - The load balancer details. This parameter is required if the endpoint type is
load-balancer
. - network
Interface EndpointOptions Network Interface Options - The network interface details. This parameter is required if the endpoint type is
network-interface
. - policy
Document String - The policy document that is associated with this resource.
- security
Group List<String>Ids - List of the the security groups IDs to associate with the Verified Access endpoint.
- sse
Specification EndpointSse Specification - The options in use for server side encryption.
- Map<String,String>
- Key-value tags for the Verified Access Endpoint. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- application
Domain string - The DNS name for users to reach your application.
- attachment
Type string - The type of attachment. Currently, only
vpc
is supported. - domain
Certificate stringArn - The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.
- endpoint
Domain stringPrefix - A custom identifier that is prepended to the DNS name that is generated for the endpoint.
- endpoint
Type string - The type of Verified Access endpoint to create. Currently
load-balancer
ornetwork-interface
are supported. - verified
Access stringGroup Id The ID of the Verified Access group to associate the endpoint with.
The following arguments are optional:
- description string
- A description for the Verified Access endpoint.
- load
Balancer EndpointOptions Load Balancer Options - The load balancer details. This parameter is required if the endpoint type is
load-balancer
. - network
Interface EndpointOptions Network Interface Options - The network interface details. This parameter is required if the endpoint type is
network-interface
. - policy
Document string - The policy document that is associated with this resource.
- security
Group string[]Ids - List of the the security groups IDs to associate with the Verified Access endpoint.
- sse
Specification EndpointSse Specification - The options in use for server side encryption.
- {[key: string]: string}
- Key-value tags for the Verified Access Endpoint. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- application_
domain str - The DNS name for users to reach your application.
- attachment_
type str - The type of attachment. Currently, only
vpc
is supported. - domain_
certificate_ strarn - The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.
- endpoint_
domain_ strprefix - A custom identifier that is prepended to the DNS name that is generated for the endpoint.
- endpoint_
type str - The type of Verified Access endpoint to create. Currently
load-balancer
ornetwork-interface
are supported. - verified_
access_ strgroup_ id The ID of the Verified Access group to associate the endpoint with.
The following arguments are optional:
- description str
- A description for the Verified Access endpoint.
- load_
balancer_ Endpointoptions Load Balancer Options Args - The load balancer details. This parameter is required if the endpoint type is
load-balancer
. - network_
interface_ Endpointoptions Network Interface Options Args - The network interface details. This parameter is required if the endpoint type is
network-interface
. - policy_
document str - The policy document that is associated with this resource.
- security_
group_ Sequence[str]ids - List of the the security groups IDs to associate with the Verified Access endpoint.
- sse_
specification EndpointSse Specification Args - The options in use for server side encryption.
- Mapping[str, str]
- Key-value tags for the Verified Access Endpoint. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- application
Domain String - The DNS name for users to reach your application.
- attachment
Type String - The type of attachment. Currently, only
vpc
is supported. - domain
Certificate StringArn - The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.
- endpoint
Domain StringPrefix - A custom identifier that is prepended to the DNS name that is generated for the endpoint.
- endpoint
Type String - The type of Verified Access endpoint to create. Currently
load-balancer
ornetwork-interface
are supported. - verified
Access StringGroup Id The ID of the Verified Access group to associate the endpoint with.
The following arguments are optional:
- description String
- A description for the Verified Access endpoint.
- load
Balancer Property MapOptions - The load balancer details. This parameter is required if the endpoint type is
load-balancer
. - network
Interface Property MapOptions - The network interface details. This parameter is required if the endpoint type is
network-interface
. - policy
Document String - The policy document that is associated with this resource.
- security
Group List<String>Ids - List of the the security groups IDs to associate with the Verified Access endpoint.
- sse
Specification Property Map - The options in use for server side encryption.
- Map<String>
- Key-value tags for the Verified Access Endpoint. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the Endpoint resource produces the following output properties:
- Device
Validation stringDomain - Returned if endpoint has a device trust provider attached.
- Endpoint
Domain string - A DNS name that is generated for the endpoint.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- Verified
Access stringInstance Id
- Device
Validation stringDomain - Returned if endpoint has a device trust provider attached.
- Endpoint
Domain string - A DNS name that is generated for the endpoint.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- Verified
Access stringInstance Id
- device
Validation StringDomain - Returned if endpoint has a device trust provider attached.
- endpoint
Domain String - A DNS name that is generated for the endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- verified
Access StringInstance Id
- device
Validation stringDomain - Returned if endpoint has a device trust provider attached.
- endpoint
Domain string - A DNS name that is generated for the endpoint.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- verified
Access stringInstance Id
- device_
validation_ strdomain - Returned if endpoint has a device trust provider attached.
- endpoint_
domain str - A DNS name that is generated for the endpoint.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- verified_
access_ strinstance_ id
- device
Validation StringDomain - Returned if endpoint has a device trust provider attached.
- endpoint
Domain String - A DNS name that is generated for the endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- verified
Access StringInstance Id
Look up Existing Endpoint Resource
Get an existing Endpoint 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?: EndpointState, opts?: CustomResourceOptions): Endpoint
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_domain: Optional[str] = None,
attachment_type: Optional[str] = None,
description: Optional[str] = None,
device_validation_domain: Optional[str] = None,
domain_certificate_arn: Optional[str] = None,
endpoint_domain: Optional[str] = None,
endpoint_domain_prefix: Optional[str] = None,
endpoint_type: Optional[str] = None,
load_balancer_options: Optional[EndpointLoadBalancerOptionsArgs] = None,
network_interface_options: Optional[EndpointNetworkInterfaceOptionsArgs] = None,
policy_document: Optional[str] = None,
security_group_ids: Optional[Sequence[str]] = None,
sse_specification: Optional[EndpointSseSpecificationArgs] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
verified_access_group_id: Optional[str] = None,
verified_access_instance_id: Optional[str] = None) -> Endpoint
func GetEndpoint(ctx *Context, name string, id IDInput, state *EndpointState, opts ...ResourceOption) (*Endpoint, error)
public static Endpoint Get(string name, Input<string> id, EndpointState? state, CustomResourceOptions? opts = null)
public static Endpoint get(String name, Output<String> id, EndpointState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Application
Domain string - The DNS name for users to reach your application.
- Attachment
Type string - The type of attachment. Currently, only
vpc
is supported. - Description string
- A description for the Verified Access endpoint.
- Device
Validation stringDomain - Returned if endpoint has a device trust provider attached.
- Domain
Certificate stringArn - The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.
- Endpoint
Domain string - A DNS name that is generated for the endpoint.
- Endpoint
Domain stringPrefix - A custom identifier that is prepended to the DNS name that is generated for the endpoint.
- Endpoint
Type string - The type of Verified Access endpoint to create. Currently
load-balancer
ornetwork-interface
are supported. - Load
Balancer EndpointOptions Load Balancer Options - The load balancer details. This parameter is required if the endpoint type is
load-balancer
. - Network
Interface EndpointOptions Network Interface Options - The network interface details. This parameter is required if the endpoint type is
network-interface
. - Policy
Document string - The policy document that is associated with this resource.
- Security
Group List<string>Ids - List of the the security groups IDs to associate with the Verified Access endpoint.
- Sse
Specification EndpointSse Specification - The options in use for server side encryption.
- Dictionary<string, string>
- Key-value tags for the Verified Access Endpoint. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- Verified
Access stringGroup Id The ID of the Verified Access group to associate the endpoint with.
The following arguments are optional:
- Verified
Access stringInstance Id
- Application
Domain string - The DNS name for users to reach your application.
- Attachment
Type string - The type of attachment. Currently, only
vpc
is supported. - Description string
- A description for the Verified Access endpoint.
- Device
Validation stringDomain - Returned if endpoint has a device trust provider attached.
- Domain
Certificate stringArn - The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.
- Endpoint
Domain string - A DNS name that is generated for the endpoint.
- Endpoint
Domain stringPrefix - A custom identifier that is prepended to the DNS name that is generated for the endpoint.
- Endpoint
Type string - The type of Verified Access endpoint to create. Currently
load-balancer
ornetwork-interface
are supported. - Load
Balancer EndpointOptions Load Balancer Options Args - The load balancer details. This parameter is required if the endpoint type is
load-balancer
. - Network
Interface EndpointOptions Network Interface Options Args - The network interface details. This parameter is required if the endpoint type is
network-interface
. - Policy
Document string - The policy document that is associated with this resource.
- Security
Group []stringIds - List of the the security groups IDs to associate with the Verified Access endpoint.
- Sse
Specification EndpointSse Specification Args - The options in use for server side encryption.
- map[string]string
- Key-value tags for the Verified Access Endpoint. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- Verified
Access stringGroup Id The ID of the Verified Access group to associate the endpoint with.
The following arguments are optional:
- Verified
Access stringInstance Id
- application
Domain String - The DNS name for users to reach your application.
- attachment
Type String - The type of attachment. Currently, only
vpc
is supported. - description String
- A description for the Verified Access endpoint.
- device
Validation StringDomain - Returned if endpoint has a device trust provider attached.
- domain
Certificate StringArn - The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.
- endpoint
Domain String - A DNS name that is generated for the endpoint.
- endpoint
Domain StringPrefix - A custom identifier that is prepended to the DNS name that is generated for the endpoint.
- endpoint
Type String - The type of Verified Access endpoint to create. Currently
load-balancer
ornetwork-interface
are supported. - load
Balancer EndpointOptions Load Balancer Options - The load balancer details. This parameter is required if the endpoint type is
load-balancer
. - network
Interface EndpointOptions Network Interface Options - The network interface details. This parameter is required if the endpoint type is
network-interface
. - policy
Document String - The policy document that is associated with this resource.
- security
Group List<String>Ids - List of the the security groups IDs to associate with the Verified Access endpoint.
- sse
Specification EndpointSse Specification - The options in use for server side encryption.
- Map<String,String>
- Key-value tags for the Verified Access Endpoint. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- verified
Access StringGroup Id The ID of the Verified Access group to associate the endpoint with.
The following arguments are optional:
- verified
Access StringInstance Id
- application
Domain string - The DNS name for users to reach your application.
- attachment
Type string - The type of attachment. Currently, only
vpc
is supported. - description string
- A description for the Verified Access endpoint.
- device
Validation stringDomain - Returned if endpoint has a device trust provider attached.
- domain
Certificate stringArn - The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.
- endpoint
Domain string - A DNS name that is generated for the endpoint.
- endpoint
Domain stringPrefix - A custom identifier that is prepended to the DNS name that is generated for the endpoint.
- endpoint
Type string - The type of Verified Access endpoint to create. Currently
load-balancer
ornetwork-interface
are supported. - load
Balancer EndpointOptions Load Balancer Options - The load balancer details. This parameter is required if the endpoint type is
load-balancer
. - network
Interface EndpointOptions Network Interface Options - The network interface details. This parameter is required if the endpoint type is
network-interface
. - policy
Document string - The policy document that is associated with this resource.
- security
Group string[]Ids - List of the the security groups IDs to associate with the Verified Access endpoint.
- sse
Specification EndpointSse Specification - The options in use for server side encryption.
- {[key: string]: string}
- Key-value tags for the Verified Access Endpoint. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- verified
Access stringGroup Id The ID of the Verified Access group to associate the endpoint with.
The following arguments are optional:
- verified
Access stringInstance Id
- application_
domain str - The DNS name for users to reach your application.
- attachment_
type str - The type of attachment. Currently, only
vpc
is supported. - description str
- A description for the Verified Access endpoint.
- device_
validation_ strdomain - Returned if endpoint has a device trust provider attached.
- domain_
certificate_ strarn - The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.
- endpoint_
domain str - A DNS name that is generated for the endpoint.
- endpoint_
domain_ strprefix - A custom identifier that is prepended to the DNS name that is generated for the endpoint.
- endpoint_
type str - The type of Verified Access endpoint to create. Currently
load-balancer
ornetwork-interface
are supported. - load_
balancer_ Endpointoptions Load Balancer Options Args - The load balancer details. This parameter is required if the endpoint type is
load-balancer
. - network_
interface_ Endpointoptions Network Interface Options Args - The network interface details. This parameter is required if the endpoint type is
network-interface
. - policy_
document str - The policy document that is associated with this resource.
- security_
group_ Sequence[str]ids - List of the the security groups IDs to associate with the Verified Access endpoint.
- sse_
specification EndpointSse Specification Args - The options in use for server side encryption.
- Mapping[str, str]
- Key-value tags for the Verified Access Endpoint. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- verified_
access_ strgroup_ id The ID of the Verified Access group to associate the endpoint with.
The following arguments are optional:
- verified_
access_ strinstance_ id
- application
Domain String - The DNS name for users to reach your application.
- attachment
Type String - The type of attachment. Currently, only
vpc
is supported. - description String
- A description for the Verified Access endpoint.
- device
Validation StringDomain - Returned if endpoint has a device trust provider attached.
- domain
Certificate StringArn - The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.
- endpoint
Domain String - A DNS name that is generated for the endpoint.
- endpoint
Domain StringPrefix - A custom identifier that is prepended to the DNS name that is generated for the endpoint.
- endpoint
Type String - The type of Verified Access endpoint to create. Currently
load-balancer
ornetwork-interface
are supported. - load
Balancer Property MapOptions - The load balancer details. This parameter is required if the endpoint type is
load-balancer
. - network
Interface Property MapOptions - The network interface details. This parameter is required if the endpoint type is
network-interface
. - policy
Document String - The policy document that is associated with this resource.
- security
Group List<String>Ids - List of the the security groups IDs to associate with the Verified Access endpoint.
- sse
Specification Property Map - The options in use for server side encryption.
- Map<String>
- Key-value tags for the Verified Access Endpoint. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- verified
Access StringGroup Id The ID of the Verified Access group to associate the endpoint with.
The following arguments are optional:
- verified
Access StringInstance Id
Supporting Types
EndpointLoadBalancerOptions, EndpointLoadBalancerOptionsArgs
- Load
Balancer stringArn - Port int
- Protocol string
- Subnet
Ids List<string>
- Load
Balancer stringArn - Port int
- Protocol string
- Subnet
Ids []string
- load
Balancer StringArn - port Integer
- protocol String
- subnet
Ids List<String>
- load
Balancer stringArn - port number
- protocol string
- subnet
Ids string[]
- load_
balancer_ strarn - port int
- protocol str
- subnet_
ids Sequence[str]
- load
Balancer StringArn - port Number
- protocol String
- subnet
Ids List<String>
EndpointNetworkInterfaceOptions, EndpointNetworkInterfaceOptionsArgs
- Network
Interface stringId - Port int
- Protocol string
- Network
Interface stringId - Port int
- Protocol string
- network
Interface StringId - port Integer
- protocol String
- network
Interface stringId - port number
- protocol string
- network_
interface_ strid - port int
- protocol str
- network
Interface StringId - port Number
- protocol String
EndpointSseSpecification, EndpointSseSpecificationArgs
- Customer
Managed boolKey Enabled - Kms
Key stringArn
- Customer
Managed boolKey Enabled - Kms
Key stringArn
- customer
Managed BooleanKey Enabled - kms
Key StringArn
- customer
Managed booleanKey Enabled - kms
Key stringArn
- customer
Managed BooleanKey Enabled - kms
Key StringArn
Import
Using pulumi import
, import Verified Access Instances using the id
. For example:
$ pulumi import aws:verifiedaccess/endpoint:Endpoint example vae-8012925589
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.