still in progress
This commit is contained in:
src-tauri
19
src-tauri/src/credentials/fixtures/aws_credentials.sql
Normal file
19
src-tauri/src/credentials/fixtures/aws_credentials.sql
Normal file
@ -0,0 +1,19 @@
|
||||
INSERT INTO credentials (id, name, type, created_at)
|
||||
VALUES
|
||||
(X'00000000000000000000000000000000', 'test', 'aws', strftime('%s')),
|
||||
(X'ffffffffffffffffffffffffffffffff', 'test2', 'aws', strftime('%s'));
|
||||
|
||||
INSERT INTO aws_credentials (id, access_key_id, secret_key_enc, nonce)
|
||||
VALUES
|
||||
(
|
||||
X'00000000000000000000000000000000',
|
||||
'AKIAIOSFODNN7EXAMPLE',
|
||||
X'B09ACDADD07E295A3FD9146D8D3672FA5C2518BFB15CF039E68820C42EFD3BC3BE3156ACF438C2C957EC113EF8617DBC71790EAFE39B3DE8',
|
||||
X'DB777F2C6315DC0E12ADF322256E69D09D7FB586AAE614A6'
|
||||
),
|
||||
(
|
||||
X'ffffffffffffffffffffffffffffffff',
|
||||
'AKIAIOSFODNN7EXAMPL2',
|
||||
X'ED6125FF40EF6F61929DF5FFD7141CD2B5A302A51C20152156477F8CC77980C614AB1B212AC06983F3CED35C4F3C54D4EE38964859930FBF',
|
||||
X'962396B78DAA98DFDCC0AC0C9B7D688EC121F5759EBA790A'
|
||||
);
|
Reference in New Issue
Block a user