We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45b9537 commit 2bd8d05Copy full SHA for 2bd8d05
infra/terraform/README.md
@@ -13,6 +13,7 @@
13
* Import existing configuration (optionally; only first time)
14
```console
15
$ terraform import digitalocean_droplet.web <id>
16
+ $ terraform import digitalocean_domain.site my-stamps.ru
17
```
18
* Plan and apply:
19
infra/terraform/my-stamps.tf
@@ -18,3 +18,7 @@ resource "digitalocean_droplet" "web" {
private_networking = true
}
20
21
+# https://www.terraform.io/docs/providers/do/r/domain.html
22
+resource "digitalocean_domain" "site" {
23
+ name = "my-stamps.ru"
24
+}
0 commit comments