Skip to content

Commit

Permalink
* Resolves incorrect repo path in taggings.tf (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
jufemaiz authored and sjauld committed Aug 5, 2019
1 parent 747d392 commit ccfe0ae
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## v0.1.1 (UNRELEASED)

* Resolves incorrect repo path in taggings.tf
(Ref: <https://github.com/ace-teknologi/terraform-iam/issues/12>)

## v0.1.0 (2019-08-05)

* Use of `lookup` instead of `coalesce` for taggings.
Expand Down
2 changes: 1 addition & 1 deletion groups/tagging.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
locals {
tf_module = "groups"
tf_module_repo = "github.com/aceteknologi/terraform-iam"
tf_module_repo = "github.com/ace-teknologi/terraform-iam"
tf_root_path = lookup(var.tags, "tf_path", "unknown")
}

Expand Down
2 changes: 1 addition & 1 deletion roles/tagging.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
locals {
tf_module = "roles"
tf_module_repo = "github.com/aceteknologi/terraform-iam"
tf_module_repo = "github.com/ace-teknologi/terraform-iam"
tf_root_path = lookup(var.tags, "tf_path", "unknown")
}

Expand Down
2 changes: 1 addition & 1 deletion user/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This module generates a single user, and adds them to appropriate groups.

```hcl2
module "stuart" {
source = "git@github.com:aceteknologi/terraform-iam.git//user?ref=v0.1.0"
source = "git@github.com:ace-teknologi/terraform-iam.git//user?ref=v0.1.0"
username = "stuart@aceteknologi.com"
Expand Down
2 changes: 1 addition & 1 deletion user/readme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This module generates a single user, and adds them to appropriate groups.
\`\`\`hcl2
module "stuart" {
source = "git@github.com:aceteknologi/terraform-iam.git//user?ref=v0.1.0"
source = "git@github.com:ace-teknologi/terraform-iam.git//user?ref=v0.1.0"
username = "stuart@aceteknologi.com"
Expand Down
2 changes: 1 addition & 1 deletion user/tagging.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
locals {
tf_module = "user"
tf_module_repo = "github.com/aceteknologi/terraform-iam"
tf_module_repo = "github.com/ace-teknologi/terraform-iam"
tf_root_path = lookup(var.tags, "tf_path", "unknown")
}

Expand Down

0 comments on commit ccfe0ae

Please # to comment.