4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 26 / 217
Newer►
  • terraform-aws-ecs-scheduled-task/main.tf at master · dxw/terraform-aws-ecs-scheduled-task · GitHub

    TIL : les ECS scheduled tasks sont en fait trigger par cloudwatch

    12 août 2019 à 09:42:09 UTC+2 - permalink - archive.org - https://github.com/dxw/terraform-aws-ecs-scheduled-task/blob/master/main.tf
    ecs task
  • Downloads & Changelog
    12 août 2019 à 09:40:05 UTC+2 - permalink - archive.org - https://omnidb.org/en/downloads-en
    client postgresql
  • thumbnail
    arl/tmux-gitbar: Git in your tmux status bar
    10 août 2019 à 13:44:09 UTC+2 - permalink - archive.org - https://github.com/arl/tmux-gitbar#installation
    git tmux
  • Note: ssm links

    https://docs.aws.amazon.com/systems-manager/latest/userguide/ssm-agent.html

    https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-working-with-sessions-start.html#sessions-start-ssh

    https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-getting-started-enable-ssh-connections.html

    10 août 2019 à 13:43:30 UTC+2 - permalink - archive.org - https://links.infomee.fr/?Hgv05w
    aws ssm
  • Meld

    à tester

    10 août 2019 à 13:42:04 UTC+2 - permalink - archive.org - https://meldmerge.org/
    diff git merge tool
  • thumbnail
    Managing PostgreSQL users and roles | AWS Database Blog

    A faire en superuser:

    -- Revoke privileges from 'public' role
    REVOKE CREATE ON SCHEMA public FROM PUBLIC;
    REVOKE ALL ON DATABASE mydatabase FROM PUBLIC;

    -- Create schema
    CREATE SCHEMA myschema

    -- Read-only role
    CREATE ROLE readonly;
    GRANT CONNECT ON DATABASE mydatabase TO readonly;
    GRANT USAGE ON SCHEMA myschema TO readonly;
    GRANT SELECT ON ALL TABLES IN SCHEMA myschema TO readonly;
    ALTER DEFAULT PRIVILEGES IN SCHEMA myschema GRANT SELECT ON TABLES TO readonly;

    -- Read/write role
    CREATE ROLE readwrite;
    GRANT CONNECT ON DATABASE mydatabase TO readwrite;
    GRANT USAGE, CREATE ON SCHEMA myschema TO readwrite;
    GRANT SELECT, INSERT, UPDATE, DELETE ON ALL TABLES IN SCHEMA myschema TO readwrite;
    ALTER DEFAULT PRIVILEGES IN SCHEMA myschema GRANT SELECT, INSERT, UPDATE, DELETE ON TABLES TO readwrite;
    GRANT USAGE ON ALL SEQUENCES IN SCHEMA myschema TO readwrite;
    ALTER DEFAULT PRIVILEGES IN SCHEMA myschema GRANT USAGE ON SEQUENCES TO readwrite;

    -- Users creation
    CREATE USER reporting_user1 WITH PASSWORD 'some_secret_passwd';
    CREATE USER reporting_user2 WITH PASSWORD 'some_secret_passwd';
    CREATE USER app_user1 WITH PASSWORD 'some_secret_passwd';
    CREATE USER app_user2 WITH PASSWORD 'some_secret_passwd';

    -- Grant privileges to users
    GRANT readonly TO reporting_user1;
    GRANT readonly TO reporting_user2;
    GRANT readwrite TO app_user1;
    GRANT readwrite TO app_user2;

    3 août 2019 à 16:10:30 UTC+2 * - permalink - archive.org - https://aws.amazon.com/fr/blogs/database/managing-postgresql-users-and-roles/
    aws postgresql rds
  • Enable or Disable Close Tab by Double Click in Firefox | Tutorials

    about:config
    browser.tabs.closeTabByDblclick

    2 août 2019 à 15:25:42 UTC+2 - permalink - archive.org - https://www.tenforums.com/tutorials/113005-enable-disable-close-tab-double-click-firefox.html
    firefox
  • thumbnail
    avsm/docker-ssh-agent-forward: Forward SSH agent socket into a container
    30 juillet 2019 à 08:26:21 UTC+2 - permalink - archive.org - https://github.com/avsm/docker-ssh-agent-forward
    docker mac mount ssh
  • thumbnail
    GitHub - scrooloose/nerdtree: A tree explorer plugin for vim.

    Comment j'ai fait pour me passer de nerdtree?

    29 juillet 2019 à 15:50:41 UTC+2 - permalink - archive.org - https://github.com/scrooloose/nerdtree
    vim
  • Iterm Themes - Color Schemes and Themes for Iterm2
    28 juillet 2019 à 11:43:48 UTC+2 - permalink - archive.org - https://iterm2colorschemes.com/
    color iterm2 mac
  • thumbnail
    GitHub - tmux-plugins/tmux-continuum: Continuous saving of tmux environment. Automatic restore when tmux is started. Automatic tmux start when computer is turned on.

    Encore mieux que tmux-resurrect

    25 juillet 2019 à 08:12:01 UTC+2 - permalink - archive.org - https://github.com/tmux-plugins/tmux-continuum
    tmux
  • thumbnail
    How to use custom workflows and restrict actions by username · Issue #701 · runatlantis/atlantis · GitHub

    https://unix.stackexchange.com/questions/111508/bash-test-if-word-is-in-set

    24 juillet 2019 à 09:17:28 UTC+2 * - permalink - archive.org - https://github.com/runatlantis/atlantis/issues/701
    atlantis terraform
  • AWS Fargate Pricing Calculator

    0,25 vCPU + 0,5GB = 9,010$ (1 month)

    23 juillet 2019 à 18:25:07 UTC+2 - permalink - archive.org - http://fargate-pricing-calculator.site.s3-website-us-east-1.amazonaws.com/
    aws fargate
  • 1x Engineer
    18 juillet 2019 à 19:49:35 UTC+2 - permalink - archive.org - https://1x.engineer/
    engineer
  • Terraform: terraform_remote_state - Terraform by HashiCorp
    12 juillet 2019 à 13:54:34 UTC+2 - permalink - archive.org - https://www.terraform.io/docs/providers/terraform/d/remote_state.html
    aws data terraform
  • PostgreSQL: Documentation: 11: 34.15. The Password File
    12 juillet 2019 à 11:22:59 UTC+2 - permalink - archive.org - https://www.postgresql.org/docs/current/libpq-pgpass.html
    postgresql
  • thumbnail
    Voici l'emplacement des 8 fontaines d’eau pétillante gratuites de Paris - Carnets de Week-Ends
    8 juillet 2019 à 20:30:33 UTC+2 - permalink - archive.org - https://www.carnetsdeweekends.fr/voici-lemplacement-8-fontaines-deau-petillante-gratuites-de-paris/
    eau paris
  • thumbnail
    Announcing Amazon VPC Traffic Mirroring for Amazon EC2 Instances
    3 juillet 2019 à 15:39:40 UTC+2 - permalink - archive.org - https://aws.amazon.com/about-aws/whats-new/2019/06/announcing-amazon-vpc-traffic-mirroring-for-amazon-ec2-instances/
    aws mirror network
  • Note: postgre

    voir obsidian "Postgresql pg survival"

    3 juillet 2019 à 14:38:58 UTC+2 * - permalink - archive.org - https://links.infomee.fr/?IImegQ
    postgresql
  • AWS Systems Manager Session Manager - AWS Systems Manager

    interessant

    28 juin 2019 à 10:44:14 UTC+2 - permalink - archive.org - https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager.html
    aws ssh ssm
Links per page: 20 50 100
◄Older
page 26 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation