Skip to content

Instantly share code, notes, and snippets.

View omry-hay's full-sized avatar
👨‍💻
Focusing

Omry Hay omry-hay

👨‍💻
Focusing
View GitHub Profile
resource "kubernetes_deployment" "nginx" {
metadata {
name = "scalable-nginx-example"
labels = {
App = "ScalableNginxExample"
}
namespace = random_string.namespace_name.result
}
spec {