Skip to content

kchou94/terraform-spotinst-connect-aws

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Terraform AWS Examples for Spot.io

Introduction

Example Terraform for Spot.io

Details

The module will aid in automatically connecting your AWS Account to Spot via terraform. This will also leverage a python script to call the Spot.io APIs to create a Spot account within your Spot Organization and add the ARN of the created role.

Pre-Reqs

  • Spot Organization Admin API token. This is required to be added as an environment variable stored in SPOTINST_TOKEN.
  • Python 3 installed

###Example

module "spot_account_aws" {
    source = "stevenfeltner/aws-connect/spotinst"

    #AWS Profile (Optional)
    #profile = ""

    #Name of the linked account in Spot (Optional) If none is provided will use AWS account alias as the account name.
    #name = "test-terraform"
  
    #Policy File (Optional) File with policy to attach to role
    #policy_file = example.json
}

output "spot_account_id" {
    value = module.spot_account_aws.spot_account_id
}

Run

This terraform module will do the following:

On Apply:

  • Create AWS IAM Policy
  • Create AWS IAM Role
  • Create Spot Account within current Spot Organization
  • Assign Policy to IAM Role
  • Provide IAM Role to newly created Spot Account

On Destroy: Remove all above resources including deleting the Spot Account

About

A Terraform module to connect Amazon Web Services (AWS) accounts to the Spot platform.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published