Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New resource: aws_pinpoint_apns_channel #6194

Merged
merged 2 commits into from
Oct 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions aws/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -678,6 +678,7 @@ func Provider() terraform.ResourceProvider {
"aws_batch_job_queue": resourceAwsBatchJobQueue(),
"aws_pinpoint_app": resourceAwsPinpointApp(),
"aws_pinpoint_adm_channel": resourceAwsPinpointADMChannel(),
"aws_pinpoint_apns_channel": resourceAwsPinpointAPNSChannel(),
"aws_pinpoint_baidu_channel": resourceAwsPinpointBaiduChannel(),
"aws_pinpoint_email_channel": resourceAwsPinpointEmailChannel(),
"aws_pinpoint_event_stream": resourceAwsPinpointEventStream(),
Expand Down
159 changes: 159 additions & 0 deletions aws/resource_aws_pinpoint_apns_channel.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
package aws

import (
"errors"
"fmt"
"log"

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

func resourceAwsPinpointAPNSChannel() *schema.Resource {
return &schema.Resource{
Create: resourceAwsPinpointAPNSChannelUpsert,
Read: resourceAwsPinpointAPNSChannelRead,
Update: resourceAwsPinpointAPNSChannelUpsert,
Delete: resourceAwsPinpointAPNSChannelDelete,
Importer: &schema.ResourceImporter{
State: schema.ImportStatePassthrough,
},

Schema: map[string]*schema.Schema{
"application_id": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"bundle_id": {
Type: schema.TypeString,
Optional: true,
Sensitive: true,
},
"certificate": {
Type: schema.TypeString,
Optional: true,
Sensitive: true,
},
"default_authentication_method": {
Type: schema.TypeString,
Optional: true,
},
"enabled": {
Type: schema.TypeBool,
Optional: true,
Default: true,
},
"private_key": {
Type: schema.TypeString,
Optional: true,
Sensitive: true,
},
"team_id": {
Type: schema.TypeString,
Optional: true,
Sensitive: true,
},
"token_key": {
Type: schema.TypeString,
Optional: true,
Sensitive: true,
},
"token_key_id": {
Type: schema.TypeString,
Optional: true,
Sensitive: true,
},
},
}
}

func resourceAwsPinpointAPNSChannelUpsert(d *schema.ResourceData, meta interface{}) error {
certificate, certificateOk := d.GetOk("certificate")
privateKey, privateKeyOk := d.GetOk("private_key")

bundleId, bundleIdOk := d.GetOk("bundle_id")
teamId, teamIdOk := d.GetOk("team_id")
tokenKey, tokenKeyOk := d.GetOk("token_key")
tokenKeyId, tokenKeyIdOk := d.GetOk("token_key_id")

if !(certificateOk && privateKeyOk) && !(bundleIdOk && teamIdOk && tokenKeyOk && tokenKeyIdOk) {
return errors.New("At least one set of credentials is required; either [certificate, private_key] or [bundle_id, team_id, token_key, token_key_id]")
}

conn := meta.(*AWSClient).pinpointconn

applicationId := d.Get("application_id").(string)

params := &pinpoint.APNSChannelRequest{}

params.DefaultAuthenticationMethod = aws.String(d.Get("default_authentication_method").(string))
params.Enabled = aws.Bool(d.Get("enabled").(bool))

params.Certificate = aws.String(certificate.(string))
params.PrivateKey = aws.String(privateKey.(string))

params.BundleId = aws.String(bundleId.(string))
params.TeamId = aws.String(teamId.(string))
params.TokenKey = aws.String(tokenKey.(string))
params.TokenKeyId = aws.String(tokenKeyId.(string))

req := pinpoint.UpdateApnsChannelInput{
ApplicationId: aws.String(applicationId),
APNSChannelRequest: params,
}

_, err := conn.UpdateApnsChannel(&req)
if err != nil {
return fmt.Errorf("error updating Pinpoint APNs Channel for Application %s: %s", applicationId, err)
}

d.SetId(applicationId)

return resourceAwsPinpointAPNSChannelRead(d, meta)
}

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

log.Printf("[INFO] Reading Pinpoint APNs Channel for Application %s", d.Id())

output, err := conn.GetApnsChannel(&pinpoint.GetApnsChannelInput{
ApplicationId: aws.String(d.Id()),
})
if err != nil {
if isAWSErr(err, pinpoint.ErrCodeNotFoundException, "") {
log.Printf("[WARN] Pinpoint APNs Channel for application %s not found, error code (404)", d.Id())
d.SetId("")
return nil
}

return fmt.Errorf("error getting Pinpoint APNs Channel for application %s: %s", d.Id(), err)
}

d.Set("application_id", output.APNSChannelResponse.ApplicationId)
d.Set("default_authentication_method", output.APNSChannelResponse.DefaultAuthenticationMethod)
d.Set("enabled", output.APNSChannelResponse.Enabled)
// Sensitive params are not returned

return nil
}

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

log.Printf("[DEBUG] Deleting Pinpoint APNs Channel: %s", d.Id())
_, err := conn.DeleteApnsChannel(&pinpoint.DeleteApnsChannelInput{
ApplicationId: aws.String(d.Id()),
})

if isAWSErr(err, pinpoint.ErrCodeNotFoundException, "") {
return nil
}

if err != nil {
return fmt.Errorf("error deleting Pinpoint APNs Channel for Application %s: %s", d.Id(), err)
}
return nil
}
Loading