74 lines
1.7 KiB
Go
74 lines
1.7 KiB
Go
package aws
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
"github.com/aws/aws-sdk-go/service/acm"
|
|
"github.com/hashicorp/errwrap"
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
)
|
|
|
|
func dataSourceAwsAcmCertificate() *schema.Resource {
|
|
return &schema.Resource{
|
|
Read: dataSourceAwsAcmCertificateRead,
|
|
Schema: map[string]*schema.Schema{
|
|
"domain": {
|
|
Type: schema.TypeString,
|
|
Required: true,
|
|
},
|
|
"arn": {
|
|
Type: schema.TypeString,
|
|
Computed: true,
|
|
},
|
|
"statuses": {
|
|
Type: schema.TypeList,
|
|
Optional: true,
|
|
Elem: &schema.Schema{Type: schema.TypeString},
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func dataSourceAwsAcmCertificateRead(d *schema.ResourceData, meta interface{}) error {
|
|
conn := meta.(*AWSClient).acmconn
|
|
params := &acm.ListCertificatesInput{}
|
|
|
|
target := d.Get("domain")
|
|
|
|
statuses, ok := d.GetOk("statuses")
|
|
if ok {
|
|
statusStrings := statuses.([]interface{})
|
|
params.CertificateStatuses = expandStringList(statusStrings)
|
|
} else {
|
|
params.CertificateStatuses = []*string{aws.String("ISSUED")}
|
|
}
|
|
|
|
var arns []string
|
|
err := conn.ListCertificatesPages(params, func(page *acm.ListCertificatesOutput, lastPage bool) bool {
|
|
for _, cert := range page.CertificateSummaryList {
|
|
if *cert.DomainName == target {
|
|
arns = append(arns, *cert.CertificateArn)
|
|
}
|
|
}
|
|
|
|
return true
|
|
})
|
|
if err != nil {
|
|
return errwrap.Wrapf("Error describing certificates: {{err}}", err)
|
|
}
|
|
|
|
if len(arns) == 0 {
|
|
return fmt.Errorf("No certificate for domain %q found in this region.", target)
|
|
}
|
|
if len(arns) > 1 {
|
|
return fmt.Errorf("Multiple certificates for domain %q found in this region.", target)
|
|
}
|
|
|
|
d.SetId(time.Now().UTC().String())
|
|
d.Set("arn", arns[0])
|
|
|
|
return nil
|
|
}
|