This repository was archived by the owner on Aug 22, 2023. It is now read-only.
forked from faros-ai/terraform-aws-codedeploy-for-ecs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
70 lines (56 loc) · 1.83 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
output "codedeploy_app_id" {
value = aws_codedeploy_app.default.id
description = "Amazon's assigned ID for the application."
}
output "codedeploy_app_name" {
value = aws_codedeploy_app.default.name
description = "The application's name."
}
output "codedeploy_deployment_group_id" {
value = aws_codedeploy_deployment_group.default.id
description = "Application name and deployment group name."
}
output "iam_role_arn" {
value = aws_iam_role.default.arn
description = "The Amazon Resource Name (ARN) specifying the IAM Role."
}
output "iam_role_create_date" {
value = aws_iam_role.default.create_date
description = "The creation date of the IAM Role."
}
output "iam_role_unique_id" {
value = aws_iam_role.default.unique_id
description = "The stable and unique string identifying the IAM Role."
}
output "iam_role_name" {
value = aws_iam_role.default.name
description = "The name of the IAM Role."
}
output "iam_role_description" {
value = aws_iam_role.default.description
description = "The description of the IAM Role."
}
output "iam_policy_id" {
value = aws_iam_policy.default.id
description = "The IAM Policy's ID."
}
output "iam_policy_arn" {
value = aws_iam_policy.default.arn
description = "The ARN assigned by AWS to this IAM Policy."
}
output "iam_policy_description" {
value = aws_iam_policy.default.description
description = "The description of the IAM Policy."
}
output "iam_policy_name" {
value = aws_iam_policy.default.name
description = "The name of the IAM Policy."
}
output "iam_policy_path" {
value = aws_iam_policy.default.path
description = "The path of the IAM Policy."
}
output "iam_policy_document" {
value = aws_iam_policy.default.policy
description = "The policy document of the IAM Policy."
}