Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

r/aws_location_place_index - new resource #24821

Merged
merged 8 commits into from
May 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/24821.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
aws_location_place_index
```
3 changes: 2 additions & 1 deletion internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -1610,7 +1610,8 @@ func Provider() *schema.Provider {
"aws_lightsail_static_ip": lightsail.ResourceStaticIP(),
"aws_lightsail_static_ip_attachment": lightsail.ResourceStaticIPAttachment(),

"aws_location_map": location.ResourceMap(),
"aws_location_map": location.ResourceMap(),
"aws_location_place_index": location.ResourcePlaceIndex(),

"aws_macie_member_account_association": macie.ResourceMemberAccountAssociation(),
"aws_macie_s3_bucket_association": macie.ResourceS3BucketAssociation(),
Expand Down
256 changes: 256 additions & 0 deletions internal/service/location/place_index.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,256 @@
package location

import (
"fmt"
"log"
"time"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/locationservice"
"github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2/tfawserr"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
"github.com/hashicorp/terraform-provider-aws/internal/conns"
tftags "github.com/hashicorp/terraform-provider-aws/internal/tags"
"github.com/hashicorp/terraform-provider-aws/internal/verify"
)

func ResourcePlaceIndex() *schema.Resource {
return &schema.Resource{
Create: resourcePlaceIndexCreate,
Read: resourcePlaceIndexRead,
Update: resourcePlaceIndexUpdate,
Delete: resourcePlaceIndexDelete,
Importer: &schema.ResourceImporter{
State: schema.ImportStatePassthrough,
},
Schema: map[string]*schema.Schema{
"create_time": {
Type: schema.TypeString,
Computed: true,
},
"data_source": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"data_source_configuration": {
Type: schema.TypeList,
Optional: true,
Computed: true,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"intended_use": {
Type: schema.TypeString,
Optional: true,
Default: locationservice.IntendedUseSingleUse,
ValidateFunc: validation.StringInSlice(locationservice.IntendedUse_Values(), false),
},
},
},
},
"description": {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.StringLenBetween(0, 1000),
},
"index_arn": {
Type: schema.TypeString,
Computed: true,
},
"index_name": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: validation.StringLenBetween(1, 100),
},
"update_time": {
Type: schema.TypeString,
Computed: true,
},
"tags": tftags.TagsSchema(),
"tags_all": tftags.TagsSchemaComputed(),
},
CustomizeDiff: verify.SetTagsDiff,
}
}

func resourcePlaceIndexCreate(d *schema.ResourceData, meta interface{}) error {
conn := meta.(*conns.AWSClient).LocationConn
defaultTagsConfig := meta.(*conns.AWSClient).DefaultTagsConfig
tags := defaultTagsConfig.MergeTags(tftags.New(d.Get("tags").(map[string]interface{})))

input := &locationservice.CreatePlaceIndexInput{}

if v, ok := d.GetOk("data_source"); ok {
input.DataSource = aws.String(v.(string))
}

if v, ok := d.GetOk("data_source_configuration"); ok && len(v.([]interface{})) > 0 && v.([]interface{})[0] != nil {
input.DataSourceConfiguration = expandDataSourceConfiguration(v.([]interface{})[0].(map[string]interface{}))
}

if v, ok := d.GetOk("description"); ok {
input.Description = aws.String(v.(string))
}

if v, ok := d.GetOk("index_name"); ok {
input.IndexName = aws.String(v.(string))
}

if len(tags) > 0 {
input.Tags = Tags(tags.IgnoreAWS())
}

output, err := conn.CreatePlaceIndex(input)

if err != nil {
return fmt.Errorf("error creating place index: %w", err)
}

if output == nil {
return fmt.Errorf("error creating place index: empty result")
}

d.SetId(aws.StringValue(output.IndexName))

return resourcePlaceIndexRead(d, meta)
}

func resourcePlaceIndexRead(d *schema.ResourceData, meta interface{}) error {
conn := meta.(*conns.AWSClient).LocationConn
defaultTagsConfig := meta.(*conns.AWSClient).DefaultTagsConfig
ignoreTagsConfig := meta.(*conns.AWSClient).IgnoreTagsConfig

input := &locationservice.DescribePlaceIndexInput{
IndexName: aws.String(d.Id()),
}

output, err := conn.DescribePlaceIndex(input)

if !d.IsNewResource() && tfawserr.ErrCodeEquals(err, locationservice.ErrCodeResourceNotFoundException) {
log.Printf("[WARN] Location Service Place Index (%s) not found, removing from state", d.Id())
d.SetId("")
return nil
}

if err != nil {
return fmt.Errorf("error getting Location Service Place Index (%s): %w", d.Id(), err)
}

if output == nil {
return fmt.Errorf("error getting Location Service Place Index (%s): empty response", d.Id())
}

d.Set("create_time", aws.TimeValue(output.CreateTime).Format(time.RFC3339))
d.Set("data_source", output.DataSource)

if output.DataSourceConfiguration != nil {
d.Set("data_source_configuration", []interface{}{flattenDataSourceConfiguration(output.DataSourceConfiguration)})
} else {
d.Set("data_source_configuration", nil)
}

d.Set("description", output.Description)
d.Set("index_arn", output.IndexArn)
d.Set("index_name", output.IndexName)

tags := KeyValueTags(output.Tags).IgnoreAWS().IgnoreConfig(ignoreTagsConfig)

if err := d.Set("tags", tags.RemoveDefaultConfig(defaultTagsConfig).Map()); err != nil {
return fmt.Errorf("error setting tags: %w", err)
}

if err := d.Set("tags_all", tags.Map()); err != nil {
return fmt.Errorf("error setting tags_all: %w", err)
}

d.Set("update_time", aws.TimeValue(output.UpdateTime).Format(time.RFC3339))

return nil
}

func resourcePlaceIndexUpdate(d *schema.ResourceData, meta interface{}) error {
conn := meta.(*conns.AWSClient).LocationConn

if d.HasChanges("data_source_configuration", "description") {
input := &locationservice.UpdatePlaceIndexInput{
IndexName: aws.String(d.Id()),
// Deprecated but still required by the API
PricingPlan: aws.String(locationservice.PricingPlanRequestBasedUsage),
}

if v, ok := d.GetOk("data_source_configuration"); ok && len(v.([]interface{})) > 0 && v.([]interface{})[0] != nil {
input.DataSourceConfiguration = expandDataSourceConfiguration(v.([]interface{})[0].(map[string]interface{}))
}

if v, ok := d.GetOk("description"); ok {
input.Description = aws.String(v.(string))
}

_, err := conn.UpdatePlaceIndex(input)

if err != nil {
return fmt.Errorf("error updating Location Service Place Index (%s): %w", d.Id(), err)
}
}

if d.HasChange("tags_all") {
o, n := d.GetChange("tags_all")

if err := UpdateTags(conn, d.Get("index_arn").(string), o, n); err != nil {
return fmt.Errorf("error updating tags for Location Service Place Index (%s): %w", d.Id(), err)
}
}

return resourcePlaceIndexRead(d, meta)
}

func resourcePlaceIndexDelete(d *schema.ResourceData, meta interface{}) error {
conn := meta.(*conns.AWSClient).LocationConn

input := &locationservice.DeletePlaceIndexInput{
IndexName: aws.String(d.Id()),
}

_, err := conn.DeletePlaceIndex(input)

if tfawserr.ErrCodeEquals(err, locationservice.ErrCodeResourceNotFoundException) {
return nil
}

if err != nil {
return fmt.Errorf("error deleting Location Service Place Index (%s): %w", d.Id(), err)
}

return nil
}

func expandDataSourceConfiguration(tfMap map[string]interface{}) *locationservice.DataSourceConfiguration {
if tfMap == nil {
return nil
}

apiObject := &locationservice.DataSourceConfiguration{}

if v, ok := tfMap["intended_use"].(string); ok && v != "" {
apiObject.IntendedUse = aws.String(v)
}

return apiObject
}

func flattenDataSourceConfiguration(apiObject *locationservice.DataSourceConfiguration) map[string]interface{} {
if apiObject == nil {
return nil
}

tfMap := map[string]interface{}{}

if v := apiObject.IntendedUse; v != nil {
tfMap["intended_use"] = aws.StringValue(v)
}

return tfMap
}
Loading