Releases: fivexl/terraform-aws-naming-conventions
0.0.3
Warning!
In this release, the ous
output has been removed from both the org_info_ssm_parametes_names
and org_info_ram_resource_share_names
maps. It has been decided to discontinue the usage of this parameter in the shared_ssm_parameters_module
.
Full Changelog: 0.0.2...0.0.3
0.0.2
Warning! This repository was renamed to address spelling error in the name of it: convetions -> conveNtions.
Another Warning:
This release deprecates the following outputs:
org_info_ssm_parameter_name
& org_info_ram_resource_share_name
These outputs have been replaced with:
org_info_ssm_parameters_names
& org_info_ram_resource_share_names
The org_info module encountered issues with parameter size limitations, so it was decided to split it into smaller shared parameters.
Now, you can access the new shared parameter names and resource share names through the updated output maps:
output "org_info_ssm_parametes_names" {
value = {
org_arn = "/shared/management/org-arn"
root_id = "/shared/management/root-id"
org_id = "/shared/management/org-id"
master_account_id = "/shared/management/master-account-id"
accounts = "/shared/management/accounts"
ous = "/shared/management/ous"
accounts_by_environment = "/shared/management/accounts-by-environment"
}
description = "This is a map of the SSM parameter names for the 'org_info' shared ssm parameter."
}
output "org_info_ram_resource_share_names" {
value = {
org_arn = "ssm-shared-management-org-arn"
root_id = "ssm-shared-management-root-id"
org_id = "ssm-shared-management-org-id"
master_account_id = "ssm-shared-management-master-account-id"
accounts = "ssm-shared-management-accounts"
ous = "ssm-shared-management-ous"
accounts_by_environment = "ssm-shared-management-accounts-by-environment"
}
description = "This is a map of the RAM resource share names for the 'org_info' shared ssm parameter."
}
The previous org_info_ssm_parameter_name
and org_info_ram_resource_share_name
will be removed in the next major release.
Full Changelog: 0.0.1...0.0.2
0.0.1
Initial Release of Naming conventions module
Full Changelog: https://github.com/fivexl/terraform-aws-naming-convetions/commits/0.0.1