output arn & id for mdm secrets (#10046)

add outputs to mdm module to make it simple to utilize downstream
This commit is contained in:
Benjamin Edwards 2023-02-22 21:37:46 -05:00 committed by GitHub
parent bbaa225c0e
commit c1a7b565f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,3 +29,15 @@ output "extra_execution_iam_policies" {
aws_iam_policy.main.arn
]
}
output "scep" {
value = aws_secretsmanager_secret.scep
}
output "dep" {
value = aws_secretsmanager_secret.dep
}
output "apn" {
value = aws_secretsmanager_secret.apn
}