Skip to content

[Tetragon] - productionise module #3698

@jaskaransarkaria

Description

@jaskaransarkaria

User Need

As a Platform Engineer
I want deploy tetragon to our production environments
so that we can capture kubectl exec logs for auditing purposes


Context

Following the POC work. If the POC is accepted, there are a few things that we would need to do before pushing to production.


What’s Needed

List anything the solution must do or be (behaviour, performance, security, UX, etc.).

data "aws_iam_policy_document" "require_latest_tls" {
  statement {
    sid    = "denyOutdatedTLS"
    effect = "Deny"

    actions = ["s3:*"]

    resources = [
      aws_s3_bucket.this.arn,
      "${aws_s3_bucket.this.arn}/*",
    ]

    principals {
      type        = "*"
      identifiers = ["*"]
    }

    condition {
      test     = "NumericLessThan"
      variable = "s3:TlsVersion"
      values = [
        "1.2"
      ]
    }
  }
}

Acceptance Criteria

Clear, measurable conditions to verify the story is complete and valuable.

  • We are not dropping logs
  • We are happy with the level of security and auditing for our shared s3 module

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions