170 lines
4.5 KiB
Go
170 lines
4.5 KiB
Go
package aws
|
|
|
|
import (
|
|
"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 resourceAwsApiGatewayDeployment() *schema.Resource {
|
|
return &schema.Resource{
|
|
Create: resourceAwsApiGatewayDeploymentCreate,
|
|
Read: resourceAwsApiGatewayDeploymentRead,
|
|
Update: resourceAwsApiGatewayDeploymentUpdate,
|
|
Delete: resourceAwsApiGatewayDeploymentDelete,
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
"rest_api_id": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Required: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"stage_name": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Optional: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"description": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Optional: true,
|
|
},
|
|
|
|
"stage_description": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Optional: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"variables": &schema.Schema{
|
|
Type: schema.TypeMap,
|
|
Optional: true,
|
|
ForceNew: true,
|
|
Elem: schema.TypeString,
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func resourceAwsApiGatewayDeploymentCreate(d *schema.ResourceData, meta interface{}) error {
|
|
conn := meta.(*AWSClient).apigateway
|
|
// Create the gateway
|
|
log.Printf("[DEBUG] Creating API Gateway Deployment")
|
|
|
|
variables := make(map[string]string)
|
|
for k, v := range d.Get("variables").(map[string]interface{}) {
|
|
variables[k] = v.(string)
|
|
}
|
|
|
|
var err error
|
|
deployment, err := conn.CreateDeployment(&apigateway.CreateDeploymentInput{
|
|
RestApiId: aws.String(d.Get("rest_api_id").(string)),
|
|
StageName: aws.String(d.Get("stage_name").(string)),
|
|
Description: aws.String(d.Get("description").(string)),
|
|
StageDescription: aws.String(d.Get("stage_description").(string)),
|
|
Variables: aws.StringMap(variables),
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("Error creating API Gateway Deployment: %s", err)
|
|
}
|
|
|
|
d.SetId(*deployment.Id)
|
|
log.Printf("[DEBUG] API Gateway Deployment ID: %s", d.Id())
|
|
|
|
return nil
|
|
}
|
|
|
|
func resourceAwsApiGatewayDeploymentRead(d *schema.ResourceData, meta interface{}) error {
|
|
conn := meta.(*AWSClient).apigateway
|
|
|
|
log.Printf("[DEBUG] Reading API Gateway Deployment %s", d.Id())
|
|
out, err := conn.GetDeployment(&apigateway.GetDeploymentInput{
|
|
RestApiId: aws.String(d.Get("rest_api_id").(string)),
|
|
DeploymentId: aws.String(d.Id()),
|
|
})
|
|
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 Deployment: %s", out)
|
|
d.SetId(*out.Id)
|
|
d.Set("description", out.Description)
|
|
|
|
return nil
|
|
}
|
|
|
|
func resourceAwsApiGatewayDeploymentUpdateOperations(d *schema.ResourceData) []*apigateway.PatchOperation {
|
|
operations := make([]*apigateway.PatchOperation, 0)
|
|
|
|
if d.HasChange("description") {
|
|
operations = append(operations, &apigateway.PatchOperation{
|
|
Op: aws.String("replace"),
|
|
Path: aws.String("/description"),
|
|
Value: aws.String(d.Get("description").(string)),
|
|
})
|
|
}
|
|
|
|
return operations
|
|
}
|
|
|
|
func resourceAwsApiGatewayDeploymentUpdate(d *schema.ResourceData, meta interface{}) error {
|
|
conn := meta.(*AWSClient).apigateway
|
|
|
|
log.Printf("[DEBUG] Updating API Gateway API Key: %s", d.Id())
|
|
|
|
_, err := conn.UpdateDeployment(&apigateway.UpdateDeploymentInput{
|
|
DeploymentId: aws.String(d.Id()),
|
|
RestApiId: aws.String(d.Get("rest_api_id").(string)),
|
|
PatchOperations: resourceAwsApiGatewayDeploymentUpdateOperations(d),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return resourceAwsApiGatewayDeploymentRead(d, meta)
|
|
}
|
|
|
|
func resourceAwsApiGatewayDeploymentDelete(d *schema.ResourceData, meta interface{}) error {
|
|
conn := meta.(*AWSClient).apigateway
|
|
log.Printf("[DEBUG] Deleting API Gateway Deployment: %s", d.Id())
|
|
|
|
return resource.Retry(5*time.Minute, func() *resource.RetryError {
|
|
log.Printf("[DEBUG] schema is %#v", d)
|
|
if _, err := conn.DeleteStage(&apigateway.DeleteStageInput{
|
|
StageName: aws.String(d.Get("stage_name").(string)),
|
|
RestApiId: aws.String(d.Get("rest_api_id").(string)),
|
|
}); err == nil {
|
|
return nil
|
|
}
|
|
|
|
_, err := conn.DeleteDeployment(&apigateway.DeleteDeploymentInput{
|
|
DeploymentId: aws.String(d.Id()),
|
|
RestApiId: aws.String(d.Get("rest_api_id").(string)),
|
|
})
|
|
if err == nil {
|
|
return nil
|
|
}
|
|
|
|
apigatewayErr, ok := err.(awserr.Error)
|
|
if apigatewayErr.Code() == "NotFoundException" {
|
|
return nil
|
|
}
|
|
|
|
if !ok {
|
|
return resource.NonRetryableError(err)
|
|
}
|
|
|
|
return resource.NonRetryableError(err)
|
|
})
|
|
}
|