Skip to content

Commit

Permalink
Hotfix - Now use temporary email address generated via Temp Mail for …
Browse files Browse the repository at this point in the history
…issuer.yaml, also renamed template file with .tpl extension
  • Loading branch information
robertpountney92 committed Dec 23, 2020
1 parent 8223787 commit dda5cc3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion aks-cluster/variables.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variable "app_password" {
description = "Azure Kubernetes Service Cluster service principal password"
sensitive = true
sensitive = true
}

variable "environment" {
Expand Down
2 changes: 1 addition & 1 deletion hello-world-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ spec:
- backend:
serviceName: aks-helloworld
servicePort: 80
path: /
path: /
3 changes: 2 additions & 1 deletion issuer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ spec:
# Certificates issued by public ACME servers are typically trusted by client’s browsers by default
acme:
server: https://acme-v02.api.letsencrypt.org/directory
email: [email protected]
# Temporary email generated via Temp Mail
email: [email protected]
privateKeySecretRef:
name: letsencrypt
solvers:
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion workstations/workstations.tf
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ resource "azurerm_virtual_machine" "main" {
computer_name = each.key
admin_username = var.workstation_username
admin_password = var.workstation_password
custom_data = templatefile("${path.module}/templates/custom_data.sh",
custom_data = templatefile("${path.module}/templates/custom_data.sh.tpl",
{
az_user = azuread_service_principal.sp.application_id,
az_password = var.app_password,
Expand Down

0 comments on commit dda5cc3

Please sign in to comment.