Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions examples/cross-account/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ Note that this will create AWS resources - once you are done, run `terraform des
| <a name="input_name"></a> [name](#input\_name) | Name for firehose and matching IAM role | `string` | n/a | yes |
| <a name="input_observe_collection_endpoint"></a> [observe\_collection\_endpoint](#input\_observe\_collection\_endpoint) | Observe Collection Endpoint, e.g https://123456789012.collect.observeinc.com | `string` | n/a | yes |
| <a name="input_observe_token"></a> [observe\_token](#input\_observe\_token) | Observe token | `string` | n/a | yes |
| <a name="input_s3_delivery_compression_format"></a> [s3\_delivery\_compression\_format](#input\_s3\_delivery\_compression\_format) | The compression format. If no value is specified, the default is UNCOMPRESSED. | `string` | `"UNCOMPRESSED"` | no |
| <a name="input_user_arn"></a> [user\_arn](#input\_user\_arn) | ARN for external user granted access to assume role | `string` | n/a | yes |

## Outputs
Expand Down
3 changes: 2 additions & 1 deletion examples/cross-account/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ module "observe_kinesis_firehose" {
name = var.name
cloudwatch_log_group = aws_cloudwatch_log_group.group

http_endpoint_s3_backup_mode = var.http_endpoint_s3_backup_mode
http_endpoint_s3_backup_mode = var.http_endpoint_s3_backup_mode
s3_delivery_compression_format = var.s3_delivery_compression_format
}

resource "aws_iam_role" "this" {
Expand Down
7 changes: 7 additions & 0 deletions examples/cross-account/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ variable "http_endpoint_s3_backup_mode" {
default = "FailedDataOnly"
}

variable "s3_delivery_compression_format" {
description = "The compression format. If no value is specified, the default is UNCOMPRESSED."
type = string
nullable = false
default = "UNCOMPRESSED"
}

variable "user_arn" {
type = string
description = "ARN for external user granted access to assume role"
Expand Down
Loading