Skip to content

Commit

Permalink
comment out to support envs
Browse files Browse the repository at this point in the history
  • Loading branch information
Tankilevitch committed Jul 27, 2023
1 parent bac677e commit 8ef3ee9
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions integrations/azure/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@ initializePortResources: true
port:
clientId: {{ from env PORT_CLIENT_ID }} # Can be loaded via environment variable: PORT_CLIENT_ID, if both are set, the environment variable will be used.
clientSecret: {{ from env PORT_CLIENT_SECRET }} # Can be loaded via environment variable: PORT_CLIENT_SECRET, if both are set, the environment variable will be used.
baseUrl: http://localhost:3000 # Can be loaded via environment variable: PORT_BASE_URL, if both are set, the environment variable will be used.
baseUrl: {{ from env PORT_BASE_URL }}
# baseUrl: http://localhost:3000 # Can be loaded via environment variable: PORT_BASE_URL, if both are set, the environment variable will be used.
# The event listener to use for the integration service.
eventListener:
# type: SAMPLE
type: KAFKA
brokers: "localhost:9092"
kafkaSecurityEnabled: false
brokers: {{ from env EVENT_LISTENER_BROKERS }}
# username: {{ from env EVENT_LISTENER_USERNAME }}
# password: {{ from env EVENT_LISTENER_PASSWORD }}
# consumerGroup: {{ from env EVENT_LISTENER_CONSUMER_GROUP }}
# authenticationMechanism: {{ from env EVENT_LISTENER_AUTHENTICATION_MECHANISM }}
# kafkaSecurityEnabled: true
# brokers: "localhost:9092"
integration:
# The identifier of this integration instance.
identifier: {{ from env INTEGRATION_IDENTIFIER }}
Expand Down

0 comments on commit 8ef3ee9

Please sign in to comment.