|
| 1 | +# --------------------------------------------------------------------------------------------------------------------- |
| 2 | +# CLOUDWATCH EVENT ROLE |
| 3 | +# --------------------------------------------------------------------------------------------------------------------- |
| 4 | +output "scheduled_task_cw_event_role_arn" { |
| 5 | + description = "The Amazon Resource Name (ARN) specifying the role." |
| 6 | + value = aws_iam_role.scheduled_task_cw_event_role.arn |
| 7 | +} |
| 8 | + |
| 9 | +output "scheduled_task_cw_event_role_create_date" { |
| 10 | + description = "The creation date of the IAM role." |
| 11 | + value = aws_iam_role.scheduled_task_cw_event_role.create_date |
| 12 | +} |
| 13 | + |
| 14 | +output "scheduled_task_cw_event_role_description" { |
| 15 | + description = "The description of the role." |
| 16 | + value = aws_iam_role.scheduled_task_cw_event_role.description |
| 17 | +} |
| 18 | + |
| 19 | +output "scheduled_task_cw_event_role_id" { |
| 20 | + description = "The name of the role." |
| 21 | + value = aws_iam_role.scheduled_task_cw_event_role.id |
| 22 | +} |
| 23 | + |
| 24 | +output "scheduled_task_cw_event_role_name" { |
| 25 | + description = "The name of the role." |
| 26 | + value = aws_iam_role.scheduled_task_cw_event_role.name |
| 27 | +} |
| 28 | + |
| 29 | +output "scheduled_task_cw_event_role_unique_id" { |
| 30 | + description = "The stable and unique string identifying the role." |
| 31 | + value = aws_iam_role.scheduled_task_cw_event_role.unique_id |
| 32 | +} |
| 33 | + |
| 34 | +output "aws_iam_role_policy_scheduled_task_cw_event_role_cloudwatch_policy_id" { |
| 35 | + description = "The role policy ID, in the form of role_name:role_policy_name." |
| 36 | + value = aws_iam_role_policy.scheduled_task_cw_event_role_cloudwatch_policy.id |
| 37 | +} |
| 38 | + |
| 39 | +output "aws_iam_role_policy_scheduled_task_cw_event_role_cloudwatch_policy_name" { |
| 40 | + description = "The name of the policy." |
| 41 | + value = aws_iam_role_policy.scheduled_task_cw_event_role_cloudwatch_policy.name |
| 42 | +} |
| 43 | + |
| 44 | +output "aws_iam_role_policy_scheduled_task_cw_event_role_cloudwatch_policy_policy" { |
| 45 | + description = "The policy document attached to the role." |
| 46 | + value = aws_iam_role_policy.scheduled_task_cw_event_role_cloudwatch_policy.policy |
| 47 | +} |
| 48 | + |
| 49 | +output "aws_iam_role_policy_scheduled_task_cw_event_role_cloudwatch_policy_role" { |
| 50 | + description = "The name of the role associated with the policy." |
| 51 | + value = aws_iam_role_policy.scheduled_task_cw_event_role_cloudwatch_policy.role |
| 52 | +} |
| 53 | + |
1 | 54 | # --------------------------------------------------------------------------------------------------------------------- |
2 | 55 | # CLOUDWATCH EVENT RULE |
3 | 56 | # --------------------------------------------------------------------------------------------------------------------- |
|
0 commit comments