Skip to content

Latest commit

 

History

History
81 lines (60 loc) · 1.23 KB

aws_route53_query_log.md

File metadata and controls

81 lines (60 loc) · 1.23 KB

aws_route53_query_log

back

Index

Terraform

terraform {
  required_providers {
    aws = ">= 3.35.0"
  }
}

top

Example Usage

module "aws_route53_query_log" {
  source = "./modules/aws/r/aws_route53_query_log"

  # cloudwatch_log_group_arn - (required) is a type of string
  cloudwatch_log_group_arn = null
  # zone_id - (required) is a type of string
  zone_id = null
}

top

Variables

variable "cloudwatch_log_group_arn" {
  description = "(required)"
  type        = string
}

variable "zone_id" {
  description = "(required)"
  type        = string
}

top

Resource

resource "aws_route53_query_log" "this" {
  # cloudwatch_log_group_arn - (required) is a type of string
  cloudwatch_log_group_arn = var.cloudwatch_log_group_arn
  # zone_id - (required) is a type of string
  zone_id = var.zone_id
}

top

Outputs

output "id" {
  description = "returns a string"
  value       = aws_route53_query_log.this.id
}

output "this" {
  value = aws_route53_query_log.this
}

top