-
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 #10401 from mjgpy3/add_quicksight_user_resource
Add quicksight user resource
- Loading branch information
Showing
5 changed files
with
483 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,227 @@ | ||
package aws | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"strings" | ||
|
||
"github.com/hashicorp/terraform-plugin-sdk/helper/schema" | ||
"github.com/hashicorp/terraform-plugin-sdk/helper/validation" | ||
|
||
"github.com/aws/aws-sdk-go/aws" | ||
"github.com/aws/aws-sdk-go/service/quicksight" | ||
) | ||
|
||
func resourceAwsQuickSightUser() *schema.Resource { | ||
return &schema.Resource{ | ||
Create: resourceAwsQuickSightUserCreate, | ||
Read: resourceAwsQuickSightUserRead, | ||
Update: resourceAwsQuickSightUserUpdate, | ||
Delete: resourceAwsQuickSightUserDelete, | ||
|
||
Schema: map[string]*schema.Schema{ | ||
"arn": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
|
||
"aws_account_id": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
Computed: true, | ||
ForceNew: true, | ||
}, | ||
|
||
"email": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
|
||
"iam_arn": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
ForceNew: true, | ||
}, | ||
|
||
"identity_type": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
ValidateFunc: validation.StringInSlice([]string{ | ||
quicksight.IdentityTypeIam, | ||
quicksight.IdentityTypeQuicksight, | ||
}, false), | ||
}, | ||
|
||
"namespace": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
ForceNew: true, | ||
Default: "default", | ||
ValidateFunc: validation.StringInSlice([]string{ | ||
"default", | ||
}, false), | ||
}, | ||
|
||
"session_name": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
ForceNew: true, | ||
}, | ||
|
||
"user_name": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
ValidateFunc: validation.NoZeroValues, | ||
}, | ||
|
||
"user_role": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
ValidateFunc: validation.StringInSlice([]string{ | ||
quicksight.UserRoleReader, | ||
quicksight.UserRoleAuthor, | ||
quicksight.UserRoleAdmin, | ||
}, false), | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func resourceAwsQuickSightUserCreate(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).quicksightconn | ||
|
||
awsAccountID := meta.(*AWSClient).accountid | ||
|
||
namespace := d.Get("namespace").(string) | ||
|
||
if v, ok := d.GetOk("aws_account_id"); ok { | ||
awsAccountID = v.(string) | ||
} | ||
|
||
createOpts := &quicksight.RegisterUserInput{ | ||
AwsAccountId: aws.String(awsAccountID), | ||
Email: aws.String(d.Get("email").(string)), | ||
IdentityType: aws.String(d.Get("identity_type").(string)), | ||
Namespace: aws.String(namespace), | ||
UserRole: aws.String(d.Get("user_role").(string)), | ||
} | ||
|
||
if v, ok := d.GetOk("iam_arn"); ok { | ||
createOpts.IamArn = aws.String(v.(string)) | ||
} | ||
|
||
if v, ok := d.GetOk("session_name"); ok { | ||
createOpts.SessionName = aws.String(v.(string)) | ||
} | ||
|
||
if v, ok := d.GetOk("user_name"); ok { | ||
createOpts.UserName = aws.String(v.(string)) | ||
} | ||
|
||
resp, err := conn.RegisterUser(createOpts) | ||
if err != nil { | ||
return fmt.Errorf("Error registering QuickSight user: %s", err) | ||
} | ||
|
||
d.SetId(fmt.Sprintf("%s/%s/%s", awsAccountID, namespace, aws.StringValue(resp.User.UserName))) | ||
|
||
return resourceAwsQuickSightUserRead(d, meta) | ||
} | ||
|
||
func resourceAwsQuickSightUserRead(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).quicksightconn | ||
|
||
awsAccountID, namespace, userName, err := resourceAwsQuickSightUserParseID(d.Id()) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
descOpts := &quicksight.DescribeUserInput{ | ||
AwsAccountId: aws.String(awsAccountID), | ||
Namespace: aws.String(namespace), | ||
UserName: aws.String(userName), | ||
} | ||
|
||
resp, err := conn.DescribeUser(descOpts) | ||
if isAWSErr(err, quicksight.ErrCodeResourceNotFoundException, "") { | ||
log.Printf("[WARN] QuickSight User %s is not found", d.Id()) | ||
d.SetId("") | ||
return nil | ||
} | ||
if err != nil { | ||
return fmt.Errorf("Error describing QuickSight User (%s): %s", d.Id(), err) | ||
} | ||
|
||
d.Set("arn", resp.User.Arn) | ||
d.Set("aws_account_id", awsAccountID) | ||
d.Set("email", resp.User.Email) | ||
d.Set("namespace", namespace) | ||
d.Set("user_role", resp.User.Role) | ||
d.Set("user_name", resp.User.UserName) | ||
|
||
return nil | ||
} | ||
|
||
func resourceAwsQuickSightUserUpdate(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).quicksightconn | ||
|
||
awsAccountID, namespace, userName, err := resourceAwsQuickSightUserParseID(d.Id()) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
updateOpts := &quicksight.UpdateUserInput{ | ||
AwsAccountId: aws.String(awsAccountID), | ||
Email: aws.String(d.Get("email").(string)), | ||
Namespace: aws.String(namespace), | ||
Role: aws.String(d.Get("user_role").(string)), | ||
UserName: aws.String(userName), | ||
} | ||
|
||
_, err = conn.UpdateUser(updateOpts) | ||
if isAWSErr(err, quicksight.ErrCodeResourceNotFoundException, "") { | ||
log.Printf("[WARN] QuickSight User %s is not found", d.Id()) | ||
d.SetId("") | ||
return nil | ||
} | ||
if err != nil { | ||
return fmt.Errorf("Error updating QuickSight User %s: %s", d.Id(), err) | ||
} | ||
|
||
return resourceAwsQuickSightUserRead(d, meta) | ||
} | ||
|
||
func resourceAwsQuickSightUserDelete(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).quicksightconn | ||
|
||
awsAccountID, namespace, userName, err := resourceAwsQuickSightUserParseID(d.Id()) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
deleteOpts := &quicksight.DeleteUserInput{ | ||
AwsAccountId: aws.String(awsAccountID), | ||
Namespace: aws.String(namespace), | ||
UserName: aws.String(userName), | ||
} | ||
|
||
if _, err := conn.DeleteUser(deleteOpts); err != nil { | ||
if isAWSErr(err, quicksight.ErrCodeResourceNotFoundException, "") { | ||
return nil | ||
} | ||
return fmt.Errorf("Error deleting QuickSight User %s: %s", d.Id(), err) | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func resourceAwsQuickSightUserParseID(id string) (string, string, string, error) { | ||
parts := strings.SplitN(id, "/", 3) | ||
if len(parts) < 3 || parts[0] == "" || parts[1] == "" || parts[2] == "" { | ||
return "", "", "", fmt.Errorf("unexpected format of ID (%s), expected AWS_ACCOUNT_ID/NAMESPACE/USER_NAME", id) | ||
} | ||
return parts[0], parts[1], parts[2], nil | ||
} |
Oops, something went wrong.