mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 15:13:56 -06:00
88c2e29f91
* provider/aws: combine aws alias tests * tweaks * fix up * uncomment
49 lines
1.0 KiB
Go
49 lines
1.0 KiB
Go
package aws
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"time"
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
"github.com/aws/aws-sdk-go/service/iam"
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
)
|
|
|
|
func dataSourceAwsIamAccountAlias() *schema.Resource {
|
|
return &schema.Resource{
|
|
Read: dataSourceAwsIamAccountAliasRead,
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
"account_alias": {
|
|
Type: schema.TypeString,
|
|
Computed: true,
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func dataSourceAwsIamAccountAliasRead(d *schema.ResourceData, meta interface{}) error {
|
|
conn := meta.(*AWSClient).iamconn
|
|
|
|
log.Printf("[DEBUG] Reading IAM Account Aliases.")
|
|
d.SetId(time.Now().UTC().String())
|
|
|
|
req := &iam.ListAccountAliasesInput{}
|
|
resp, err := conn.ListAccountAliases(req)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// 'AccountAliases': [] if there is no alias.
|
|
if resp == nil || len(resp.AccountAliases) == 0 {
|
|
return fmt.Errorf("no IAM account alias found")
|
|
}
|
|
|
|
alias := aws.StringValue(resp.AccountAliases[0])
|
|
log.Printf("[DEBUG] Setting AWS IAM Account Alias to %s.", alias)
|
|
d.Set("account_alias", alias)
|
|
|
|
return nil
|
|
}
|