Skip to content

Commit

Permalink
fix(amplify-category-api): ssl cert api name change (#2680)
Browse files Browse the repository at this point in the history
  • Loading branch information
sundersc committed Jul 2, 2024
1 parent f3bf86d commit 74e7d06
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export const schema = configure({
identifier: \\"ID1234567890\\",
engine: \\"mysql\\",
connectionUri: secret(\\"CONN_STR\\"),
sslCertificate: secret(\\"SSL_CERT\\")
sslCert: secret(\\"SSL_CERT\\")
}
}).schema({
\\"User\\": a.model({
Expand Down Expand Up @@ -303,7 +303,7 @@ export const schema = configure({
identifier: \\"IDNb9LVUQdGlNwNzYAgL6A\\",
engine: \\"mysql\\",
connectionUri: secret(\\"connectionUriSecret\\"),
sslCertificate: secret(\\"mySqlSslSecret\\"),
sslCert: secret(\\"mySqlSslSecret\\"),
vpcConfig: {
vpcId: \\"abc\\",
securityGroupIds: [
Expand Down Expand Up @@ -350,7 +350,7 @@ export const schema = configure({
identifier: \\"IDbQzyUQqaWhcfRhqPkRBA\\",
engine: \\"postgresql\\",
connectionUri: secret(\\"connectionUriSecret\\"),
sslCertificate: secret(\\"postgresSslSecret\\"),
sslCert: secret(\\"postgresSslSecret\\"),
vpcConfig: {
vpcId: \\"abc\\",
securityGroupIds: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const TYPESCRIPT_DATA_SCHEMA_CONSTANTS = {
PROPERTY_AZ: 'availabilityZone',
PROPERTY_DATABASE: 'database',
PROPERTY_CONNECTION_URI: 'connectionUri',
PROPERTY_SSL_CERTIFICATE: 'sslCertificate',
PROPERTY_SSL_CERTIFICATE: 'sslCert',
PROPERTY_ENGINE: 'engine',
PROPERTY_IDENTIFIER: 'identifier',
};

0 comments on commit 74e7d06

Please sign in to comment.