Skip to content

Commit

Permalink
Updated version & added authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
changesbyjames committed Nov 15, 2024
1 parent 12be299 commit fb02c72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export const CritterAuthenticationProvider: FC<PropsWithChildren> = ({ children
set({ status: AuthenticationStatus.Authenticating });
const params = new URLSearchParams();
if (from) params.set('from', from);
params.set('origin', window.location.origin);
window.location.href = `${apiBaseUrl}/auth/signin?${params.toString()}`;
},
signOut: async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class PostgreSQLFlexibleServer extends ComponentResource {
resourceGroupName: args.resourceGroupName,
administratorLogin: username.result,
administratorLoginPassword: password.result,
version: '12',
version: '16',
storage: {
storageSizeGB: 32
},
Expand Down

0 comments on commit fb02c72

Please sign in to comment.