-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fix Incorrect ARNs in MSK Policy
- Loading branch information
Showing
8 changed files
with
177 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,44 @@ | ||
#output "kinesis_firehose_arn" { | ||
# description = "The ARN of the Kinesis Firehose Stream" | ||
# value = module.firehose.kinesis_firehose_arn | ||
#} | ||
# | ||
#output "kinesis_data_stream_name" { | ||
# description = "The name of the Kinesis Firehose Stream" | ||
# value = module.firehose.kinesis_firehose_name | ||
#} | ||
# | ||
#output "kinesis_firehose_destination_id" { | ||
# description = "The Destination id of the Kinesis Firehose Stream" | ||
# value = module.firehose.kinesis_firehose_destination_id | ||
#} | ||
# | ||
#output "kinesis_firehose_version_id" { | ||
# description = "The Version id of the Kinesis Firehose Stream" | ||
# value = module.firehose.kinesis_firehose_version_id | ||
#} | ||
# | ||
#output "kinesis_firehose_role_arn" { | ||
# description = "The ARN of the IAM role created for Kinesis Firehose Stream" | ||
# value = module.firehose.kinesis_firehose_role_arn | ||
#} | ||
output "msk_arn" { | ||
description = "MSK Topic Endpoint" | ||
value = module.msk_cluster.arn | ||
} | ||
|
||
output "kinesis_firehose_arn" { | ||
description = "The ARN of the Kinesis Firehose Stream" | ||
value = module.firehose.kinesis_firehose_arn | ||
} | ||
|
||
output "kinesis_data_stream_name" { | ||
description = "The name of the Kinesis Firehose Stream" | ||
value = module.firehose.kinesis_firehose_name | ||
} | ||
|
||
output "kinesis_firehose_destination_id" { | ||
description = "The Destination id of the Kinesis Firehose Stream" | ||
value = module.firehose.kinesis_firehose_destination_id | ||
} | ||
|
||
output "kinesis_firehose_version_id" { | ||
description = "The Version id of the Kinesis Firehose Stream" | ||
value = module.firehose.kinesis_firehose_version_id | ||
} | ||
|
||
output "kinesis_firehose_role_arn" { | ||
description = "The ARN of the IAM role created for Kinesis Firehose Stream" | ||
value = module.firehose.kinesis_firehose_role_arn | ||
} | ||
|
||
output "msk_brokers_endpoint" { | ||
description = "Brokers endpoints" | ||
value = module.msk_cluster.bootstrap_brokers | ||
} | ||
|
||
output "topic_name" { | ||
description = "MSK Topic Name" | ||
value = local.topic | ||
} | ||
|
||
output "s3_bucket_arn" { | ||
description = "S3 Bucket ARN" | ||
value = aws_s3_bucket.s3.arn | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
provider "aws" { | ||
skip_metadata_api_check = true | ||
skip_region_validation = true | ||
skip_credentials_validation = true | ||
default_tags { | ||
tags = var.tags | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters