Created
July 8, 2019 13:46
-
-
Save wgebis/87c5dbc1ce4af31c62b94dd21f4121f2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "digitalocean_droplet" "my_droplet" { | |
name = "my_droplet_name" | |
image = "debian-9-x64" | |
region = "ams3" | |
size = "s-1vcpu-1gb" | |
private_networking = true | |
monitoring = false | |
backups = false | |
resize_disk = true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment