2016-03-05 23:15:22 +01:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
2016-05-05 22:14:51 +02:00
|
|
|
"encoding/json"
|
2016-03-05 23:15:22 +01:00
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/awserr"
|
|
|
|
"github.com/aws/aws-sdk-go/service/apigateway"
|
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
|
|
)
|
|
|
|
|
|
|
|
func resourceAwsApiGatewayMethod() *schema.Resource {
|
|
|
|
return &schema.Resource{
|
|
|
|
Create: resourceAwsApiGatewayMethodCreate,
|
|
|
|
Read: resourceAwsApiGatewayMethodRead,
|
|
|
|
Update: resourceAwsApiGatewayMethodUpdate,
|
|
|
|
Delete: resourceAwsApiGatewayMethodDelete,
|
|
|
|
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"rest_api_id": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"resource_id": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"http_method": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
ValidateFunc: validateHTTPMethod,
|
|
|
|
},
|
|
|
|
|
|
|
|
"authorization": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"api_key_required": &schema.Schema{
|
|
|
|
Type: schema.TypeBool,
|
|
|
|
Optional: true,
|
|
|
|
Default: false,
|
|
|
|
},
|
|
|
|
|
|
|
|
"request_models": &schema.Schema{
|
|
|
|
Type: schema.TypeMap,
|
|
|
|
Optional: true,
|
|
|
|
Elem: schema.TypeString,
|
|
|
|
},
|
2016-05-05 22:14:51 +02:00
|
|
|
|
|
|
|
"request_parameters_in_json": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
|
|
|
},
|
2016-03-05 23:15:22 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsApiGatewayMethodCreate(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
conn := meta.(*AWSClient).apigateway
|
|
|
|
|
|
|
|
models := make(map[string]string)
|
|
|
|
for k, v := range d.Get("request_models").(map[string]interface{}) {
|
|
|
|
models[k] = v.(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
parameters := make(map[string]bool)
|
2016-05-05 22:14:51 +02:00
|
|
|
if v, ok := d.GetOk("request_parameters_in_json"); ok {
|
|
|
|
if err := json.Unmarshal([]byte(v.(string)), ¶meters); err != nil {
|
|
|
|
return fmt.Errorf("Error unmarshaling request_parameters_in_json: %s", err)
|
2016-03-05 23:15:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := conn.PutMethod(&apigateway.PutMethodInput{
|
|
|
|
AuthorizationType: aws.String(d.Get("authorization").(string)),
|
|
|
|
HttpMethod: aws.String(d.Get("http_method").(string)),
|
|
|
|
ResourceId: aws.String(d.Get("resource_id").(string)),
|
|
|
|
RestApiId: aws.String(d.Get("rest_api_id").(string)),
|
|
|
|
RequestModels: aws.StringMap(models),
|
2016-05-05 22:14:51 +02:00
|
|
|
// TODO reimplement once [GH-2143](https://github.com/hashicorp/terraform/issues/2143) has been implemented
|
|
|
|
RequestParameters: aws.BoolMap(parameters),
|
2016-03-05 23:15:22 +01:00
|
|
|
ApiKeyRequired: aws.Bool(d.Get("api_key_required").(bool)),
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error creating API Gateway Method: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
d.SetId(fmt.Sprintf("agm-%s-%s-%s", d.Get("rest_api_id").(string), d.Get("resource_id").(string), d.Get("http_method").(string)))
|
|
|
|
log.Printf("[DEBUG] API Gateway Method ID: %s", d.Id())
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsApiGatewayMethodRead(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
conn := meta.(*AWSClient).apigateway
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] Reading API Gateway Method %s", d.Id())
|
|
|
|
out, err := conn.GetMethod(&apigateway.GetMethodInput{
|
|
|
|
HttpMethod: aws.String(d.Get("http_method").(string)),
|
|
|
|
ResourceId: aws.String(d.Get("resource_id").(string)),
|
|
|
|
RestApiId: aws.String(d.Get("rest_api_id").(string)),
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
if awsErr, ok := err.(awserr.Error); ok && awsErr.Code() == "NotFoundException" {
|
|
|
|
d.SetId("")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Printf("[DEBUG] Received API Gateway Method: %s", out)
|
|
|
|
d.SetId(fmt.Sprintf("agm-%s-%s-%s", d.Get("rest_api_id").(string), d.Get("resource_id").(string), d.Get("http_method").(string)))
|
2016-05-05 22:14:51 +02:00
|
|
|
d.Set("request_parameters_in_json", aws.BoolValueMap(out.RequestParameters))
|
2016-03-05 23:15:22 +01:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsApiGatewayMethodUpdate(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
conn := meta.(*AWSClient).apigateway
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] Reading API Gateway Method %s", d.Id())
|
|
|
|
operations := make([]*apigateway.PatchOperation, 0)
|
|
|
|
if d.HasChange("resource_id") {
|
|
|
|
operations = append(operations, &apigateway.PatchOperation{
|
|
|
|
Op: aws.String("replace"),
|
|
|
|
Path: aws.String("/resourceId"),
|
|
|
|
Value: aws.String(d.Get("resource_id").(string)),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if d.HasChange("request_models") {
|
|
|
|
operations = append(operations, expandApiGatewayRequestResponseModelOperations(d, "request_models", "requestModels")...)
|
|
|
|
}
|
|
|
|
|
2016-05-05 22:14:51 +02:00
|
|
|
if d.HasChange("request_parameters_in_json") {
|
|
|
|
ops, err := expandApiGatewayMethodParametersJSONOperations(d, "request_parameters_in_json", "requestParameters")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
operations = append(operations, ops...)
|
|
|
|
}
|
|
|
|
|
2016-03-05 23:15:22 +01:00
|
|
|
method, err := conn.UpdateMethod(&apigateway.UpdateMethodInput{
|
|
|
|
HttpMethod: aws.String(d.Get("http_method").(string)),
|
|
|
|
ResourceId: aws.String(d.Get("resource_id").(string)),
|
|
|
|
RestApiId: aws.String(d.Get("rest_api_id").(string)),
|
|
|
|
PatchOperations: operations,
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] Received API Gateway Method: %s", method)
|
|
|
|
|
|
|
|
return resourceAwsApiGatewayMethodRead(d, meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsApiGatewayMethodDelete(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
conn := meta.(*AWSClient).apigateway
|
|
|
|
log.Printf("[DEBUG] Deleting API Gateway Method: %s", d.Id())
|
|
|
|
|
2016-03-09 23:53:32 +01:00
|
|
|
return resource.Retry(5*time.Minute, func() *resource.RetryError {
|
2016-03-05 23:15:22 +01:00
|
|
|
_, err := conn.DeleteMethod(&apigateway.DeleteMethodInput{
|
2016-03-06 10:20:13 +01:00
|
|
|
HttpMethod: aws.String(d.Get("http_method").(string)),
|
|
|
|
ResourceId: aws.String(d.Get("resource_id").(string)),
|
|
|
|
RestApiId: aws.String(d.Get("rest_api_id").(string)),
|
2016-03-05 23:15:22 +01:00
|
|
|
})
|
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
apigatewayErr, ok := err.(awserr.Error)
|
|
|
|
if apigatewayErr.Code() == "NotFoundException" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if !ok {
|
2016-03-09 23:53:32 +01:00
|
|
|
return resource.NonRetryableError(err)
|
2016-03-05 23:15:22 +01:00
|
|
|
}
|
|
|
|
|
2016-03-09 23:53:32 +01:00
|
|
|
return resource.NonRetryableError(err)
|
2016-03-05 23:15:22 +01:00
|
|
|
})
|
|
|
|
}
|