outputs.tf 481 B

12345678910111213141516
  1. output "parameters" {
  2. value = {
  3. github_app_id = {
  4. name = aws_ssm_parameter.github_app_id.name
  5. arn = aws_ssm_parameter.github_app_id.arn
  6. }
  7. github_app_key_base64 = {
  8. name = aws_ssm_parameter.github_app_key_base64.name
  9. arn = aws_ssm_parameter.github_app_key_base64.arn
  10. }
  11. github_app_webhook_secret = {
  12. name = aws_ssm_parameter.github_app_webhook_secret.name
  13. arn = aws_ssm_parameter.github_app_webhook_secret.arn
  14. }
  15. }
  16. }