diff --git a/README.md b/README.md index d3e8dfb..7f65d32 100644 --- a/README.md +++ b/README.md @@ -188,6 +188,8 @@ No modules. | Name | Description | |------|-------------| | [mwaa\_arn](#output\_mwaa\_arn) | The arn of the created MWAA environment. | +| [mwaa\_execution\_role\_arn](#output\_mwaa\_execution\_role\_arn) | The IAM Role arn for MWAA Execution Role. | | [mwaa\_nat\_gateway\_public\_ips](#output\_mwaa\_nat\_gateway\_public\_ips) | List of the ips of the nat gateways created by this module. | +| [mwaa\_service\_role\_arn](#output\_mwaa\_service\_role\_arn) | The Service Role arn for MWAA environment. | | [mwaa\_webserver\_url](#output\_mwaa\_webserver\_url) | The webserver URL of the MWAA Environment. | diff --git a/outputs.tf b/outputs.tf index e3f9e3c..6b7ab3b 100644 --- a/outputs.tf +++ b/outputs.tf @@ -3,6 +3,16 @@ output "mwaa_arn" { description = "The arn of the created MWAA environment." } +output "mwaa_execution_role_arn" { + value = aws_mwaa_environment.this.execution_role_arn + description = "The IAM Role arn for MWAA Execution Role." +} + +output "mwaa_service_role_arn" { + value = aws_mwaa_environment.this.execution_role_arn + description = "The Service Role arn for MWAA environment." +} + output "mwaa_nat_gateway_public_ips" { value = aws_nat_gateway.this[*].public_ip description = "List of the ips of the nat gateways created by this module."