summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-support/salt/files/cloud
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack/recipes-support/salt/files/cloud')
-rw-r--r--meta-openstack/recipes-support/salt/files/cloud99
1 files changed, 0 insertions, 99 deletions
diff --git a/meta-openstack/recipes-support/salt/files/cloud b/meta-openstack/recipes-support/salt/files/cloud
deleted file mode 100644
index 921cc04..0000000
--- a/meta-openstack/recipes-support/salt/files/cloud
+++ /dev/null
@@ -1,99 +0,0 @@
1# This file should normally be installed at: /etc/salt/cloud
2
3
4##########################################
5##### VM Defaults #####
6##########################################
7
8# Set the size of minion keys to generate, defaults to 2048
9#
10#keysize: 2048
11
12
13# Set the default os being deployed. This sets which deployment script to
14# apply. This argument is optional.
15#
16#script: bootstrap-salt
17
18
19##########################################
20##### Logging Settings #####
21##########################################
22
23# The location of the master log file
24#
25#log_file: /var/log/salt/cloud
26
27
28# The level of messages to send to the console.
29# One of 'garbage', 'trace', 'debug', info', 'warning', 'error', 'critical'.
30#
31# The following log levels are considered INSECURE and may log sensitive data:
32# ['garbage', 'trace', 'debug']
33#
34# Default: 'info'
35#
36#log_level: info
37
38
39# The level of messages to send to the log file.
40# One of 'garbage', 'trace', 'debug', info', 'warning', 'error', 'critical'.
41#
42# Default: 'info'
43#
44#log_level_logfile: info
45
46
47# The date and time format used in log messages. Allowed date/time formatting
48# can be seen here:
49#
50# http://docs.python.org/library/time.html#time.strftime
51#
52#log_datefmt: '%Y-%m-%d %H:%M:%S'
53
54
55# The format of the console logging messages. Allowed formatting options can
56# be seen here:
57#
58# http://docs.python.org/library/logging.html#logrecord-attributes
59#
60# Console log colors are specified by these additional formatters:
61#
62# %(colorlevel)s
63# %(colorname)s
64# %(colorprocess)s
65# %(colormsg)s
66#
67# Since it is desirable to include the surrounding brackets, '[' and ']', in
68# the coloring of the messages, these color formatters also include padding as
69# well. Color LogRecord attributes are only available for console logging.
70#
71#log_fmt_console: '%(colorlevel)s %(colormsg)s'
72#log_fmt_console: '[%(levelname)-8s] %(message)s'
73#
74#log_fmt_logfile: '%(asctime)s,%(msecs)03d [%(name)-17s][%(levelname)-8s] %(message)s'
75
76
77# Logger levels can be used to tweak specific loggers logging levels.
78# For example, if you want to have the salt library at the 'warning' level,
79# but you still wish to have 'salt.modules' at the 'debug' level:
80#
81# log_granular_levels:
82# 'salt': 'warning',
83# 'salt.modules': 'debug'
84# 'saltcloud': 'info'
85#
86#log_granular_levels: {}
87
88
89##########################################
90##### Misc Defaults #####
91##########################################
92
93# Whether or not to remove the accompanying SSH key from the known_hosts file
94# when an instance is destroyed.
95#
96# Default: 'False'
97#
98#delete_sshkeys: False
99