Skip to content

Releases: lacework/terraform-kubernetes-admission-controller

v0.1.3

06 Nov 23:50
bf5ae58
Compare
Choose a tag to compare

Release Notes

Another day, another release. These are the release notes for the version v0.1.3.

Other Changes

  • chore(GROW-2952): add codeowners (#13) (Matt Cadorette)(786a9dd)
  • ci: migrate from codefresh to github actions (#12) (Timothy MacDonald)(b844f87)
  • ci: version bump to v0.1.3-dev (Lacework)(67164ed)

v0.1.2

23 Jan 21:58
187de29
Compare
Choose a tag to compare

Release Notes

Another day, another release. These are the release notes for the version v0.1.2.

Other Changes

  • chore: set local var module name (#10) (Darren)(f8c2b31)
  • ci: version bump to v0.1.2-dev (Lacework)(c363e39)

v0.1.1

23 Jan 10:12
3a465ad
Compare
Choose a tag to compare

Release Notes

Another day, another release. These are the release notes for the version v0.1.1.

Documentation Updates

  • docs(readme): add terraform docs automation (#7) (Timothy MacDonald)(c4e03b2)

Other Changes

  • chore: add lacework_metric_module datasource (#8) (Darren)(e7e8b23)
  • ci: version bump to v0.1.1-dev (Lacework)(2266eea)

v0.1.0

03 Aug 21:28
00f46e8
Compare
Choose a tag to compare

Release Notes

Another day, another Terraform Module. This is the first release of the new Terraform Module for
deploying the Lacework Admission Controller and Proxy Scanner in a Kubernetes cluster. (v0.1.0)

Basic Usage

module "lacework_admission_controller" {
  source  = "lacework/admission-controller/kubernetes"
  version = "~> 0.1"

  lacework_account_name = "YourLaceworkAccount"
  proxy_scanner_token   = "_123456789abcdef123456789abcd"

  registries = [
    {
      name      = "myRegistry"
      domain    = "myregistrydomain.com:8080"
      ssl       = true
      auto_poll = false
      credentials = {
        user_name = "myUsername"
        password  = "myPassword"
      }
    }
  ]
}

Bug Fixes

  • fix: example should reference local module (Salim Afiune Maya)(415b100)

Documentation Updates

  • docs: update README.md (Salim Afiune Maya)(ce4f705)