Skip to content

Commit

Permalink
update readme and examples to use the released module path
Browse files Browse the repository at this point in the history
Signed-off-by: cpanato <ctadeu@gmail.com>
  • Loading branch information
cpanato committed Dec 13, 2022
1 parent d5d233c commit a70227a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ configuration as:

```terraform
module "prober" {
# TODO: Replace this with the appropriate URL when we open things up.
source = "./../../"
source = "chainguard-dev/prober/google"
version = "v0.1.1"
name = "basic-example"
project_id = var.project_id
Expand Down
3 changes: 2 additions & 1 deletion examples/basic/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ variable "project_id" {
}

module "prober" {
source = "./../../"
source = "chainguard-dev/prober/google"
version = "v0.1.1"

name = "basic-example"
project_id = var.project_id
Expand Down
3 changes: 2 additions & 1 deletion examples/complex/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ resource "google_dns_managed_zone" "prober-zone" {
}

module "prober" {
source = "./../../"
source = "chainguard-dev/prober/google"
version = "v0.1.1"

name = "complex-example"
project_id = var.project_id
Expand Down

0 comments on commit a70227a

Please sign in to comment.