Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kuritka/git-demo
https://github.com/kuritka/git-demo
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kuritka/git-demo
- Owner: kuritka
- Created: 2023-08-10T14:59:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-21T08:54:14.000Z (about 1 year ago)
- Last Synced: 2024-10-05T11:22:56.236Z (about 1 month ago)
- Language: HCL
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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"
}
```