-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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 #5201 from ewbankkit/issue-4992
New resource: aws_macie_s3_bucket_association
- Loading branch information
Showing
7 changed files
with
517 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
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,206 @@ | ||
package aws | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"strings" | ||
|
||
"github.com/aws/aws-sdk-go/aws" | ||
"github.com/aws/aws-sdk-go/service/macie" | ||
"github.com/hashicorp/terraform/helper/schema" | ||
"github.com/hashicorp/terraform/helper/validation" | ||
) | ||
|
||
func resourceAwsMacieS3BucketAssociation() *schema.Resource { | ||
return &schema.Resource{ | ||
Create: resourceAwsMacieS3BucketAssociationCreate, | ||
Read: resourceAwsMacieS3BucketAssociationRead, | ||
Update: resourceAwsMacieS3BucketAssociationUpdate, | ||
Delete: resourceAwsMacieS3BucketAssociationDelete, | ||
|
||
Schema: map[string]*schema.Schema{ | ||
"bucket_name": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"prefix": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
ForceNew: true, | ||
}, | ||
"member_account_id": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
ForceNew: true, | ||
ValidateFunc: validateAwsAccountId, | ||
}, | ||
"classification_type": { | ||
Type: schema.TypeList, | ||
Optional: true, | ||
Computed: true, | ||
MaxItems: 1, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"continuous": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
Default: macie.S3ContinuousClassificationTypeFull, | ||
ValidateFunc: validation.StringInSlice([]string{macie.S3ContinuousClassificationTypeFull}, false), | ||
}, | ||
"one_time": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
Default: macie.S3OneTimeClassificationTypeNone, | ||
ValidateFunc: validation.StringInSlice([]string{macie.S3OneTimeClassificationTypeFull, macie.S3OneTimeClassificationTypeNone}, false), | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func resourceAwsMacieS3BucketAssociationCreate(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).macieconn | ||
|
||
req := &macie.AssociateS3ResourcesInput{ | ||
S3Resources: []*macie.S3ResourceClassification{ | ||
{ | ||
BucketName: aws.String(d.Get("bucket_name").(string)), | ||
ClassificationType: expandMacieClassificationType(d), | ||
}, | ||
}, | ||
} | ||
if v, ok := d.GetOk("member_account_id"); ok { | ||
req.MemberAccountId = aws.String(v.(string)) | ||
} | ||
if v, ok := d.GetOk("prefix"); ok { | ||
req.S3Resources[0].Prefix = aws.String(v.(string)) | ||
} | ||
|
||
log.Printf("[DEBUG] Creating Macie S3 bucket association: %#v", req) | ||
resp, err := conn.AssociateS3Resources(req) | ||
if err != nil { | ||
return fmt.Errorf("Error creating Macie S3 bucket association: %s", err) | ||
} | ||
if len(resp.FailedS3Resources) > 0 { | ||
return fmt.Errorf("Error creating Macie S3 bucket association: %s", resp.FailedS3Resources[0]) | ||
} | ||
|
||
d.SetId(fmt.Sprintf("%s/%s", d.Get("bucket_name"), d.Get("prefix"))) | ||
return resourceAwsMacieS3BucketAssociationRead(d, meta) | ||
} | ||
|
||
func resourceAwsMacieS3BucketAssociationRead(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).macieconn | ||
|
||
req := &macie.ListS3ResourcesInput{} | ||
if v, ok := d.GetOk("member_account_id"); ok { | ||
req.MemberAccountId = aws.String(v.(string)) | ||
} | ||
|
||
bucketName := d.Get("bucket_name").(string) | ||
prefix := d.Get("prefix") | ||
|
||
var res *macie.S3ResourceClassification | ||
err := conn.ListS3ResourcesPages(req, func(page *macie.ListS3ResourcesOutput, lastPage bool) bool { | ||
for _, v := range page.S3Resources { | ||
if aws.StringValue(v.BucketName) == bucketName && aws.StringValue(v.Prefix) == prefix { | ||
res = v | ||
return false | ||
} | ||
} | ||
|
||
return true | ||
}) | ||
if err != nil { | ||
return fmt.Errorf("Error listing Macie S3 bucket associations: %s", err) | ||
} | ||
|
||
if res == nil { | ||
log.Printf("[WARN] Macie S3 bucket association (%s) not found, removing from state", d.Id()) | ||
d.SetId("") | ||
return nil | ||
} | ||
|
||
if err := d.Set("classification_type", flattenMacieClassificationType(res.ClassificationType)); err != nil { | ||
return fmt.Errorf("error setting classification_type: %s", err) | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func resourceAwsMacieS3BucketAssociationUpdate(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).macieconn | ||
|
||
if d.HasChange("classification_type") { | ||
req := &macie.UpdateS3ResourcesInput{ | ||
S3ResourcesUpdate: []*macie.S3ResourceClassificationUpdate{ | ||
{ | ||
BucketName: aws.String(d.Get("bucket_name").(string)), | ||
ClassificationTypeUpdate: expandMacieClassificationTypeUpdate(d), | ||
}, | ||
}, | ||
} | ||
if v, ok := d.GetOk("member_account_id"); ok { | ||
req.MemberAccountId = aws.String(v.(string)) | ||
} | ||
if v, ok := d.GetOk("prefix"); ok { | ||
req.S3ResourcesUpdate[0].Prefix = aws.String(v.(string)) | ||
} | ||
|
||
log.Printf("[DEBUG] Updating Macie S3 bucket association: %#v", req) | ||
resp, err := conn.UpdateS3Resources(req) | ||
if err != nil { | ||
return fmt.Errorf("Error updating Macie S3 bucket association: %s", err) | ||
} | ||
if len(resp.FailedS3Resources) > 0 { | ||
return fmt.Errorf("Error updating Macie S3 bucket association: %s", resp.FailedS3Resources[0]) | ||
} | ||
} | ||
|
||
return resourceAwsMacieS3BucketAssociationRead(d, meta) | ||
} | ||
|
||
func resourceAwsMacieS3BucketAssociationDelete(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).macieconn | ||
|
||
log.Printf("[DEBUG] Deleting Macie S3 bucket association: %s", d.Id()) | ||
|
||
req := &macie.DisassociateS3ResourcesInput{ | ||
AssociatedS3Resources: []*macie.S3Resource{ | ||
{ | ||
BucketName: aws.String(d.Get("bucket_name").(string)), | ||
}, | ||
}, | ||
} | ||
if v, ok := d.GetOk("member_account_id"); ok { | ||
req.MemberAccountId = aws.String(v.(string)) | ||
} | ||
if v, ok := d.GetOk("prefix"); ok { | ||
req.AssociatedS3Resources[0].Prefix = aws.String(v.(string)) | ||
} | ||
|
||
resp, err := conn.DisassociateS3Resources(req) | ||
if err != nil { | ||
return fmt.Errorf("Error deleting Macie S3 bucket association: %s", err) | ||
} | ||
if len(resp.FailedS3Resources) > 0 { | ||
failed := resp.FailedS3Resources[0] | ||
// { | ||
// ErrorCode: "InvalidInputException", | ||
// ErrorMessage: "The request was rejected. The specified S3 resource (bucket or prefix) is not associated with Macie.", | ||
// FailedItem: { | ||
// BucketName: "tf-macie-example-002" | ||
// } | ||
// } | ||
if aws.StringValue(failed.ErrorCode) == macie.ErrCodeInvalidInputException && | ||
strings.Contains(aws.StringValue(failed.ErrorMessage), "is not associated with Macie") { | ||
return nil | ||
} | ||
return fmt.Errorf("Error deleting Macie S3 bucket association: %s", failed) | ||
} | ||
|
||
return nil | ||
} |
Oops, something went wrong.