-
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 #15562 from DrFaust92/r/codeartifact_permissions
r/codeartifact_repository_permissions_policy - new resource
- Loading branch information
Showing
4 changed files
with
519 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
146 changes: 146 additions & 0 deletions
146
aws/resource_aws_codeartifact_repository_permissions_policy.go
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,146 @@ | ||
package aws | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
|
||
"github.com/aws/aws-sdk-go/aws" | ||
"github.com/aws/aws-sdk-go/service/codeartifact" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" | ||
) | ||
|
||
func resourceAwsCodeArtifactRepositoryPermissionsPolicy() *schema.Resource { | ||
return &schema.Resource{ | ||
Create: resourceAwsCodeArtifactRepositoryPermissionsPolicyPut, | ||
Update: resourceAwsCodeArtifactRepositoryPermissionsPolicyPut, | ||
Read: resourceAwsCodeArtifactRepositoryPermissionsPolicyRead, | ||
Delete: resourceAwsCodeArtifactRepositoryPermissionsPolicyDelete, | ||
Importer: &schema.ResourceImporter{ | ||
State: schema.ImportStatePassthrough, | ||
}, | ||
|
||
Schema: map[string]*schema.Schema{ | ||
"domain": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"repository": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"domain_owner": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
Computed: true, | ||
ForceNew: true, | ||
}, | ||
"policy_document": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ValidateFunc: validation.StringIsJSON, | ||
DiffSuppressFunc: suppressEquivalentJsonDiffs, | ||
}, | ||
"policy_revision": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
Computed: true, | ||
}, | ||
"resource_arn": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func resourceAwsCodeArtifactRepositoryPermissionsPolicyPut(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).codeartifactconn | ||
log.Print("[DEBUG] Creating CodeArtifact Repository Permissions Policy") | ||
|
||
params := &codeartifact.PutRepositoryPermissionsPolicyInput{ | ||
Domain: aws.String(d.Get("domain").(string)), | ||
Repository: aws.String(d.Get("repository").(string)), | ||
PolicyDocument: aws.String(d.Get("policy_document").(string)), | ||
} | ||
|
||
if v, ok := d.GetOk("domain_owner"); ok { | ||
params.DomainOwner = aws.String(v.(string)) | ||
} | ||
|
||
if v, ok := d.GetOk("policy_revision"); ok { | ||
params.PolicyRevision = aws.String(v.(string)) | ||
} | ||
|
||
res, err := conn.PutRepositoryPermissionsPolicy(params) | ||
if err != nil { | ||
return fmt.Errorf("error creating CodeArtifact Repository Permissions Policy: %w", err) | ||
} | ||
|
||
d.SetId(aws.StringValue(res.Policy.ResourceArn)) | ||
|
||
return resourceAwsCodeArtifactRepositoryPermissionsPolicyRead(d, meta) | ||
} | ||
|
||
func resourceAwsCodeArtifactRepositoryPermissionsPolicyRead(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).codeartifactconn | ||
log.Printf("[DEBUG] Reading CodeArtifact Repository Permissions Policy: %s", d.Id()) | ||
|
||
domainOwner, domainName, repoName, err := decodeCodeArtifactRepositoryID(d.Id()) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
dm, err := conn.GetRepositoryPermissionsPolicy(&codeartifact.GetRepositoryPermissionsPolicyInput{ | ||
Domain: aws.String(domainName), | ||
DomainOwner: aws.String(domainOwner), | ||
Repository: aws.String(repoName), | ||
}) | ||
if err != nil { | ||
if isAWSErr(err, codeartifact.ErrCodeResourceNotFoundException, "") { | ||
log.Printf("[WARN] CodeArtifact Repository Permissions Policy %q not found, removing from state", d.Id()) | ||
d.SetId("") | ||
return nil | ||
} | ||
return fmt.Errorf("error reading CodeArtifact Repository Permissions Policy (%s): %w", d.Id(), err) | ||
} | ||
|
||
d.Set("domain", domainName) | ||
d.Set("domain_owner", domainOwner) | ||
d.Set("repository", repoName) | ||
d.Set("resource_arn", dm.Policy.ResourceArn) | ||
d.Set("policy_document", dm.Policy.Document) | ||
d.Set("policy_revision", dm.Policy.Revision) | ||
|
||
return nil | ||
} | ||
|
||
func resourceAwsCodeArtifactRepositoryPermissionsPolicyDelete(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).codeartifactconn | ||
log.Printf("[DEBUG] Deleting CodeArtifact Repository Permissions Policy: %s", d.Id()) | ||
|
||
domainOwner, domainName, repoName, err := decodeCodeArtifactRepositoryID(d.Id()) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
input := &codeartifact.DeleteRepositoryPermissionsPolicyInput{ | ||
Domain: aws.String(domainName), | ||
DomainOwner: aws.String(domainOwner), | ||
Repository: aws.String(repoName), | ||
} | ||
|
||
_, err = conn.DeleteRepositoryPermissionsPolicy(input) | ||
|
||
if isAWSErr(err, codeartifact.ErrCodeResourceNotFoundException, "") { | ||
return nil | ||
} | ||
|
||
if err != nil { | ||
return fmt.Errorf("error deleting CodeArtifact Repository Permissions Policy (%s): %w", d.Id(), err) | ||
} | ||
|
||
return nil | ||
} |
Oops, something went wrong.