-
Notifications
You must be signed in to change notification settings - Fork 9.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2813 from flosell/feature-2418-acm-certificate-re…
…source-without-datasource New Resources: aws_acm_certificate and aws_acm_certificate_validation
- Loading branch information
Showing
10 changed files
with
1,000 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,244 @@ | ||
package aws | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"time" | ||
|
||
"github.com/aws/aws-sdk-go/aws" | ||
"github.com/aws/aws-sdk-go/service/acm" | ||
"github.com/hashicorp/terraform/helper/resource" | ||
"github.com/hashicorp/terraform/helper/schema" | ||
) | ||
|
||
func resourceAwsAcmCertificate() *schema.Resource { | ||
return &schema.Resource{ | ||
Create: resourceAwsAcmCertificateCreate, | ||
Read: resourceAwsAcmCertificateRead, | ||
Update: resourceAwsAcmCertificateUpdate, | ||
Delete: resourceAwsAcmCertificateDelete, | ||
Importer: &schema.ResourceImporter{ | ||
State: schema.ImportStatePassthrough, | ||
}, | ||
|
||
Schema: map[string]*schema.Schema{ | ||
"domain_name": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"subject_alternative_names": { | ||
Type: schema.TypeList, | ||
Optional: true, | ||
ForceNew: true, | ||
Elem: &schema.Schema{Type: schema.TypeString}, | ||
}, | ||
"validation_method": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"arn": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"domain_validation_options": { | ||
Type: schema.TypeList, | ||
Computed: true, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"domain_name": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"resource_record_name": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"resource_record_type": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"resource_record_value": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
}, | ||
}, | ||
}, | ||
"validation_emails": { | ||
Type: schema.TypeList, | ||
Computed: true, | ||
Elem: &schema.Schema{Type: schema.TypeString}, | ||
}, | ||
"tags": tagsSchema(), | ||
}, | ||
} | ||
} | ||
|
||
func resourceAwsAcmCertificateCreate(d *schema.ResourceData, meta interface{}) error { | ||
acmconn := meta.(*AWSClient).acmconn | ||
params := &acm.RequestCertificateInput{ | ||
DomainName: aws.String(d.Get("domain_name").(string)), | ||
ValidationMethod: aws.String(d.Get("validation_method").(string)), | ||
} | ||
|
||
sans, ok := d.GetOk("subject_alternative_names") | ||
if ok { | ||
sanStrings := sans.([]interface{}) | ||
params.SubjectAlternativeNames = expandStringList(sanStrings) | ||
} | ||
|
||
log.Printf("[DEBUG] ACM Certificate Request: %#v", params) | ||
resp, err := acmconn.RequestCertificate(params) | ||
|
||
if err != nil { | ||
return fmt.Errorf("Error requesting certificate: %s", err) | ||
} | ||
|
||
d.SetId(*resp.CertificateArn) | ||
if v, ok := d.GetOk("tags"); ok { | ||
params := &acm.AddTagsToCertificateInput{ | ||
CertificateArn: resp.CertificateArn, | ||
Tags: tagsFromMapACM(v.(map[string]interface{})), | ||
} | ||
_, err := acmconn.AddTagsToCertificate(params) | ||
|
||
if err != nil { | ||
return fmt.Errorf("Error requesting certificate: %s", err) | ||
} | ||
} | ||
|
||
return resourceAwsAcmCertificateRead(d, meta) | ||
} | ||
|
||
func resourceAwsAcmCertificateRead(d *schema.ResourceData, meta interface{}) error { | ||
acmconn := meta.(*AWSClient).acmconn | ||
|
||
params := &acm.DescribeCertificateInput{ | ||
CertificateArn: aws.String(d.Id()), | ||
} | ||
|
||
return resource.Retry(time.Duration(1)*time.Minute, func() *resource.RetryError { | ||
resp, err := acmconn.DescribeCertificate(params) | ||
|
||
if err != nil { | ||
if isAWSErr(err, acm.ErrCodeResourceNotFoundException, "") { | ||
d.SetId("") | ||
return nil | ||
} | ||
return resource.NonRetryableError(fmt.Errorf("Error describing certificate: %s", err)) | ||
} | ||
|
||
d.Set("domain_name", resp.Certificate.DomainName) | ||
d.Set("arn", resp.Certificate.CertificateArn) | ||
|
||
if err := d.Set("subject_alternative_names", cleanUpSubjectAlternativeNames(resp.Certificate)); err != nil { | ||
return resource.NonRetryableError(err) | ||
} | ||
|
||
domainValidationOptions, emailValidationOptions, err := convertValidationOptions(resp.Certificate) | ||
|
||
if err != nil { | ||
return resource.RetryableError(err) | ||
} | ||
|
||
if err := d.Set("domain_validation_options", domainValidationOptions); err != nil { | ||
return resource.NonRetryableError(err) | ||
} | ||
if err := d.Set("validation_emails", emailValidationOptions); err != nil { | ||
return resource.NonRetryableError(err) | ||
} | ||
d.Set("validation_method", resourceAwsAcmCertificateGuessValidationMethod(domainValidationOptions, emailValidationOptions)) | ||
|
||
params := &acm.ListTagsForCertificateInput{ | ||
CertificateArn: aws.String(d.Id()), | ||
} | ||
|
||
tagResp, err := acmconn.ListTagsForCertificate(params) | ||
if err := d.Set("tags", tagsToMapACM(tagResp.Tags)); err != nil { | ||
return resource.NonRetryableError(err) | ||
} | ||
|
||
return nil | ||
}) | ||
} | ||
func resourceAwsAcmCertificateGuessValidationMethod(domainValidationOptions []map[string]interface{}, emailValidationOptions []string) string { | ||
// The DescribeCertificate Response doesn't have information on what validation method was used | ||
// so we need to guess from the validation options we see... | ||
if len(domainValidationOptions) > 0 { | ||
return acm.ValidationMethodDns | ||
} else if len(emailValidationOptions) > 0 { | ||
return acm.ValidationMethodEmail | ||
} else { | ||
return "NONE" | ||
} | ||
} | ||
|
||
func resourceAwsAcmCertificateUpdate(d *schema.ResourceData, meta interface{}) error { | ||
if d.HasChange("tags") { | ||
acmconn := meta.(*AWSClient).acmconn | ||
err := setTagsACM(acmconn, d) | ||
if err != nil { | ||
return err | ||
} | ||
} | ||
return nil | ||
} | ||
|
||
func cleanUpSubjectAlternativeNames(cert *acm.CertificateDetail) []string { | ||
sans := cert.SubjectAlternativeNames | ||
vs := make([]string, 0, len(sans)-1) | ||
for _, v := range sans { | ||
if *v != *cert.DomainName { | ||
vs = append(vs, *v) | ||
} | ||
} | ||
return vs | ||
|
||
} | ||
|
||
func convertValidationOptions(certificate *acm.CertificateDetail) ([]map[string]interface{}, []string, error) { | ||
var domainValidationResult []map[string]interface{} | ||
var emailValidationResult []string | ||
|
||
if *certificate.Type == acm.CertificateTypeAmazonIssued { | ||
for _, o := range certificate.DomainValidationOptions { | ||
if o.ResourceRecord != nil { | ||
validationOption := map[string]interface{}{ | ||
"domain_name": *o.DomainName, | ||
"resource_record_name": *o.ResourceRecord.Name, | ||
"resource_record_type": *o.ResourceRecord.Type, | ||
"resource_record_value": *o.ResourceRecord.Value, | ||
} | ||
domainValidationResult = append(domainValidationResult, validationOption) | ||
} else if o.ValidationEmails != nil && len(o.ValidationEmails) > 0 { | ||
for _, validationEmail := range o.ValidationEmails { | ||
emailValidationResult = append(emailValidationResult, *validationEmail) | ||
} | ||
} else { | ||
log.Printf("[DEBUG] No validation options need to retry: %#v", o) | ||
return nil, nil, fmt.Errorf("No validation options need to retry: %#v", o) | ||
} | ||
} | ||
} | ||
|
||
return domainValidationResult, emailValidationResult, nil | ||
} | ||
|
||
func resourceAwsAcmCertificateDelete(d *schema.ResourceData, meta interface{}) error { | ||
acmconn := meta.(*AWSClient).acmconn | ||
|
||
params := &acm.DeleteCertificateInput{ | ||
CertificateArn: aws.String(d.Id()), | ||
} | ||
|
||
_, err := acmconn.DeleteCertificate(params) | ||
|
||
if err != nil && !isAWSErr(err, acm.ErrCodeResourceNotFoundException, "") { | ||
return fmt.Errorf("Error deleting certificate: %s", err) | ||
} | ||
|
||
d.SetId("") | ||
return nil | ||
} |
Oops, something went wrong.