forked from juju-solutions/charm-aws-integrator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.yaml
40 lines (36 loc) · 1.35 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
options:
credentials:
description: |
The base64-encoded contents of an AWS credentials file, which must include
both 'aws_access_key_id' and 'aws_secret_access_key' fields.
This can be used from bundles with 'include-base64://' (see
https://jujucharms.com/docs/stable/charms-bundles#setting-charm-configurations-options-in-a-bundle),
or from the command-line with 'juju config aws credentials="$(base64 /path/to/file)"'.
It is strongly recommended that you use 'juju trust' instead, if available.
This will take precedence over the 'access-key' / 'secret-key' config options.
type: string
default: ""
access-key:
description: |
An IAM access key.
It is strongly recommended that you use 'juju trust' instead, if available.
type: string
default: ""
secret-key:
description: |
An IAM secret key.
It is strongly recommended that you use 'juju trust' instead, if available.
type: string
default: ""
rds-mysql-instance-class:
description: Instance class to use for RDS MySQL databases.
type: string
default: "db.t3.small"
rds-mysql-port:
description: Port to use for RDS MySQL databases.
type: int
default: 3306
rds-mysql-storage:
description: Amount of storage (in GiB) to allocate for RDS MySQL databases.
type: int
default: 20