Skip to content

Commit

Permalink
fix template add missing quotes for controller & decision (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
gertd authored Nov 20, 2024
1 parent 435554c commit 3079256
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/cc/config/templates.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ controller:
enabled: true
server:
address: {{ .ControlPlane.Address }}
client_cert_path: {{ .ControlPlane.ClientCertPath }}
client_key_path: {{ .ControlPlane.ClientKeyPath }}
client_cert_path: '{{ .ControlPlane.ClientCertPath }}'
client_key_path: '{{ .ControlPlane.ClientKeyPath }}'
{{ else }}
controller:
enabled: false
Expand All @@ -102,8 +102,8 @@ decision_logger:
store_directory: {{ .DecisionLogger.StorePath }}
scribe:
address: {{ .DecisionLogger.EMSAddress }}
client_cert_path: {{ .DecisionLogger.ClientCertPath }}
client_key_path: {{ .DecisionLogger.ClientKeyPath }}
client_cert_path: '{{ .DecisionLogger.ClientCertPath }}'
client_key_path: '{{ .DecisionLogger.ClientKeyPath }}'
ack_wait_seconds: 30
headers:
Aserto-Tenant-Id: {{ .TenantID }}
Expand Down

0 comments on commit 3079256

Please sign in to comment.