-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Lambda client env var name issue #2324
Merged
+296
−150
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
f34b1b1
fix: Lambda client env var name issue
stocaaro 620073d
Change in env naming including prefix with SSM vars
stocaaro db70a7a
Reset lockfile
stocaaro cb67c27
Merge remote-tracking branch 'origin/main' into stocaaro/lambda-clien…
stocaaro c3730b2
Update package lock file
stocaaro d30c02c
Update changeset
stocaaro 9ad8735
update name conerter
stocaaro 28aeb94
Update api
stocaaro a9aa2d3
Revert unrelated API change
stocaaro 43f9faf
Update .changeset/warm-sloths-tickle.md
stocaaro 5afaeff
Update changeset description
stocaaro 1503a10
Add env to error message
stocaaro c14ab2c
fix redundant name issue
stocaaro File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
'@aws-amplify/backend-function': minor | ||
'@aws-amplify/backend-data': patch | ||
'@aws-amplify/platform-core': minor | ||
--- | ||
|
||
Update getAmplifyDataClientConfig to work with named data backend |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,7 @@ import { Bucket } from 'aws-cdk-lib/aws-s3'; | |
import { BucketDeployment, Source } from 'aws-cdk-lib/aws-s3-deployment'; | ||
|
||
const modelIntrospectionSchemaKey = 'modelIntrospectionSchema.json'; | ||
const defaultName = 'amplifyData'; | ||
|
||
/** | ||
* Singleton factory for AmplifyGraphqlApi constructs that can be used in Amplify project files. | ||
|
@@ -127,7 +128,7 @@ class DataGenerator implements ConstructContainerEntryGenerator { | |
private readonly getInstanceProps: ConstructFactoryGetInstanceProps, | ||
private readonly outputStorageStrategy: BackendOutputStorageStrategy<GraphqlOutput> | ||
) { | ||
this.name = props.name ?? 'amplifyData'; | ||
this.name = props.name ?? defaultName; | ||
} | ||
|
||
generateContainerEntry = ({ | ||
|
@@ -307,14 +308,32 @@ class DataGenerator implements ConstructContainerEntryGenerator { | |
|
||
convertJsResolverDefinition(scope, amplifyApi, schemasJsFunctions); | ||
|
||
const namePrefix = this.name === defaultName ? '' : defaultName; | ||
|
||
const ssmEnvironmentScopeContext = { | ||
[`${namePrefix}${this.name}_GRAPHQL_ENDPOINT`]: | ||
amplifyApi.resources.cfnResources.cfnGraphqlApi.attrGraphQlUrl, | ||
[`${namePrefix}${this.name}_MODEL_INTROSPECTION_SCHEMA_BUCKET_NAME`]: | ||
modelIntrospectionSchemaBucket.bucketName, | ||
[`${namePrefix}${this.name}_MODEL_INTROSPECTION_SCHEMA_KEY`]: | ||
modelIntrospectionSchemaKey, | ||
['AMPLIFY_DATA_DEFAULT_NAME']: `${namePrefix}${this.name}`, | ||
}; | ||
|
||
const backwardsCompatibleScopeContext = | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. update this plz if you take above nit. |
||
`${this.name}_GRAPHQL_ENDPOINT` !== | ||
`${namePrefix}${this.name}_GRAPHQL_ENDPOINT` | ||
? { | ||
// @deprecated | ||
[`${this.name}_GRAPHQL_ENDPOINT`]: | ||
amplifyApi.resources.cfnResources.cfnGraphqlApi.attrGraphQlUrl, | ||
} | ||
: {}; | ||
|
||
const ssmEnvironmentEntries = | ||
ssmEnvironmentEntriesGenerator.generateSsmEnvironmentEntries({ | ||
[`${this.name}_GRAPHQL_ENDPOINT`]: | ||
amplifyApi.resources.cfnResources.cfnGraphqlApi.attrGraphQlUrl, | ||
[`${this.name}_MODEL_INTROSPECTION_SCHEMA_BUCKET_NAME`]: | ||
modelIntrospectionSchemaBucket.bucketName, | ||
[`${this.name}_MODEL_INTROSPECTION_SCHEMA_KEY`]: | ||
modelIntrospectionSchemaKey, | ||
...ssmEnvironmentScopeContext, | ||
...backwardsCompatibleScopeContext, | ||
}); | ||
|
||
const policyGenerator = new AppSyncPolicyGenerator( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
perhaps. this is a nit, feel free to ignore.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This naming came from the function that receives these entries/vars
ssmEnvironmentEntriesGenerator.generateSsmEnvironmentEntries(scopeContext)
. I'm going to proceed with this naming and can revisit it in another change if we decide its clearer with different naming.