Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kuritka/git-demo


https://github.com/kuritka/git-demo

Last synced: 24 days ago
JSON representation

Awesome Lists containing this project

README

        

# GitHub DEM⭕

## Terraform provider
details: https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs
link to presentation: https://docs.google.com/presentation/d/1NYNGrSskE2lPTYKnqfjh7uaQHhxaKVBLqdWzl0XA72k/edit?usp=sharing
link to Github: https://github.com/kuritka/git-demo

```.env
TF_VAR_credentials_name="user"
TF_VAR_credentials_password="Pa$$w0rd"
```

```shell
resource "kubernetes_secret" "example" {
metadata {
name = "basic-auth"
namespace = kubernetes_namespace.example.metadata[0].name
}

data = {
username = var.credentials_name
password = var.credentials_password
}

type = "kubernetes.io/basic-auth"
}
```