Merge pull request #3227 from GrayCoder/master
provider/aws Implement username updates properly for aws-sdk-go
This commit is contained in:
commit
8b1f7498af
|
@ -135,6 +135,9 @@ func removeUsersFromGroup(conn *iam.IAM, users []*string, group string) error {
|
||||||
})
|
})
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
if iamerr, ok := err.(awserr.Error); ok && iamerr.Code() == "NoSuchEntity" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,9 +14,7 @@ func resourceAwsIamUser() *schema.Resource {
|
||||||
return &schema.Resource{
|
return &schema.Resource{
|
||||||
Create: resourceAwsIamUserCreate,
|
Create: resourceAwsIamUserCreate,
|
||||||
Read: resourceAwsIamUserRead,
|
Read: resourceAwsIamUserRead,
|
||||||
// There is an UpdateUser API call, but goamz doesn't support it yet.
|
Update: resourceAwsIamUserUpdate,
|
||||||
// XXX but we aren't using goamz anymore.
|
|
||||||
//Update: resourceAwsIamUserUpdate,
|
|
||||||
Delete: resourceAwsIamUserDelete,
|
Delete: resourceAwsIamUserDelete,
|
||||||
|
|
||||||
Schema: map[string]*schema.Schema{
|
Schema: map[string]*schema.Schema{
|
||||||
|
@ -39,7 +37,6 @@ func resourceAwsIamUser() *schema.Resource {
|
||||||
"name": &schema.Schema{
|
"name": &schema.Schema{
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Required: true,
|
Required: true,
|
||||||
ForceNew: true,
|
|
||||||
},
|
},
|
||||||
"path": &schema.Schema{
|
"path": &schema.Schema{
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
|
@ -54,9 +51,10 @@ func resourceAwsIamUser() *schema.Resource {
|
||||||
func resourceAwsIamUserCreate(d *schema.ResourceData, meta interface{}) error {
|
func resourceAwsIamUserCreate(d *schema.ResourceData, meta interface{}) error {
|
||||||
iamconn := meta.(*AWSClient).iamconn
|
iamconn := meta.(*AWSClient).iamconn
|
||||||
name := d.Get("name").(string)
|
name := d.Get("name").(string)
|
||||||
|
path := d.Get("path").(string)
|
||||||
|
|
||||||
request := &iam.CreateUserInput{
|
request := &iam.CreateUserInput{
|
||||||
Path: aws.String(d.Get("path").(string)),
|
Path: aws.String(path),
|
||||||
UserName: aws.String(name),
|
UserName: aws.String(name),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -69,9 +67,9 @@ func resourceAwsIamUserCreate(d *schema.ResourceData, meta interface{}) error {
|
||||||
|
|
||||||
func resourceAwsIamUserRead(d *schema.ResourceData, meta interface{}) error {
|
func resourceAwsIamUserRead(d *schema.ResourceData, meta interface{}) error {
|
||||||
iamconn := meta.(*AWSClient).iamconn
|
iamconn := meta.(*AWSClient).iamconn
|
||||||
|
name := d.Get("name").(string)
|
||||||
request := &iam.GetUserInput{
|
request := &iam.GetUserInput{
|
||||||
UserName: aws.String(d.Id()),
|
UserName: aws.String(name),
|
||||||
}
|
}
|
||||||
|
|
||||||
getResp, err := iamconn.GetUser(request)
|
getResp, err := iamconn.GetUser(request)
|
||||||
|
@ -102,6 +100,29 @@ func resourceAwsIamUserReadResult(d *schema.ResourceData, user *iam.User) error
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func resourceAwsIamUserUpdate(d *schema.ResourceData, meta interface{}) error {
|
||||||
|
if d.HasChange("name") || d.HasChange("path") {
|
||||||
|
iamconn := meta.(*AWSClient).iamconn
|
||||||
|
on, nn := d.GetChange("name")
|
||||||
|
op, np := d.GetChange("path")
|
||||||
|
fmt.Println(on, nn, op, np)
|
||||||
|
request := &iam.UpdateUserInput{
|
||||||
|
UserName: aws.String(on.(string)),
|
||||||
|
NewUserName: aws.String(nn.(string)),
|
||||||
|
NewPath: aws.String(np.(string)),
|
||||||
|
}
|
||||||
|
_, err := iamconn.UpdateUser(request)
|
||||||
|
if err != nil {
|
||||||
|
if iamerr, ok := err.(awserr.Error); ok && iamerr.Code() == "NoSuchEntity" {
|
||||||
|
d.SetId("")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return fmt.Errorf("Error updating IAM User %s: %s", d.Id(), err)
|
||||||
|
}
|
||||||
|
return resourceAwsIamUserRead(d, meta)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
func resourceAwsIamUserDelete(d *schema.ResourceData, meta interface{}) error {
|
func resourceAwsIamUserDelete(d *schema.ResourceData, meta interface{}) error {
|
||||||
iamconn := meta.(*AWSClient).iamconn
|
iamconn := meta.(*AWSClient).iamconn
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,14 @@ func TestAccAWSUser_basic(t *testing.T) {
|
||||||
Config: testAccAWSUserConfig,
|
Config: testAccAWSUserConfig,
|
||||||
Check: resource.ComposeTestCheckFunc(
|
Check: resource.ComposeTestCheckFunc(
|
||||||
testAccCheckAWSUserExists("aws_iam_user.user", &conf),
|
testAccCheckAWSUserExists("aws_iam_user.user", &conf),
|
||||||
testAccCheckAWSUserAttributes(&conf),
|
testAccCheckAWSUserAttributes(&conf, "test-user", "/"),
|
||||||
|
),
|
||||||
|
},
|
||||||
|
resource.TestStep{
|
||||||
|
Config: testAccAWSUserConfig2,
|
||||||
|
Check: resource.ComposeTestCheckFunc(
|
||||||
|
testAccCheckAWSUserExists("aws_iam_user.user", &conf),
|
||||||
|
testAccCheckAWSUserAttributes(&conf, "test-user2", "/path2/"),
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -85,13 +92,13 @@ func testAccCheckAWSUserExists(n string, res *iam.GetUserOutput) resource.TestCh
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func testAccCheckAWSUserAttributes(user *iam.GetUserOutput) resource.TestCheckFunc {
|
func testAccCheckAWSUserAttributes(user *iam.GetUserOutput, name string, path string) resource.TestCheckFunc {
|
||||||
return func(s *terraform.State) error {
|
return func(s *terraform.State) error {
|
||||||
if *user.User.UserName != "test-user" {
|
if *user.User.UserName != name {
|
||||||
return fmt.Errorf("Bad name: %s", *user.User.UserName)
|
return fmt.Errorf("Bad name: %s", *user.User.UserName)
|
||||||
}
|
}
|
||||||
|
|
||||||
if *user.User.Path != "/" {
|
if *user.User.Path != path {
|
||||||
return fmt.Errorf("Bad path: %s", *user.User.Path)
|
return fmt.Errorf("Bad path: %s", *user.User.Path)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -105,3 +112,9 @@ resource "aws_iam_user" "user" {
|
||||||
path = "/"
|
path = "/"
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
const testAccAWSUserConfig2 = `
|
||||||
|
resource "aws_iam_user" "user" {
|
||||||
|
name = "test-user2"
|
||||||
|
path = "/path2/"
|
||||||
|
}
|
||||||
|
`
|
||||||
|
|
Loading…
Reference in New Issue