diff --git a/modules/identity/README.md b/modules/identity/README.md index 3cc6960..342571d 100644 --- a/modules/identity/README.md +++ b/modules/identity/README.md @@ -71,7 +71,7 @@ locals { } module "IAM" { - path = PATH_TO_MODULE + source = PATH_TO_MODULE tenant_id = "oci.xxxxxxxxx.xxxxxx" memberships = local.memberships @@ -111,14 +111,14 @@ locals { } module "IAM" { - path = PATH_TO_MODULE + source = PATH_TO_MODULE tenant_id = "oci.xxxxxxxxx.xxxxxx" memberships = local.memberships } module "idp_mapping" { - path = PATH_TO_MODULE + source = PATH_TO_MODULE tenant_id = "oci.xxxxxxxxx.xxxxxx" identity_group_mapping = { @@ -150,7 +150,7 @@ Service accounts are accounts that meant to used by machines. When a service acc ```h module "IAM" { - path = PATH_TO_MODULE + source = PATH_TO_MODULE tenant_id = "oci.xxxxxxxxx.xxxxxx" service_accounts = { @@ -201,7 +201,7 @@ locals { } module "top_level_compartments" { - path = PATH_TO_MODULE + source = PATH_TO_MODULE tenant_id = local.tenant_id @@ -223,7 +223,7 @@ module "top_level_compartments" { } module "child_compartments" { - path = PATH_TO_MODULE + source = PATH_TO_MODULE tenant_id = local.tenant_id @@ -246,7 +246,7 @@ Some policies must be attached to the tenancy itself, but not to a compartment. ```h module "tenancy_policies" { - path = PATH_TO_MODULE + source = PATH_TO_MODULE tenant_id = "oci.xxxxxxxxx.xxxxxx" tenancy_policies = { @@ -308,7 +308,7 @@ locals { } module "main_iam" { - path = PATH_TO_MODULE + source = PATH_TO_MODULE tenant_id = local.tenant_id memberships = local.memberships @@ -338,7 +338,7 @@ module "main_iam" { } module "child_compartments" { - path = PATH_TO_MODULE + source = PATH_TO_MODULE tenant_id = local.tenant_id @@ -354,4 +354,4 @@ module "child_compartments" { } } } -``` \ No newline at end of file +``` diff --git a/releases.md b/releases.md index a04528f..d6729f8 100644 --- a/releases.md +++ b/releases.md @@ -3,7 +3,8 @@ * `identity`: add new argument `capabilities` in `var.service_accounts` variable. ## **Fix** -None +* Correct `path` argument by `source` argument to specify the module path in `identity` module usage examples in `README.md`. + ## _**Breaking Changes**_ * `identity` modules input for `service_accounts` is updated. A new key `capabilities` is now required under `var.service_accounts.*`. * Add `capabilities` and set its value to `{}`. @@ -30,8 +31,6 @@ to: >} ``` - - # v2.8.0: ## **New** * `instances`: add new argument `availability_config`. for VM migration during infrastructure maintenance events