Skip to content

Instantly share code, notes, and snippets.

@igordcsouza
Created November 12, 2019 17:49
Show Gist options
  • Save igordcsouza/4b0e87a857ed08168369ffc6957b5654 to your computer and use it in GitHub Desktop.
Save igordcsouza/4b0e87a857ed08168369ffc6957b5654 to your computer and use it in GitHub Desktop.
provider "digitalocean" {}
provider "aws" {
version = "~> 2.0"
region = "us-east-1"
}
terraform {
backend "s3" {
bucket = "icf-tfstates-terraform"
key = "terratest/terraformt.tfstate"
region = "us-east-1"
}
}
resource "digitalocean_droplet" "web" {
image = "ubuntu-18-04-x64"
name = "${terraform.workspace}"
region = "nyc3"
size = "s-1vcpu-1gb"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment