Skip to content

Commit 05d4159

Browse files
committed
fix readme
1 parent 2573bb2 commit 05d4159

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ This module has a few dependencies:
7272
Here is an example of how you can use this module in your inventory structure:
7373
```hcl
7474
module "firewall" {
75-
source = "clouddrove/firewall/digitalocean"
75+
source = "terraform-do-modules/firewall/digitalocean"
7676
version = "0.15.0"
7777
name = "firewall"
7878
environment = "test"

README.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ usage : |-
3636
Here is an example of how you can use this module in your inventory structure:
3737
```hcl
3838
module "firewall" {
39-
source = "clouddrove/firewall/digitalocean"
39+
source = "terraform-do-modules/firewall/digitalocean"
4040
version = "0.15.0"
4141
name = "firewall"
4242
environment = "test"

_example/example.tf

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ provider "digitalocean" {
66
}
77

88
module "vpc" {
9-
source = "git::https://github.com/terraform-do-modules/terraform-digitalocean-vpc.git?ref=0.15"
9+
source = "terraform-do-modules/vpc/digitalocean"
10+
version = "0.15.0"
1011
name = "vpc"
1112
environment = "test"
1213
label_order = ["environment", "name"]
@@ -18,15 +19,17 @@ module "vpc" {
1819

1920

2021
module "ssh_key" {
21-
source = "git::https://github.com/terraform-do-modules/terraform-digitalocean-ssh-key.git?ref=0.15"
22+
source = "terraform-do-modules/ssh-key/digitalocean"
23+
version = "0.15.0"
2224
key_path = "~/.ssh/id_rsa.pub"
2325
key_name = "devops"
2426
enable_ssh_key = true
2527
}
2628

2729

2830
module "droplet" {
29-
source = "git::https://github.com/terraform-do-modules/terraform-digitalocean-droplet.git?ref=0.15"
31+
source = "terraform-do-modules/droplet/digitalocean"
32+
version = "0.15.0"
3033
name = "droplet"
3134
environment = "test"
3235
label_order = ["environment", "name"]

main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
# tags for resources. You can use terraform-labels to implement a strict
99
# naming convention.
1010
module "labels" {
11-
source = "git::https://github.com/terraform-do-modules/terraform-digitalocean-labels.git?ref=0.15"
11+
source = "terraform-do-modules/labels/digitalocean"
12+
version = "0.15.0"
1213
name = var.name
1314
environment = var.environment
1415
label_order = var.label_order

0 commit comments

Comments
 (0)