16 lines
265 B
Markdown
16 lines
265 B
Markdown
# digitalocean_droplet
|
|
|
|
## Usage
|
|
|
|
```
|
|
module "test1" {
|
|
source = "git::https://git.fdragon.com/TerraformModules/digitalocean_droplet.git"
|
|
host_name = "hello-world"
|
|
domain_name = "example.com"
|
|
ssh_keys = [
|
|
data.digitalocean_ssh_key.example.id,
|
|
]
|
|
}
|
|
```
|
|
|