mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
82 lines
2.6 KiB
Plaintext
82 lines
2.6 KiB
Plaintext
# this file should be installed at: /etc/salt/cloud
|
|
##### VM Defaults #####
|
|
##########################################
|
|
# Set the default cloud provider, this can still be overridden on a per vm
|
|
# basis
|
|
#provider: rackspace
|
|
#
|
|
# Set the size of minion keys to generate, defaults to 2048
|
|
#keysize: 2048
|
|
#
|
|
# Set the default os being deployed, this sets which deployment script to
|
|
# apply, this must be set here or in all vm configurations
|
|
#os: RHEL6
|
|
|
|
##### Cloud Provider Settings #####
|
|
##########################################
|
|
# Rackspace creds take the following options:
|
|
#RACKSPACE.user: foobar
|
|
#RACKSPACE.apikey: 8975234N8U92G25908
|
|
#
|
|
# Amazon AWS Accepts these options:
|
|
#AWS.id: LSKDJGHSDLGKJLSDFKGJ
|
|
#AWS.key: 'sildghsldkghsroegijenovdfnzlkgh'
|
|
#AWS.keyname: default
|
|
#AWS.securitygroup: default
|
|
#AWS.private_key: /root/test.pem
|
|
# Specify whether to use public or private IP for deploy script
|
|
# private_ips or public_ips
|
|
#AWS.ssh_interface: public_ips
|
|
|
|
#
|
|
# Linode takes the single api_key
|
|
#LINODE.apikey: <Linode api key>
|
|
#LINODE.password: F00BarBaz
|
|
#
|
|
# GoGrid uses a generated apikey and shared secret
|
|
#GOGRID.apikey: wef98rfweirugh
|
|
#GOGRID.sharedsecret: saltybacon
|
|
#
|
|
# Joyent config
|
|
#JOYENT.user: foobar
|
|
#JOYENT.password: zaphod77
|
|
#JOYENT.private_key: /root/joyent.pem
|
|
#
|
|
|
|
##### Logging settings #####
|
|
##########################################
|
|
# The location of the master log file
|
|
#log_file: /var/log/salt/cloud
|
|
#
|
|
# The level of messages to send to the console.
|
|
# One of 'garbage', 'trace', 'debug', info', 'warning', 'error', 'critical'.
|
|
# Default: 'info'
|
|
#log_level: info
|
|
#
|
|
# The level of messages to send to the log file.
|
|
# One of 'garbage', 'trace', 'debug', info', 'warning', 'error', 'critical'.
|
|
# Default: 'info'
|
|
#log_level_logfile:
|
|
|
|
#
|
|
# The date and time format used in log messages. Allowed date/time formating
|
|
# can be seen here:
|
|
# http://docs.python.org/library/time.html#time.strftime
|
|
#log_datefmt: '%Y-%m-%d %H:%M:%S'
|
|
#
|
|
# The format of the console logging messages. Allowed formatting options can
|
|
# be seen here:
|
|
# http://docs.python.org/library/logging.html#logrecord-attributes
|
|
#log_fmt_console: '[%(levelname)-8s] %(message)s'
|
|
#log_fmt_logfile: '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s'
|
|
#
|
|
# Logger levels can be used to tweak specific loggers logging levels.
|
|
# For example, if you want to have the salt library at the 'warning' level,
|
|
# but you still wish to have 'salt.modules' at the 'debug' level:
|
|
# log_granular_levels:
|
|
# 'salt': 'warning',
|
|
# 'salt.modules': 'debug'
|
|
# 'saltcloud': 'info'
|
|
#
|
|
#log_granular_levels: {}
|