Import previous aws account

This commit is contained in:
fbsanchez 2019-06-24 19:36:50 +02:00
parent 38f72bed8d
commit 180948c51c
1 changed files with 3 additions and 0 deletions

View File

@ -14,4 +14,7 @@ CREATE TABLE IF NOT EXISTS `tcredential_store` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `tcredential_store` (`identifier`, `id_group`, `product`, `username`, `password`) VALUES ("imported_aws_account", 0, "AWS", (SELECT `value` FROM `tconfig` WHERE `token` = "aws_access_key_id" LIMIT 1), (SELECT `value` FROM `tconfig` WHERE `token` = "aws_secret_access_key" LIMIT 1));
COMMIT;