-
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 branch 'tomjanne-feature/aws-cognito-resource-server'
- Loading branch information
Showing
7 changed files
with
567 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,211 @@ | ||
package aws | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"strings" | ||
|
||
"github.com/aws/aws-sdk-go/aws" | ||
"github.com/aws/aws-sdk-go/service/cognitoidentityprovider" | ||
"github.com/hashicorp/terraform/helper/schema" | ||
"github.com/hashicorp/terraform/helper/validation" | ||
) | ||
|
||
func resourceAwsCognitoResourceServer() *schema.Resource { | ||
return &schema.Resource{ | ||
Create: resourceAwsCognitoResourceServerCreate, | ||
Read: resourceAwsCognitoResourceServerRead, | ||
Update: resourceAwsCognitoResourceServerUpdate, | ||
Delete: resourceAwsCognitoResourceServerDelete, | ||
|
||
Importer: &schema.ResourceImporter{ | ||
State: schema.ImportStatePassthrough, | ||
}, | ||
|
||
// https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_CreateResourceServer.html | ||
Schema: map[string]*schema.Schema{ | ||
"identifier": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"name": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"scope": { | ||
Type: schema.TypeSet, | ||
Optional: true, | ||
MaxItems: 25, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"scope_description": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ValidateFunc: validation.StringLenBetween(1, 256), | ||
}, | ||
"scope_name": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ValidateFunc: validateCognitoResourceServerScopeName, | ||
}, | ||
}, | ||
}, | ||
}, | ||
"user_pool_id": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"scope_identifiers": { | ||
Type: schema.TypeList, | ||
Computed: true, | ||
Elem: &schema.Schema{ | ||
Type: schema.TypeString, | ||
}, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func resourceAwsCognitoResourceServerCreate(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).cognitoidpconn | ||
|
||
identifier := d.Get("identifier").(string) | ||
userPoolID := d.Get("user_pool_id").(string) | ||
|
||
params := &cognitoidentityprovider.CreateResourceServerInput{ | ||
Identifier: aws.String(identifier), | ||
Name: aws.String(d.Get("name").(string)), | ||
UserPoolId: aws.String(userPoolID), | ||
} | ||
|
||
if v, ok := d.GetOk("scope"); ok { | ||
configs := v.(*schema.Set).List() | ||
params.Scopes = expandCognitoResourceServerScope(configs) | ||
} | ||
|
||
log.Printf("[DEBUG] Creating Cognito Resource Server: %s", params) | ||
|
||
_, err := conn.CreateResourceServer(params) | ||
|
||
if err != nil { | ||
return fmt.Errorf("Error creating Cognito Resource Server: %s", err) | ||
} | ||
|
||
d.SetId(fmt.Sprintf("%s|%s", userPoolID, identifier)) | ||
|
||
return resourceAwsCognitoResourceServerRead(d, meta) | ||
} | ||
|
||
func resourceAwsCognitoResourceServerRead(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).cognitoidpconn | ||
|
||
userPoolID, identifier, err := decodeCognitoResourceServerID(d.Id()) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
params := &cognitoidentityprovider.DescribeResourceServerInput{ | ||
Identifier: aws.String(identifier), | ||
UserPoolId: aws.String(userPoolID), | ||
} | ||
|
||
log.Printf("[DEBUG] Reading Cognito Resource Server: %s", params) | ||
|
||
resp, err := conn.DescribeResourceServer(params) | ||
|
||
if err != nil { | ||
if isAWSErr(err, cognitoidentityprovider.ErrCodeResourceNotFoundException, "") { | ||
log.Printf("[WARN] Cognito Resource Server %q not found, removing from state", d.Id()) | ||
d.SetId("") | ||
return nil | ||
} | ||
return err | ||
} | ||
|
||
if resp == nil || resp.ResourceServer == nil { | ||
log.Printf("[WARN] Cognito Resource Server %q not found, removing from state", d.Id()) | ||
d.SetId("") | ||
return nil | ||
} | ||
|
||
d.Set("identifier", resp.ResourceServer.Identifier) | ||
d.Set("name", resp.ResourceServer.Name) | ||
d.Set("user_pool_id", resp.ResourceServer.UserPoolId) | ||
|
||
scopes := flattenCognitoResourceServerScope(resp.ResourceServer.Scopes) | ||
if err := d.Set("scope", scopes); err != nil { | ||
return fmt.Errorf("Failed setting schema: %s", err) | ||
} | ||
|
||
var scopeIdentifiers []string | ||
for _, elem := range scopes { | ||
|
||
scopeIdentifier := fmt.Sprintf("%s/%s", aws.StringValue(resp.ResourceServer.Identifier), elem["scope_name"].(string)) | ||
scopeIdentifiers = append(scopeIdentifiers, scopeIdentifier) | ||
} | ||
d.Set("scope_identifiers", scopeIdentifiers) | ||
return nil | ||
} | ||
|
||
func resourceAwsCognitoResourceServerUpdate(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).cognitoidpconn | ||
|
||
userPoolID, identifier, err := decodeCognitoResourceServerID(d.Id()) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
params := &cognitoidentityprovider.UpdateResourceServerInput{ | ||
Identifier: aws.String(identifier), | ||
Name: aws.String(d.Get("name").(string)), | ||
Scopes: expandCognitoResourceServerScope(d.Get("scope").(*schema.Set).List()), | ||
UserPoolId: aws.String(userPoolID), | ||
} | ||
|
||
log.Printf("[DEBUG] Updating Cognito Resource Server: %s", params) | ||
|
||
_, err = conn.UpdateResourceServer(params) | ||
if err != nil { | ||
return fmt.Errorf("Error updating Cognito Resource Server: %s", err) | ||
} | ||
|
||
return resourceAwsCognitoResourceServerRead(d, meta) | ||
} | ||
|
||
func resourceAwsCognitoResourceServerDelete(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).cognitoidpconn | ||
|
||
userPoolID, identifier, err := decodeCognitoResourceServerID(d.Id()) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
params := &cognitoidentityprovider.DeleteResourceServerInput{ | ||
Identifier: aws.String(identifier), | ||
UserPoolId: aws.String(userPoolID), | ||
} | ||
|
||
log.Printf("[DEBUG] Deleting Resource Server: %s", params) | ||
|
||
_, err = conn.DeleteResourceServer(params) | ||
|
||
if err != nil { | ||
if isAWSErr(err, cognitoidentityprovider.ErrCodeResourceNotFoundException, "") { | ||
return nil | ||
} | ||
return fmt.Errorf("Error deleting Resource Server: %s", err) | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func decodeCognitoResourceServerID(id string) (string, string, error) { | ||
idParts := strings.Split(id, "|") | ||
if len(idParts) != 2 { | ||
return "", "", fmt.Errorf("expected ID in format UserPoolID|Identifier, received: %s", id) | ||
} | ||
return idParts[0], idParts[1], nil | ||
} |
Oops, something went wrong.