docs: Use IRSA for Node Termination Handler IAM policy attachement in Instance Refresh example (#1373)

This commit is contained in:
Steve Hipwell
2021-05-19 11:40:54 +01:00
committed by GitHub
parent 91545abd75
commit 7c654a62b7
2 changed files with 57 additions and 32 deletions

View File

@@ -25,10 +25,10 @@ output "region" {
output "sqs_queue_asg_notification_arn" {
description = "SQS queue ASG notification ARN"
value = module.node_term_sqs.sqs_queue_arn
value = module.aws_node_termination_handler_sqs.sqs_queue_arn
}
output "sqs_queue_asg_notification_url" {
description = "SQS queue ASG notification URL"
value = module.node_term_sqs.sqs_queue_id
value = module.aws_node_termination_handler_sqs.sqs_queue_id
}