Skip to content

Commit daf9541

Browse files
committed
Update README.md
1 parent 1fcc8fc commit daf9541

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

outputs.tf

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,22 @@ output "aws_current_region" {
66

77
}
88
output "amplify_app_id" {
9-
value = aws_amplify_app.sample_app.id
9+
value = aws_amplify_app.sample_app.id
10+
description = "The App ID for the Amplify App"
1011
}
1112
output "amplify_app_arn" {
12-
value = aws_amplify_app.sample_app.arn
13+
value = aws_amplify_app.sample_app.arn
14+
description = "The ARN for the Amplify App"
1315
}
1416
output "amplify_app_default_domain" {
15-
value = aws_amplify_app.sample_app.default_domain
17+
value = aws_amplify_app.sample_app.default_domain
18+
description = "The default domain for the Amplify App"
1619
}
1720
output "amplify_app_production_branch" {
18-
value = aws_amplify_app.sample_app.default_domain
21+
value = aws_amplify_app.sample_app.default_domain
22+
description = "The production branch for the Amplify App"
1923
}
2024
output "amplify_app_tags_all" {
21-
value = aws_amplify_app.sample_app.tags_all
25+
value = aws_amplify_app.sample_app.tags_all
26+
description = "All tags for the Amplify App"
2227
}

0 commit comments

Comments
 (0)