aws.vpclattice.ServiceNetworkResourceAssociation
Explore with Pulumi AI
Resource for managing an AWS VPC Lattice Service Network Resource Association.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.vpclattice.ServiceNetworkResourceAssociation("example", {
resourceConfigurationIdentifier: exampleAwsVpclatticeResourceConfiguration.id,
serviceNetworkIdentifier: exampleAwsVpclatticeServiceNetwork.id,
tags: {
Name: "Example",
},
});
import pulumi
import pulumi_aws as aws
example = aws.vpclattice.ServiceNetworkResourceAssociation("example",
resource_configuration_identifier=example_aws_vpclattice_resource_configuration["id"],
service_network_identifier=example_aws_vpclattice_service_network["id"],
tags={
"Name": "Example",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/vpclattice"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vpclattice.NewServiceNetworkResourceAssociation(ctx, "example", &vpclattice.ServiceNetworkResourceAssociationArgs{
ResourceConfigurationIdentifier: pulumi.Any(exampleAwsVpclatticeResourceConfiguration.Id),
ServiceNetworkIdentifier: pulumi.Any(exampleAwsVpclatticeServiceNetwork.Id),
Tags: pulumi.StringMap{
"Name": pulumi.String("Example"),
},
})
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.VpcLattice.ServiceNetworkResourceAssociation("example", new()
{
ResourceConfigurationIdentifier = exampleAwsVpclatticeResourceConfiguration.Id,
ServiceNetworkIdentifier = exampleAwsVpclatticeServiceNetwork.Id,
Tags =
{
{ "Name", "Example" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.vpclattice.ServiceNetworkResourceAssociation;
import com.pulumi.aws.vpclattice.ServiceNetworkResourceAssociationArgs;
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 ServiceNetworkResourceAssociation("example", ServiceNetworkResourceAssociationArgs.builder()
.resourceConfigurationIdentifier(exampleAwsVpclatticeResourceConfiguration.id())
.serviceNetworkIdentifier(exampleAwsVpclatticeServiceNetwork.id())
.tags(Map.of("Name", "Example"))
.build());
}
}
resources:
example:
type: aws:vpclattice:ServiceNetworkResourceAssociation
properties:
resourceConfigurationIdentifier: ${exampleAwsVpclatticeResourceConfiguration.id}
serviceNetworkIdentifier: ${exampleAwsVpclatticeServiceNetwork.id}
tags:
Name: Example
Create ServiceNetworkResourceAssociation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceNetworkResourceAssociation(name: string, args: ServiceNetworkResourceAssociationArgs, opts?: CustomResourceOptions);
@overload
def ServiceNetworkResourceAssociation(resource_name: str,
args: ServiceNetworkResourceAssociationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceNetworkResourceAssociation(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_configuration_identifier: Optional[str] = None,
service_network_identifier: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
timeouts: Optional[ServiceNetworkResourceAssociationTimeoutsArgs] = None)
func NewServiceNetworkResourceAssociation(ctx *Context, name string, args ServiceNetworkResourceAssociationArgs, opts ...ResourceOption) (*ServiceNetworkResourceAssociation, error)
public ServiceNetworkResourceAssociation(string name, ServiceNetworkResourceAssociationArgs args, CustomResourceOptions? opts = null)
public ServiceNetworkResourceAssociation(String name, ServiceNetworkResourceAssociationArgs args)
public ServiceNetworkResourceAssociation(String name, ServiceNetworkResourceAssociationArgs args, CustomResourceOptions options)
type: aws:vpclattice:ServiceNetworkResourceAssociation
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 ServiceNetworkResourceAssociationArgs
- 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 ServiceNetworkResourceAssociationArgs
- 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 ServiceNetworkResourceAssociationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceNetworkResourceAssociationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceNetworkResourceAssociationArgs
- 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 serviceNetworkResourceAssociationResource = new Aws.VpcLattice.ServiceNetworkResourceAssociation("serviceNetworkResourceAssociationResource", new()
{
ResourceConfigurationIdentifier = "string",
ServiceNetworkIdentifier = "string",
Tags =
{
{ "string", "string" },
},
Timeouts = new Aws.VpcLattice.Inputs.ServiceNetworkResourceAssociationTimeoutsArgs
{
Create = "string",
Delete = "string",
},
});
example, err := vpclattice.NewServiceNetworkResourceAssociation(ctx, "serviceNetworkResourceAssociationResource", &vpclattice.ServiceNetworkResourceAssociationArgs{
ResourceConfigurationIdentifier: pulumi.String("string"),
ServiceNetworkIdentifier: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Timeouts: &vpclattice.ServiceNetworkResourceAssociationTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
},
})
var serviceNetworkResourceAssociationResource = new ServiceNetworkResourceAssociation("serviceNetworkResourceAssociationResource", ServiceNetworkResourceAssociationArgs.builder()
.resourceConfigurationIdentifier("string")
.serviceNetworkIdentifier("string")
.tags(Map.of("string", "string"))
.timeouts(ServiceNetworkResourceAssociationTimeoutsArgs.builder()
.create("string")
.delete("string")
.build())
.build());
service_network_resource_association_resource = aws.vpclattice.ServiceNetworkResourceAssociation("serviceNetworkResourceAssociationResource",
resource_configuration_identifier="string",
service_network_identifier="string",
tags={
"string": "string",
},
timeouts={
"create": "string",
"delete": "string",
})
const serviceNetworkResourceAssociationResource = new aws.vpclattice.ServiceNetworkResourceAssociation("serviceNetworkResourceAssociationResource", {
resourceConfigurationIdentifier: "string",
serviceNetworkIdentifier: "string",
tags: {
string: "string",
},
timeouts: {
create: "string",
"delete": "string",
},
});
type: aws:vpclattice:ServiceNetworkResourceAssociation
properties:
resourceConfigurationIdentifier: string
serviceNetworkIdentifier: string
tags:
string: string
timeouts:
create: string
delete: string
ServiceNetworkResourceAssociation 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 ServiceNetworkResourceAssociation resource accepts the following input properties:
- Resource
Configuration stringIdentifier - Identifier of Resource Configuration to associate to the Service Network.
- Service
Network stringIdentifier Identifier of the Service Network to associate the Resource to.
The following arguments are optional:
- Dictionary<string, string>
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Service
Network Resource Association Timeouts
- Resource
Configuration stringIdentifier - Identifier of Resource Configuration to associate to the Service Network.
- Service
Network stringIdentifier Identifier of the Service Network to associate the Resource to.
The following arguments are optional:
- map[string]string
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Service
Network Resource Association Timeouts Args
- resource
Configuration StringIdentifier - Identifier of Resource Configuration to associate to the Service Network.
- service
Network StringIdentifier Identifier of the Service Network to associate the Resource to.
The following arguments are optional:
- Map<String,String>
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Service
Network Resource Association Timeouts
- resource
Configuration stringIdentifier - Identifier of Resource Configuration to associate to the Service Network.
- service
Network stringIdentifier Identifier of the Service Network to associate the Resource to.
The following arguments are optional:
- {[key: string]: string}
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Service
Network Resource Association Timeouts
- resource_
configuration_ stridentifier - Identifier of Resource Configuration to associate to the Service Network.
- service_
network_ stridentifier Identifier of the Service Network to associate the Resource to.
The following arguments are optional:
- Mapping[str, str]
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Service
Network Resource Association Timeouts Args
- resource
Configuration StringIdentifier - Identifier of Resource Configuration to associate to the Service Network.
- service
Network StringIdentifier Identifier of the Service Network to associate the Resource to.
The following arguments are optional:
- Map<String>
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceNetworkResourceAssociation resource produces the following output properties:
- Arn string
- ARN of the Service Network Resource Association.
- Dns
Entries List<ServiceNetwork Resource Association Dns Entry> - DNS entry of the association in the service network.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- ARN of the Service Network Resource Association.
- Dns
Entries []ServiceNetwork Resource Association Dns Entry - DNS entry of the association in the service network.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- ARN of the Service Network Resource Association.
- dns
Entries List<ServiceNetwork Resource Association Dns Entry> - DNS entry of the association in the service network.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- ARN of the Service Network Resource Association.
- dns
Entries ServiceNetwork Resource Association Dns Entry[] - DNS entry of the association in the service network.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- ARN of the Service Network Resource Association.
- dns_
entries Sequence[ServiceNetwork Resource Association Dns Entry] - DNS entry of the association in the service network.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- ARN of the Service Network Resource Association.
- dns
Entries List<Property Map> - DNS entry of the association in the service network.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing ServiceNetworkResourceAssociation Resource
Get an existing ServiceNetworkResourceAssociation 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?: ServiceNetworkResourceAssociationState, opts?: CustomResourceOptions): ServiceNetworkResourceAssociation
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
dns_entries: Optional[Sequence[ServiceNetworkResourceAssociationDnsEntryArgs]] = None,
resource_configuration_identifier: Optional[str] = None,
service_network_identifier: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
timeouts: Optional[ServiceNetworkResourceAssociationTimeoutsArgs] = None) -> ServiceNetworkResourceAssociation
func GetServiceNetworkResourceAssociation(ctx *Context, name string, id IDInput, state *ServiceNetworkResourceAssociationState, opts ...ResourceOption) (*ServiceNetworkResourceAssociation, error)
public static ServiceNetworkResourceAssociation Get(string name, Input<string> id, ServiceNetworkResourceAssociationState? state, CustomResourceOptions? opts = null)
public static ServiceNetworkResourceAssociation get(String name, Output<String> id, ServiceNetworkResourceAssociationState state, CustomResourceOptions options)
resources: _: type: aws:vpclattice:ServiceNetworkResourceAssociation get: id: ${id}
- 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.
- Arn string
- ARN of the Service Network Resource Association.
- Dns
Entries List<ServiceNetwork Resource Association Dns Entry> - DNS entry of the association in the service network.
- Resource
Configuration stringIdentifier - Identifier of Resource Configuration to associate to the Service Network.
- Service
Network stringIdentifier Identifier of the Service Network to associate the Resource to.
The following arguments are optional:
- Dictionary<string, string>
- Map of tags assigned to the resource. 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>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Timeouts
Service
Network Resource Association Timeouts
- Arn string
- ARN of the Service Network Resource Association.
- Dns
Entries []ServiceNetwork Resource Association Dns Entry Args - DNS entry of the association in the service network.
- Resource
Configuration stringIdentifier - Identifier of Resource Configuration to associate to the Service Network.
- Service
Network stringIdentifier Identifier of the Service Network to associate the Resource to.
The following arguments are optional:
- map[string]string
- Map of tags assigned to the resource. 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
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Timeouts
Service
Network Resource Association Timeouts Args
- arn String
- ARN of the Service Network Resource Association.
- dns
Entries List<ServiceNetwork Resource Association Dns Entry> - DNS entry of the association in the service network.
- resource
Configuration StringIdentifier - Identifier of Resource Configuration to associate to the Service Network.
- service
Network StringIdentifier Identifier of the Service Network to associate the Resource to.
The following arguments are optional:
- Map<String,String>
- Map of tags assigned to the resource. 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>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - timeouts
Service
Network Resource Association Timeouts
- arn string
- ARN of the Service Network Resource Association.
- dns
Entries ServiceNetwork Resource Association Dns Entry[] - DNS entry of the association in the service network.
- resource
Configuration stringIdentifier - Identifier of Resource Configuration to associate to the Service Network.
- service
Network stringIdentifier Identifier of the Service Network to associate the Resource to.
The following arguments are optional:
- {[key: string]: string}
- Map of tags assigned to the resource. 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}
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - timeouts
Service
Network Resource Association Timeouts
- arn str
- ARN of the Service Network Resource Association.
- dns_
entries Sequence[ServiceNetwork Resource Association Dns Entry Args] - DNS entry of the association in the service network.
- resource_
configuration_ stridentifier - Identifier of Resource Configuration to associate to the Service Network.
- service_
network_ stridentifier Identifier of the Service Network to associate the Resource to.
The following arguments are optional:
- Mapping[str, str]
- Map of tags assigned to the resource. 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]
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - timeouts
Service
Network Resource Association Timeouts Args
- arn String
- ARN of the Service Network Resource Association.
- dns
Entries List<Property Map> - DNS entry of the association in the service network.
- resource
Configuration StringIdentifier - Identifier of Resource Configuration to associate to the Service Network.
- service
Network StringIdentifier Identifier of the Service Network to associate the Resource to.
The following arguments are optional:
- Map<String>
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - timeouts Property Map
Supporting Types
ServiceNetworkResourceAssociationDnsEntry, ServiceNetworkResourceAssociationDnsEntryArgs
- Domain
Name string - The domain name of the association in the service network.
- Hosted
Zone stringId - The ID of the hosted zone containing the domain name.
- Domain
Name string - The domain name of the association in the service network.
- Hosted
Zone stringId - The ID of the hosted zone containing the domain name.
- domain
Name String - The domain name of the association in the service network.
- hosted
Zone StringId - The ID of the hosted zone containing the domain name.
- domain
Name string - The domain name of the association in the service network.
- hosted
Zone stringId - The ID of the hosted zone containing the domain name.
- domain_
name str - The domain name of the association in the service network.
- hosted_
zone_ strid - The ID of the hosted zone containing the domain name.
- domain
Name String - The domain name of the association in the service network.
- hosted
Zone StringId - The ID of the hosted zone containing the domain name.
ServiceNetworkResourceAssociationTimeouts, ServiceNetworkResourceAssociationTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
Import
Using pulumi import
, import VPC Lattice Service Network Resource Association using the id
. For example:
$ pulumi import aws:vpclattice/serviceNetworkResourceAssociation:ServiceNetworkResourceAssociation example snra-1234567890abcef12
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.