Skip to content

Commit

Permalink
Merge pull request #17001 from ewbankkit/f-d/aws_route_table-wavelength
Browse files Browse the repository at this point in the history
d/aws_route_table: AWS Wavelength support
  • Loading branch information
YakDriver committed Feb 18, 2021
2 parents df3d498 + e91c92d commit c891577
Show file tree
Hide file tree
Showing 4 changed files with 107 additions and 61 deletions.
7 changes: 7 additions & 0 deletions .changelog/17001.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
```release-notes:enhancement
data-source/aws_route_table: Add `arn` attribute
```

```release-notes:enhancement
data-source/aws_route_table: Add `carrier_gateway_id` attribute to `routes` list
```
53 changes: 43 additions & 10 deletions aws/data_source_aws_route_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"strings"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/arn"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/terraform-providers/terraform-provider-aws/aws/internal/keyvaluetags"
Expand Down Expand Up @@ -43,6 +44,9 @@ func dataSourceAwsRouteTable() *schema.Resource {
Computed: true,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
///
// Destinations.
///
"cidr_block": {
Type: schema.TypeString,
Computed: true,
Expand All @@ -53,6 +57,14 @@ func dataSourceAwsRouteTable() *schema.Resource {
Computed: true,
},

///
// Targets.
///
"carrier_gateway_id": {
Type: schema.TypeString,
Computed: true,
},

"egress_only_gateway_id": {
Type: schema.TypeString,
Computed: true,
Expand All @@ -68,38 +80,39 @@ func dataSourceAwsRouteTable() *schema.Resource {
Computed: true,
},

"nat_gateway_id": {
"local_gateway_id": {
Type: schema.TypeString,
Computed: true,
},

"local_gateway_id": {
"nat_gateway_id": {
Type: schema.TypeString,
Computed: true,
},

"transit_gateway_id": {
"network_interface_id": {
Type: schema.TypeString,
Computed: true,
},

"vpc_endpoint_id": {
"transit_gateway_id": {
Type: schema.TypeString,
Computed: true,
},

"vpc_peering_connection_id": {
"vpc_endpoint_id": {
Type: schema.TypeString,
Computed: true,
},

"network_interface_id": {
"vpc_peering_connection_id": {
Type: schema.TypeString,
Computed: true,
},
},
},
},

"associations": {
Type: schema.TypeList,
Computed: true,
Expand Down Expand Up @@ -132,6 +145,12 @@ func dataSourceAwsRouteTable() *schema.Resource {
},
},
},

"arn": {
Type: schema.TypeString,
Computed: true,
},

"owner_id": {
Type: schema.TypeString,
Computed: true,
Expand All @@ -153,7 +172,7 @@ func dataSourceAwsRouteTableRead(d *schema.ResourceData, meta interface{}) error
filter, filterOk := d.GetOk("filter")

if !rtbOk && !vpcIdOk && !subnetIdOk && !gatewayIdOk && !filterOk && !tagsOk {
return fmt.Errorf("One of route_table_id, vpc_id, subnet_id, gateway_id, filters, or tags must be assigned")
return fmt.Errorf("one of route_table_id, vpc_id, subnet_id, gateway_id, filters, or tags must be assigned")
}
req.Filters = buildEC2AttributeFilterList(
map[string]string{
Expand All @@ -176,23 +195,34 @@ func dataSourceAwsRouteTableRead(d *schema.ResourceData, meta interface{}) error
return err
}
if resp == nil || len(resp.RouteTables) == 0 {
return fmt.Errorf("Your query returned no results. Please change your search criteria and try again")
return fmt.Errorf("query returned no results. Please change your search criteria and try again")
}
if len(resp.RouteTables) > 1 {
return fmt.Errorf("Multiple Route Table matched; use additional constraints to reduce matches to a single Route Table")
return fmt.Errorf("multiple Route Tables matched; use additional constraints to reduce matches to a single Route Table")
}

rt := resp.RouteTables[0]

d.SetId(aws.StringValue(rt.RouteTableId))

ownerID := aws.StringValue(rt.OwnerId)
arn := arn.ARN{
Partition: meta.(*AWSClient).partition,
Service: ec2.ServiceName,
Region: meta.(*AWSClient).region,
AccountID: ownerID,
Resource: fmt.Sprintf("route-table/%s", d.Id()),
}.String()
d.Set("arn", arn)
d.Set("owner_id", ownerID)

d.Set("route_table_id", rt.RouteTableId)
d.Set("vpc_id", rt.VpcId)

if err := d.Set("tags", keyvaluetags.Ec2KeyValueTags(rt.Tags).IgnoreAws().IgnoreConfig(ignoreTagsConfig).Map()); err != nil {
return fmt.Errorf("error setting tags: %w", err)
}

d.Set("owner_id", rt.OwnerId)
if err := d.Set("routes", dataSourceRoutesRead(rt.Routes)); err != nil {
return err
}
Expand Down Expand Up @@ -230,6 +260,9 @@ func dataSourceRoutesRead(ec2Routes []*ec2.Route) []map[string]interface{} {
if r.DestinationIpv6CidrBlock != nil {
m["ipv6_cidr_block"] = *r.DestinationIpv6CidrBlock
}
if r.CarrierGatewayId != nil {
m["carrier_gateway_id"] = *r.CarrierGatewayId
}
if r.EgressOnlyInternetGatewayId != nil {
m["egress_only_gateway_id"] = *r.EgressOnlyInternetGatewayId
}
Expand Down
6 changes: 6 additions & 0 deletions aws/data_source_aws_route_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package aws

import (
"fmt"
"regexp"
"testing"

"github.com/hashicorp/terraform-plugin-sdk/v2/helper/acctest"
Expand All @@ -28,6 +29,7 @@ func TestAccDataSourceAwsRouteTable_basic(t *testing.T) {
Config: testAccDataSourceAwsRouteTableConfigBasic(rName),
Check: resource.ComposeTestCheckFunc(
// By tags.
testAccMatchResourceAttrRegionalARN(datasource1Name, "arn", "ec2", regexp.MustCompile(`route-table/.+$`)),
resource.TestCheckResourceAttrPair(datasource1Name, "id", rtResourceName, "id"),
resource.TestCheckResourceAttrPair(datasource1Name, "route_table_id", rtResourceName, "id"),
resource.TestCheckResourceAttrPair(datasource1Name, "owner_id", rtResourceName, "owner_id"),
Expand All @@ -39,6 +41,7 @@ func TestAccDataSourceAwsRouteTable_basic(t *testing.T) {
testAccCheckListHasSomeElementAttrPair(datasource1Name, "associations", "gateway_id", igwResourceName, "id"),
resource.TestCheckResourceAttr(datasource1Name, "tags.Name", rName),
// By filter.
testAccMatchResourceAttrRegionalARN(datasource2Name, "arn", "ec2", regexp.MustCompile(`route-table/.+$`)),
resource.TestCheckResourceAttrPair(datasource2Name, "id", rtResourceName, "id"),
resource.TestCheckResourceAttrPair(datasource2Name, "route_table_id", rtResourceName, "id"),
resource.TestCheckResourceAttrPair(datasource2Name, "owner_id", rtResourceName, "owner_id"),
Expand All @@ -50,6 +53,7 @@ func TestAccDataSourceAwsRouteTable_basic(t *testing.T) {
testAccCheckListHasSomeElementAttrPair(datasource2Name, "associations", "gateway_id", igwResourceName, "id"),
resource.TestCheckResourceAttr(datasource2Name, "tags.Name", rName),
// By subnet ID.
testAccMatchResourceAttrRegionalARN(datasource3Name, "arn", "ec2", regexp.MustCompile(`route-table/.+$`)),
resource.TestCheckResourceAttrPair(datasource3Name, "id", rtResourceName, "id"),
resource.TestCheckResourceAttrPair(datasource3Name, "route_table_id", rtResourceName, "id"),
resource.TestCheckResourceAttrPair(datasource3Name, "owner_id", rtResourceName, "owner_id"),
Expand All @@ -61,6 +65,7 @@ func TestAccDataSourceAwsRouteTable_basic(t *testing.T) {
testAccCheckListHasSomeElementAttrPair(datasource3Name, "associations", "gateway_id", igwResourceName, "id"),
resource.TestCheckResourceAttr(datasource3Name, "tags.Name", rName),
// By route table ID.
testAccMatchResourceAttrRegionalARN(datasource4Name, "arn", "ec2", regexp.MustCompile(`route-table/.+$`)),
resource.TestCheckResourceAttrPair(datasource4Name, "id", rtResourceName, "id"),
resource.TestCheckResourceAttrPair(datasource4Name, "route_table_id", rtResourceName, "id"),
resource.TestCheckResourceAttrPair(datasource4Name, "owner_id", rtResourceName, "owner_id"),
Expand All @@ -72,6 +77,7 @@ func TestAccDataSourceAwsRouteTable_basic(t *testing.T) {
testAccCheckListHasSomeElementAttrPair(datasource4Name, "associations", "gateway_id", igwResourceName, "id"),
resource.TestCheckResourceAttr(datasource4Name, "tags.Name", rName),
// By gateway ID.
testAccMatchResourceAttrRegionalARN(datasource5Name, "arn", "ec2", regexp.MustCompile(`route-table/.+$`)),
resource.TestCheckResourceAttrPair(datasource5Name, "id", rtResourceName, "id"),
resource.TestCheckResourceAttrPair(datasource5Name, "route_table_id", rtResourceName, "id"),
resource.TestCheckResourceAttrPair(datasource5Name, "owner_id", rtResourceName, "owner_id"),
Expand Down
102 changes: 51 additions & 51 deletions website/docs/d/route_table.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,11 @@ description: |-

`aws_route_table` provides details about a specific Route Table.

This resource can prove useful when a module accepts a Subnet id as
an input variable and needs to, for example, add a route in
the Route Table.
This resource can prove useful when a module accepts a Subnet ID as an input variable and needs to, for example, add a route in the Route Table.

## Example Usage

The following example shows how one might accept a Route Table id as a variable
and use this data source to obtain the data necessary to create a route.
The following example shows how one might accept a Route Table ID as a variable and use this data source to obtain the data necessary to create a route.

```hcl
variable "subnet_id" {}
Expand All @@ -35,60 +32,63 @@ resource "aws_route" "route" {

## Argument Reference

The arguments of this data source act as filters for querying the available
Route Table in the current region. The given filters must match exactly one
Route Table whose data will be exported as attributes.
The arguments of this data source act as filters for querying the available Route Table in the current region. The given filters must match exactly one Route Table whose data will be exported as attributes.

* `filter` - (Optional) Custom filter block as described below.
The following arguments are optional:

* `route_table_id` - (Optional) The id of the specific Route Table to retrieve.
* `filter` - (Optional) Configuration block. Detailed below.
* `gateway_id` - (Optional) ID of an Internet Gateway or Virtual Private Gateway which is connected to the Route Table (not exported if not passed as a parameter).
* `route_table_id` - (Optional) ID of the specific Route Table to retrieve.
* `subnet_id` - (Optional) ID of a Subnet which is connected to the Route Table (not exported if not passed as a parameter).
* `tags` - (Optional) Map of tags, each pair of which must exactly match a pair on the desired Route Table.
* `vpc_id` - (Optional) ID of the VPC that the desired Route Table belongs to.

* `tags` - (Optional) A map of tags, each pair of which must exactly match
a pair on the desired Route Table.
### filter

* `vpc_id` - (Optional) The id of the VPC that the desired Route Table belongs to.
Complex filters can be expressed using one or more `filter` blocks.

* `subnet_id` - (Optional) The id of a Subnet which is connected to the Route Table (not exported if not passed as a parameter).
The following arguments are required:

* `gateway_id` - (Optional) The id of an Internet Gateway or Virtual Private Gateway which is connected to the Route Table (not exported if not passed as a parameter).
* `name` - (Required) Name of the field to filter by, as defined by [the underlying AWS API](http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeRouteTables.html).
* `values` - (Required) Set of values that are accepted for the given field. A Route Table will be selected if any one of the given values matches.

More complex filters can be expressed using one or more `filter` sub-blocks,
which take the following arguments:
## Attributes Reference

* `name` - (Required) The name of the field to filter by, as defined by
[the underlying AWS API](http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeRouteTables.html).
In addition to the arguments above, the following attributes are exported:

* `values` - (Required) Set of values that are accepted for the given field.
A Route Table will be selected if any one of the given values matches.
* `arn` - ARN of the route table.
* `associations` - List of associations with attributes detailed below.
* `owner_id` - ID of the AWS account that owns the route table.
* `routes` - List of routes with attributes detailed below.

## Attributes Reference
### routes

When relevant, routes are also exported with the following attributes:

For destinations:

* `cidr_block` - CIDR block of the route.
* `ipv6_cidr_block` - IPv6 CIDR block of the route.

For targets:

* `carrier_gateway_id` - ID of the Carrier Gateway.
* `egress_only_gateway_id` - ID of the Egress Only Internet Gateway.
* `gateway_id` - Internet Gateway ID.
* `instance_id` - EC2 instance ID.
* `local_gateway_id` - Local Gateway ID.
* `nat_gateway_id` - NAT Gateway ID.
* `network_interface_id` - ID of the elastic network interface (eni) to use.
* `transit_gateway_id` - EC2 Transit Gateway ID.
* `vpc_endpoint_id` - VPC Endpoint ID.
* `vpc_peering_connection_id` - VPC Peering ID.

### associations

Associations are also exported with the following attributes:

All of the argument attributes except the `filter` block are also exported as
result attributes. This data source will complete the data by populating
any fields that are not included in the configuration with the data for
the selected Route Table. In addition the following attributes are exported:

* `owner_id` - The ID of the AWS account that owns the route table

`routes` are also exported with the following attributes, when there are relevants:
Each route supports the following:

* `cidr_block` - The CIDR block of the route.
* `ipv6_cidr_block` - The IPv6 CIDR block of the route.
* `egress_only_gateway_id` - The ID of the Egress Only Internet Gateway.
* `gateway_id` - The Internet Gateway ID.
* `nat_gateway_id` - The NAT Gateway ID.
* `local_gateway_id` - The Local Gateway ID.
* `instance_id` - The EC2 instance ID.
* `transit_gateway_id` - The EC2 Transit Gateway ID.
* `vpc_endpoint_id` - The VPC Endpoint ID.
* `vpc_peering_connection_id` - The VPC Peering ID.
* `network_interface_id` - The ID of the elastic network interface (eni) to use.

`associations` are also exported with the following attributes:

* `route_table_association_id` - The Association ID.
* `route_table_id` - The Route Table ID.
* `subnet_id` - The Subnet ID. Only set when associated with a Subnet.
* `gateway_id` - The Gateway ID. Only set when associated with an Internet Gateway or Virtual Private Gateway.
* `main` - If the Association due to the Main Route Table.
* `gateway_id` - Gateway ID. Only set when associated with an Internet Gateway or Virtual Private Gateway.
* `main` - Whether the association is due to the main route table.
* `route_table_association_id` - Association ID.
* `route_table_id` - Route Table ID.
* `subnet_id` - Subnet ID. Only set when associated with a subnet.

0 comments on commit c891577

Please sign in to comment.