Skip to content

Commit

Permalink
Generates environement.tf application name in lowercase (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderM91 authored Jan 4, 2024
1 parent c855fbc commit 4c3e25d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generator/src/templates/terraform/environment.tf.twig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ locals {
{% for groupName, groupData in project.groups %}
{% for applicationName, applicationData in groupData['applications'] %}
{% if applicationData['application'] != 'static' %}
{{ applicationName }} = {
{{ applicationName | lower }} = {
{% include "terraform/application/" ~ (applicationData['application'] | lower) ~ ".tf.twig" with {
applicationName: applicationName,
applicationData: applicationData,
Expand Down

0 comments on commit 4c3e25d

Please sign in to comment.