Skip to content

Instantly share code, notes, and snippets.

@michiels
Created July 8, 2019 19:22
Show Gist options
  • Save michiels/c165bc9994c1843bf072c307ebd02f9e to your computer and use it in GitHub Desktop.
Save michiels/c165bc9994c1843bf072c307ebd02f9e to your computer and use it in GitHub Desktop.
resource "kubernetes_secret" "dispatch-staging" {
metadata {
name = "dispatch-env"
namespace = "platform-staging"
}
data = {
SECRET_KEY_BASE: ""
DATABASE_URL: ""
SMTP_USERNAME: ""
SMTP_PASSWORD: ""
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment