【问题标题】:Unable to view Logs under Cloudwatch for AWS MQ无法查看 Cloudwatch for AWS MQ 下的日志
【发布时间】:2020-01-24 19:05:06
【问题描述】:

以下 TF 代码执行没有问题,并且还创建了 MQ 代理,但我无法在默认创建的 CloudWatch 日志流组下查看 MQ 的日志。任何人都可以建议我在哪里失踪,以便我可以在 main.tf 下添加 cloudwatch enable 吗?

resource "aws_mq_broker" "broker" {
  broker_name = "example-mq"

  tags = merge(
    var.common_tags,
    map("Classification", "private"),
    map("Name", "example-mq")
  )

  configuration {
    id       = "${aws_mq_configuration.mq-config.id}"
    revision = "${aws_mq_configuration.mq-config.latest_revision}"
  }

  apply_immediately = true

  engine_type                = "ActiveMQ"
  engine_version             = "5.15.9"
  auto_minor_version_upgrade = true
  deployment_mode            = "ACTIVE_STANDBY_MULTI_AZ"
  subnet_ids                 = "subnet-12341234123"
  security_groups            = "sg-123123123"
  host_instance_type         = "mq.m5.large"
  publicly_accessible        = false

  user {
    username       = "mq_username"
    password       = "mq_password"
    groups         = "admin_group"
    console_access = true
  }

  logs {
    general = true
    audit   = false
  }

  depends_on = ["aws_mq_configuration.mq-config"]
}


resource "aws_mq_configuration" "mq-config" {
  name           = "mq-config"
  engine_type    = "ActiveMQ"
  engine_version = "5.15.9"
  data           = "${data.template_file.mq_configuration_data.rendered}"

  tags = merge(
    var.common_tags,
    map("Classification", "private"),
    map("Name", "mq-config")
  )

  depends_on = ["data.template_file.mq_configuration_data"]
}

# data for MQ broker configuration
data "template_file" "mq_configuration_data" {
  template = "${file("files/data.xml.tpl")}"

  vars = {
    upload                   = upload
    processing               = processing
  }
}

【问题讨论】:

    标签: terraform amazon-cloudwatch amazon-cloudwatchlogs amazon-mq


    【解决方案1】:

    根据Amazon MQ documentation,您需要创建基于资源的策略以允许 Amazon MQ 将日志发布到 CloudWatch:

    data "aws_iam_policy_document" "mq_logs" {
      statement {
        actions = [
          "logs:CreateLogStream",
          "logs:PutLogEvents",
        ]
    
        resources = ["arn:aws:logs:*:*:log-group:/aws/amazonmq/*"]
    
        principals {
          identifiers = ["mq.amazonaws.com"]
          type        = "Service"
        }
      }
    }
    
    resource "aws_cloudwatch_log_resource_policy" "mq_logs" {
      policy_document = data.aws_iam_policy_document.mq_logs.json
      policy_name     = "mq-logs"
    }
    

    【讨论】:

      猜你喜欢
      • 2019-07-13
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2016-09-14
      • 1970-01-01
      • 1970-01-01
      • 2020-03-19
      • 1970-01-01
      相关资源
      最近更新 更多