Skip to content

Commit 4e29cd3

Browse files
committed
chore: update links to documentation
Relate to #1268 [skip ci]
1 parent 1f531b4 commit 4e29cd3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

infra/terraform/my-stamps.tf

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
variable "do_token" {
66
}
77

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
99
provider "digitalocean" {
1010
token = var.do_token
1111
}
1212

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
1414
resource "digitalocean_droplet" "web" {
1515
# "ubuntu-16-04-x64" resolves into Ubuntu 16.04.6 while our server is based on Ubuntu 16.04.1
1616
image = "18572320"
@@ -19,12 +19,12 @@ resource "digitalocean_droplet" "web" {
1919
size = "s-1vcpu-1gb"
2020
}
2121

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
2323
resource "digitalocean_domain" "site" {
2424
name = "my-stamps.ru"
2525
}
2626

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
2828
resource "digitalocean_record" "no-www" {
2929
domain = digitalocean_domain.site.name
3030
type = "A"

0 commit comments

Comments
 (0)