Skip to content

Commit

Permalink
env syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
n13 committed Oct 6, 2024
1 parent cb82e80 commit afc5f1c
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,27 +58,27 @@ provider:
uniqueAppDomainTableName: ${self:custom.uniqueAppDomainTableName}
oauthTableName: ${self:custom.oauthTableName}
scopeTableName: ${self:custom.scopeTableName}
twilioAccountSid: ${env.twilioAccountSid}
twilioAuthToken: ${env.twilioAuthToken}
twilioAccountSid: ${env:twilioAccountSid}
twilioAuthToken: ${env:twilioAuthToken}
# msgPrefix: ${self:custom.environment.msgPrefix}
sendGridKey: ${env.sendGridKey}
openIdSignaturePrivateKeyParamName: ${env.openIdSignaturePrivateKeyParamName}
sendGridKey: ${env:sendGridKey}
openIdSignaturePrivateKeyParamName: ${env:openIdSignaturePrivateKeyParamName}
openIdIssuingAuthority: ${env.openIdIssuingAuthority}
userPoolName: ${self:custom.userPoolName}
identityPoolName: ${self:custom.identityPoolName}
userPoolClientName: ${self:custom.userPoolClientName}
eosHistoryEndpoint: ${env.eosHistoryEndpoint}
eosHttpEndpoint: ${env.eosHttpEndpoint}
authContract: ${env.authContract}
authVerifier: ${env.authVerifier}
authRetries: ${env.authRetries}
startAuthTimeout: ${env.startAuthTimeout}
minAuthTimeout: ${env.minAuthTimeout}
chainId: ${env.chainId}
authCodeMinutesTTL: ${env.authCodeMinutesTTL}
accessTokenMinutesTTL: ${env.accessTokenMinutesTTL}
refreshTokenMinutesTTL: ${env.refreshTokenMinutesTTL}
sentryDsn: ${env.sentryDsn}
eosHistoryEndpoint: ${env:eosHistoryEndpoint}
eosHttpEndpoint: ${env:eosHttpEndpoint}
authContract: ${env:authContract}
authVerifier: ${env:authVerifier}
authRetries: ${env:authRetries}
startAuthTimeout: ${env:startAuthTimeout}
minAuthTimeout: ${env:minAuthTimeout}
chainId: ${env:chainId}
authCodeMinutesTTL: ${env:authCodeMinutesTTL}
accessTokenMinutesTTL: ${env:accessTokenMinutesTTL}
refreshTokenMinutesTTL: ${env:refreshTokenMinutesTTL}
sentryDsn: ${env:sentryDsn}

iam:
role:
Expand Down

0 comments on commit afc5f1c

Please sign in to comment.