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
| version = 0.1 | |
| [default] | |
| [default.deploy] | |
| [default.deploy.parameters] | |
| stack_name = "<FUNCTION_NAME>-sam-project-v1" |
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
| AWSTemplateFormatVersion: '2010-09-09' | |
| Transform: AWS::Serverless-2016-10-31 | |
| Description: > | |
| Template for deploying lambda function | |
| Parameters: | |
| LambdaSg: | |
| Description: "Lambda security group ID" | |
| Type: AWS::EC2::SecurityGroup::Id | |
| LambdaSubnets: | |
| Description: "Lambda subnets" |
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
| version: 2 | |
| updates: | |
| - package-ecosystem: "github-actions" | |
| directory: "/" | |
| schedule: | |
| interval: "daily" | |
| - package-ecosystem: npm | |
| directory: "/javascript" | |
| schedule: | |
| interval: daily |
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
| mysql> SELECT TABLE_SCHEMA, TABLE_NAME, CREATE_OPTIONS FROM INFORMATION_SCHEMA.TABLES | |
| WHERE CREATE_OPTIONS LIKE '%ENCRYPTION%'; | |
| +--------------+------------+----------------+ | |
| | TABLE_SCHEMA | TABLE_NAME | CREATE_OPTIONS | | |
| +--------------+------------+----------------+ | |
| | databasename | table_name | ENCRYPTION="Y" | | |
| +--------------+------------+----------------+ |
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
| mysql> SELECT PLUGIN_NAME, PLUGIN_STATUS | |
| FROM INFORMATION_SCHEMA.PLUGINS | |
| WHERE PLUGIN_NAME LIKE 'keyring%'; | |
| +--------------+---------------+ | |
| | PLUGIN_NAME | PLUGIN_STATUS | | |
| +--------------+---------------+ | |
| | keyring_file | ACTIVE | | |
| +--------------+---------------+ |
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
| # Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. | |
| # | |
| # This program is free software; you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation; version 2 of the License. | |
| # | |
| # This program is distributed in the hope that it will be useful, | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| # GNU General Public License for more details. |
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
| datasources: | |
| datasources.yaml: | |
| apiVersion: 1 | |
| datasources: | |
| - name: Prometheus | |
| type: prometheus | |
| url: http://prometheus-service.monitoring:9090 | |
| access: proxy | |
| isDefault: true |