Skip to content

0.0.2

Compare
Choose a tag to compare
@EreminAnton EreminAnton released this 21 Nov 07:46
· 1 commit to main since this release

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