Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.06 KB

README.md

File metadata and controls

42 lines (29 loc) · 1.06 KB

Terraform Kubernetes X.509

pipeline release license

X.509 is a Terraform module useful for creating X.509 users using Kubernetes provider

Installation

Add the required configurations to your terraform config file and install module using command bellow:

terraform init

Usage

module "x509" {
  source = "cktf/x509/kubernetes"

  host     = "<CLUSTER_HOST>"
  ca_crt   = "<CLUSTER_CA_CRT>"
  username = "myuser"
  roles = {
    default      = "edit"
    my-namespace = "view"
  }
}

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

This project is licensed under the MIT.
Copyright (c) KoLiBer ([email protected])