Changing the IAM Role resource to allow update of Assume Policy Document
This commit is contained in:
parent
c073c1fece
commit
fece57f83b
|
@ -15,8 +15,7 @@ func resourceAwsIamRole() *schema.Resource {
|
||||||
return &schema.Resource{
|
return &schema.Resource{
|
||||||
Create: resourceAwsIamRoleCreate,
|
Create: resourceAwsIamRoleCreate,
|
||||||
Read: resourceAwsIamRoleRead,
|
Read: resourceAwsIamRoleRead,
|
||||||
// TODO
|
Update: resourceAwsIamRoleUpdate,
|
||||||
//Update: resourceAwsIamRoleUpdate,
|
|
||||||
Delete: resourceAwsIamRoleDelete,
|
Delete: resourceAwsIamRoleDelete,
|
||||||
|
|
||||||
Schema: map[string]*schema.Schema{
|
Schema: map[string]*schema.Schema{
|
||||||
|
@ -55,7 +54,6 @@ func resourceAwsIamRole() *schema.Resource {
|
||||||
"assume_role_policy": &schema.Schema{
|
"assume_role_policy": &schema.Schema{
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Required: true,
|
Required: true,
|
||||||
ForceNew: true,
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -95,6 +93,26 @@ func resourceAwsIamRoleRead(d *schema.ResourceData, meta interface{}) error {
|
||||||
}
|
}
|
||||||
return resourceAwsIamRoleReadResult(d, getResp.Role)
|
return resourceAwsIamRoleReadResult(d, getResp.Role)
|
||||||
}
|
}
|
||||||
|
func resourceAwsIamRoleUpdate(d *schema.ResourceData, meta interface{}) error {
|
||||||
|
iamconn := meta.(*AWSClient).iamconn
|
||||||
|
|
||||||
|
if d.HasChange("assume_role_policy") {
|
||||||
|
assumeRolePolicyInput := &iam.UpdateAssumeRolePolicyInput{
|
||||||
|
RoleName: aws.String(d.Id()),
|
||||||
|
PolicyDocument: aws.String(d.Get("assume_role_policy").(string)),
|
||||||
|
}
|
||||||
|
_, err := iamconn.UpdateAssumeRolePolicy(assumeRolePolicyInput)
|
||||||
|
if err != nil {
|
||||||
|
if iamerr, ok := err.(awserr.Error); ok && iamerr.Code() == "NoSuchEntity" {
|
||||||
|
d.SetId("")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return fmt.Errorf("Error Updating IAM Role (%s) Assume Role Policy: %s", d.Id(), err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func resourceAwsIamRoleReadResult(d *schema.ResourceData, role *iam.Role) error {
|
func resourceAwsIamRoleReadResult(d *schema.ResourceData, role *iam.Role) error {
|
||||||
d.SetId(*role.RoleName)
|
d.SetId(*role.RoleName)
|
||||||
|
|
Loading…
Reference in New Issue