Skip to content

Commit 71311bd

Browse files
committed
Merge remote-tracking branch 'origin/develop' into INDATA-260
* origin/develop: chore: prevent loopback ssh connections (#1959) chore: rename infra repo (#1958)
2 parents 4c2d51e + 64105d9 commit 71311bd

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

ansible/tasks/setup-system.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,18 @@
6464
dest: '/etc/apt/apt.conf.d/10periodic'
6565
src: 'files/apt_periodic'
6666

67+
- name: Set local ssh policy
68+
ansible.builtin.copy:
69+
content: |
70+
Match Address 127.0.0.1,::1
71+
ForceCommand /bin/false
72+
DisableForwarding yes
73+
PermitTunnel no
74+
dest: /etc/ssh/sshd_config.d/local.conf
75+
mode: '0644'
76+
owner: 'root'
77+
group: 'root'
78+
6779
- name: Install other useful tools
6880
ansible.builtin.apt:
6981
pkg:

migrations/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ nix run github:supabase/postgres/mybranch#dbmate-tool -- --version 15
3838
- supabase/postgres
3939
- supabase/supabase
4040
- supabase/cli
41-
- supabase/infrastructure (internal)
41+
- supabase/platform (internal)
4242

4343
aiming to provide a single source of truth for migrations on the platform that can be depended upon by those components. For more information on goals see [the RFC](https://www.notion.so/supabase/Centralize-SQL-Migrations-cd3847ae027d4f2bba9defb2cc82f69a)
4444

@@ -48,8 +48,8 @@ aiming to provide a single source of truth for migrations on the platform that c
4848

4949
Migrations were pulled (in order) from:
5050

51-
1. [init-scripts/postgres](https://github.com/supabase/infrastructure/tree/develop/init-scripts/postgres) => [db/init-scripts](db/init-scripts)
52-
2. [init-scripts/migrations](https://github.com/supabase/infrastructure/tree/develop/init-scripts/migrations) => [db/migrations](db/migrations)
51+
1. [init-scripts/postgres](https://github.com/supabase/platform/tree/develop/init-scripts/postgres) => [db/init-scripts](db/init-scripts)
52+
2. [init-scripts/migrations](https://github.com/supabase/platform/tree/develop/init-scripts/migrations) => [db/migrations](db/migrations)
5353

5454
For compatibility with hosted projects, we include [migrate.sh](migrate.sh) that executes migrations in the same order as ami build:
5555

migrations/db/migrations/20220317095840_pg_graphql.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-- migrate:up
22
create schema if not exists graphql_public;
33

4-
-- obsolete signature: https://github.com/supabase/infrastructure/pull/5524/files
4+
-- obsolete signature: https://github.com/supabase/platform/pull/5524/files
55
drop function if exists graphql_public.graphql(text, text, jsonb);
66
-- GraphQL Placeholder Entrypoint
77
create or replace function graphql_public.graphql(

0 commit comments

Comments
 (0)