2021-12-02から1日間の記事一覧

{CloudFormation}シークレットマネージャからパスワード取得

AWS

https://techblog.zozo.com/entry/pass_secrets_to_cloudformation -- 1. コマンド等のインストール -- 1.1 aws cli version 2 インストール curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"unzip awscliv2.zipsudo ./a…

パーティションインデックス

DB

MySQL (8.0.27)https://dev.mysql.com/doc/refman/8.0/ja/partitioning-overview.html drop table tab1; create table tab1( col1 int primary key, col2 int, col3 int, col4 int) partition by range (col1) ( partition p1 values less than (0) , partit…