Skip to content

Commit 936d2a5

Browse files
committed
chore: remove a deprecated private_networking parameter
Warning: Argument is deprecated on my-stamps.tf line 25, in resource "digitalocean_droplet" "web": 25: private_networking = true This parameter has been deprecated. Use `vpc_uuid` instead to specify a VPC network for the Droplet. If no `vpc_uuid` is provided, the Droplet will be placed in your account's default VPC for the region. Part of #1268 [skip ci]
1 parent f5114e6 commit 936d2a5

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

infra/terraform/my-stamps.tf

+4-5
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@ provider "digitalocean" {
1818
# Droplet docs: https://www.terraform.io/docs/providers/do/r/droplet.html
1919
resource "digitalocean_droplet" "web" {
2020
# "ubuntu-16-04-x64" resolves into Ubuntu 16.04.6 while our server is based on Ubuntu 16.04.1
21-
image = "18572320"
22-
name = "my-stamps.ru"
23-
region = "fra1"
24-
size = "s-1vcpu-1gb"
25-
private_networking = true
21+
image = "18572320"
22+
name = "my-stamps.ru"
23+
region = "fra1"
24+
size = "s-1vcpu-1gb"
2625
}
2726

2827
# Domain docs: https://www.terraform.io/docs/providers/do/r/domain.html

0 commit comments

Comments
 (0)