
Add .gitreview, Gemfile, .rubocop.yml, Berksfile, and Strainerfile. Fixed style errors. Added empty unit test so chef-unit passes until we get real unit tests. Change-Id: I59d8567111c387b25dc215dc1309f03a1516ce3d
17 lines
233 B
Ruby
17 lines
233 B
Ruby
# encoding: UTF-8#
|
|
#
|
|
default[:som_api][:firewall][:rules] = [
|
|
https: {
|
|
port: '443',
|
|
protocol: 'tcp'
|
|
},
|
|
https_8080: {
|
|
port: '8080',
|
|
protocol: 'tcp'
|
|
},
|
|
http_8081: {
|
|
port: '8081',
|
|
protocol: 'tcp'
|
|
}
|
|
]
|