-
Notifications
You must be signed in to change notification settings - Fork 80
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
Parameters: [S3DeploymentBucket, S3DeploymentRootKey] must have values
into the development of a new plugin
#1517
Comments
Any suggestion? |
Hi @paciops, Thank you for bringing this to our attention. Unfortunately, we do not have any documentation specifically addressing this issue. Based on the error you provided, it seems that the S3DeploymentBucket and S3DeploymentRootKey were not passed to the CloudFormation stack. These keys are typically available in the root-cloudformation-stack.json file and passed through the nested stack via the parameters.json file. We recommend adding the appropriate values for these keys in the parameters.json file and testing if it resolves the issue. Please let us know if you have any further questions or concerns. |
Hi @AnilMaktala, unfortunately I cannot specify my my |
Hi @paciops For me, I forgot to do amplify env checkout dev , so my local did not have the output yet. |
Amplify CLI Version
12.0.3
Question
I am trying to develop a new plugin that will works like Searchable and Algolia.
I created a class
OramaSearchableTransformer
that extendsTransformerPluginBase
and implementsTransformerPluginProvider
.At the moment I am testing this plugin in a basic Amplify app with a schema like this
the plugin is imported via the
/amplify/backend/api/<API_NAME>/transform.conf.json
file, the commandamplify api gql-compile
works fine, but when i try to doamplify push
I receive the errorThe operations that I am doing inside the plugin are:
BucketDeployment
a json file on the bucket (this json represent the schema for orama)I think that
BucketDeployment
triggers this error because is the code that callsnew BucketDeployment
is removed there is no error and for what I have seen nobody uses that class on an amplify plugin.So the question is, how do i deploy my schema on my S3 bucket?
The text was updated successfully, but these errors were encountered: