File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
variable "do_token" {
6
6
}
7
7
8
- # Digital Ocean provider docs: https://www .terraform.io/docs/ providers/do/index.html
8
+ # Digital Ocean provider docs: https://registry .terraform.io/providers/digitalocean/digitalocean/2.28.1/docs
9
9
provider "digitalocean" {
10
10
token = var. do_token
11
11
}
12
12
13
- # Droplet docs: https://www .terraform.io/docs/ providers/do/r /droplet.html
13
+ # Droplet docs: https://registry .terraform.io/providers/digitalocean/digitalocean/2.28.1/docs/resources /droplet.html
14
14
resource "digitalocean_droplet" "web" {
15
15
# "ubuntu-16-04-x64" resolves into Ubuntu 16.04.6 while our server is based on Ubuntu 16.04.1
16
16
image = " 18572320"
@@ -19,12 +19,12 @@ resource "digitalocean_droplet" "web" {
19
19
size = " s-1vcpu-1gb"
20
20
}
21
21
22
- # Domain docs: https://www .terraform.io/docs/ providers/do/r /domain.html
22
+ # Domain docs: https://registry .terraform.io/providers/digitalocean/digitalocean/2.28.1/docs/resources /domain.html
23
23
resource "digitalocean_domain" "site" {
24
24
name = " my-stamps.ru"
25
25
}
26
26
27
- # Record docs: https://www .terraform.io/docs/ providers/do/r /record.html
27
+ # Record docs: https://registry .terraform.io/providers/digitalocean/digitalocean/2.28.1/docs/resources /record.html
28
28
resource "digitalocean_record" "no-www" {
29
29
domain = digitalocean_domain. site . name
30
30
type = " A"
You can’t perform that action at this time.
0 commit comments