This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # AWS login to the management console or instance with Session Manager or SSH | |
| # | |
| # Require: aws-vault | |
| # | |
| # Copyright (c) 2022 Jun Futagawa (jfut) | |
| # | |
| # This software is released under the MIT License. | |
| # http://opensource.org/licenses/mit-license.php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # AWS Secrets Manager CLI for role based release files | |
| # | |
| # Copyright (c) 2023 Jun Futagawa (jfut) | |
| # | |
| # This software is released under the MIT License. | |
| # http://opensource.org/licenses/mit-license.php | |
| # - ENV/release/secret.conf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # Mirror the page without extensions as it is. | |
| # | |
| # Copyright (c) 2023 Jun Futagawa (jfut) | |
| # | |
| # This software is released under the MIT License. | |
| # http://opensource.org/licenses/mit-license.php | |
| set -uo pipefail |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // echo + gorilla/sessions: Session Management Utility Functions | |
| // | |
| // Copyright (c) 2024 Jun Futagawa (jfut) | |
| // | |
| // This software is released under the MIT License. | |
| // http://opensource.org/licenses/mit-license.php | |
| package common | |
| import ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // echo: CSRF Token Management with Session | |
| // | |
| // Copyright (c) 2024 Jun Futagawa (jfut) | |
| // | |
| // This software is released under the MIT License. | |
| // http://opensource.org/licenses/mit-license.php | |
| package web | |
| import ( |
OlderNewer