Skip to content

Commit

Permalink
provider/aws: Add aws_availability_zones source
Browse files Browse the repository at this point in the history
This commit adds a data source with a single set, `available` for the
schema which gets populated with the availability zones to which an
account has access.
  • Loading branch information
jen20 committed May 14, 2016
1 parent 453fc50 commit 40968e8
Show file tree
Hide file tree
Showing 4 changed files with 102 additions and 0 deletions.
50 changes: 50 additions & 0 deletions builtin/providers/aws/data_source_availability_zones.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
package aws

import (
"fmt"
"log"
"time"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/hashicorp/terraform/helper/schema"
)

func dataSourceAwsAvailabilityZones() *schema.Resource {
return &schema.Resource{
Read: dataSourceAwsAvailabilityZonesRead,

Schema: map[string]*schema.Schema{
"available": &schema.Schema{
Type: schema.TypeSet,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
Set: schema.HashString,
},
},
}
}

func dataSourceAwsAvailabilityZonesRead(d *schema.ResourceData, meta interface{}) error {
conn := meta.(*AWSClient).ec2conn

log.Printf("[DEBUG] Reading availability zones")
d.SetId(time.Now().UTC().String())

req := &ec2.DescribeAvailabilityZonesInput{DryRun: aws.Bool(false)}
azresp, err := conn.DescribeAvailabilityZones(req)
if err != nil {
return fmt.Errorf("Error listing availability zones: %s", err)
}

raw := schema.NewSet(schema.HashString, nil)
for _, v := range azresp.AvailabilityZones {
raw.Add(*v.ZoneName)
}

if err := d.Set("available", raw); err != nil {
return fmt.Errorf("[WARN] Error setting availability zones")
}

return nil
}
4 changes: 4 additions & 0 deletions builtin/providers/aws/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ func Provider() terraform.ResourceProvider {
},
},

DataSourcesMap: map[string]*schema.Resource{
"aws_availability_zones": dataSourceAwsAvailabilityZones(),
},

ResourcesMap: map[string]*schema.Resource{
"aws_ami": resourceAwsAmi(),
"aws_ami_copy": resourceAwsAmiCopy(),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
layout: "aws"
page_title: "AWS: aws_availability_zones"
sidebar_current: "docs-aws-datasource-availability-zones"
description: |-
Provides a list of availability zones which can be used by an AWS account
---

# aws\_availability_zones

The Availability Zones data source allows access to the list of AWS
Availability Zones which can be accessed by an AWS account within the region
configured in the provider.

## Example Usage

```
# Declare the data source
data "aws_availability_zones" "zones" {}
# Create a subnet in each availability zone
resource "aws_subnet" "public" {
count = "${length(data.aws_availability_zones.zones.available)}"
availability_zone = "${data.aws_availability_zones.zones.available[count.index]}"
# Other properties...
}
```

## Argument Reference

There are no arguments for this data source.

## Attributes Reference

The following attributes are exported:

* `available` - A list of the availability zone names available to the account.
9 changes: 9 additions & 0 deletions website/source/layouts/aws.erb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@
<a href="/docs/providers/aws/index.html">AWS Provider</a>
</li>

<li<%= sidebar_current(/^docs-aws-datasource/) %>
<a href="#">Data Sources</a>
<ul class="nav nav-visible">
<li<%= sidebar_current("docs-aws-datasource-availability-zones") %>>
<a href="/docs/providers/aws/d/availability_zones.html">aws_availability_zones</a>
</li>
</ul>
</li>

<li<%= sidebar_current(/^docs-aws-resource-api-gateway/) %>>
<a href="#">API Gateway Resources</a>
<ul class="nav nav-visible">
Expand Down

0 comments on commit 40968e8

Please sign in to comment.