data "digitalocean_ssh_key" "two_ssh_key" {
name = "two_ssh_key"
}
resource "digitalocean_tag" "foo" {
name = "foo"
}
resource "digitalocean_droplet" "andrey-gumilev-chumkaska" {
image = "ubuntu-14-04-x64"
name = "andrey-gumilev-chumkaska"
region = "lon1"
size = "s-1vcpu-1gb"
private_networking = true
tags = ["${
digitalocean_tag.foo.id}"]
ssh_keys = ["${data.digitalocean_ssh_key.two_ssh_key.id}"]