aws_cloudwatch_log_stream
Provides a CloudWatch Log Stream resource.
Example Usage
resource "aws_cloudwatch_log_group" "yada" {
name = "Yada"
}
resource "aws_cloudwatch_log_stream" "foo" {
name = "SampleLogStream1234"
log_group_name = "${aws_cloudwatch_log_group.yada.name}"
}
Argument Reference
The following arguments are supported:
name
- (Required) The name of the log stream. Must not be longer than 512 characters and must not contain:
log_group_name
- (Required) The name of the log group under which the log stream is to be created.
Attributes Reference
The following attributes are exported:
arn
- The Amazon Resource Name (ARN) specifying the log stream.
See the source of this document at Terraform.io