Skip to content

Commit

Permalink
Merge pull request #4 from byu-oit/fix-version-in-readme
Browse files Browse the repository at this point in the history
Fixed readme to show right way to grab versions from github
  • Loading branch information
yoshutch authored Dec 5, 2019
2 parents 91f7acb + f53a834 commit ac6845d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Terraform module that creates an S3 bucket and DynamoDB table for backend state
```hcl
module "backend-s3" {
source = "github.com/byu-oit/terraform-aws-backend-s3"
version = "1.0.1"
ref = "v1.0.2"
}
```

Expand Down
3 changes: 2 additions & 1 deletion examples/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ provider "aws" {
}

module "backend-s3" {
source = "../"
source = "github.com/byu-oit/terraform-aws-backend-s3"
ref = "v1.0.2"
}

output "s3" {
Expand Down

0 comments on commit ac6845d

Please sign in to comment.