mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add reg to the whitelist
This commit is contained in:
parent
6ed6c31e4f
commit
5558a0af50
6 changed files with 6 additions and 6 deletions
|
@ -408,7 +408,7 @@ class BotoApiGatewayStateTestCaseBase(TestCase, LoaderModuleMockMixin):
|
|||
context = {}
|
||||
utils = salt.loader.utils(
|
||||
self.opts,
|
||||
whitelist=['boto', 'boto3', 'args', 'systemd', 'path', 'platform'],
|
||||
whitelist=['boto', 'boto3', 'args', 'systemd', 'path', 'platform', 'reg'],
|
||||
context=context)
|
||||
serializers = salt.loader.serializers(self.opts)
|
||||
self.funcs = salt.loader.minion_mods(self.opts, context=context, utils=utils, whitelist=['boto_apigateway'])
|
||||
|
|
|
@ -110,7 +110,7 @@ class BotoCloudTrailStateTestCaseBase(TestCase, LoaderModuleMockMixin):
|
|||
ctx = {}
|
||||
utils = salt.loader.utils(
|
||||
self.opts,
|
||||
whitelist=['boto', 'boto3', 'args', 'systemd', 'path', 'platform'],
|
||||
whitelist=['boto', 'boto3', 'args', 'systemd', 'path', 'platform', 'reg'],
|
||||
context=ctx)
|
||||
serializers = salt.loader.serializers(self.opts)
|
||||
self.funcs = funcs = salt.loader.minion_mods(self.opts, context=ctx, utils=utils, whitelist=['boto_cloudtrail'])
|
||||
|
|
|
@ -132,7 +132,7 @@ class BotoCognitoIdentityStateTestCaseBase(TestCase, LoaderModuleMockMixin):
|
|||
ctx = {}
|
||||
utils = salt.loader.utils(
|
||||
self.opts,
|
||||
whitelist=['boto', 'boto3', 'args', 'systemd', 'path', 'platform'],
|
||||
whitelist=['boto', 'boto3', 'args', 'systemd', 'path', 'platform', 'reg'],
|
||||
context=ctx)
|
||||
serializers = salt.loader.serializers(self.opts)
|
||||
self.funcs = funcs = salt.loader.minion_mods(self.opts, context=ctx, utils=utils, whitelist=['boto_cognitoidentity'])
|
||||
|
|
|
@ -109,7 +109,7 @@ class BotoLambdaStateTestCaseBase(TestCase, LoaderModuleMockMixin):
|
|||
ctx = {}
|
||||
utils = salt.loader.utils(
|
||||
self.opts,
|
||||
whitelist=['boto', 'boto3', 'args', 'systemd', 'path', 'platform'],
|
||||
whitelist=['boto', 'boto3', 'args', 'systemd', 'path', 'platform', 'reg'],
|
||||
context=ctx)
|
||||
serializers = salt.loader.serializers(self.opts)
|
||||
self.funcs = funcs = salt.loader.minion_mods(self.opts, context=ctx, utils=utils, whitelist=['boto_lambda'])
|
||||
|
|
|
@ -272,7 +272,7 @@ class BotoS3BucketStateTestCaseBase(TestCase, LoaderModuleMockMixin):
|
|||
ctx = {}
|
||||
utils = salt.loader.utils(
|
||||
self.opts,
|
||||
whitelist=['boto', 'boto3', 'args', 'systemd', 'path', 'platform'],
|
||||
whitelist=['boto', 'boto3', 'args', 'systemd', 'path', 'platform', 'reg'],
|
||||
context=ctx)
|
||||
serializers = salt.loader.serializers(self.opts)
|
||||
self.funcs = funcs = salt.loader.minion_mods(self.opts, context=ctx, utils=utils, whitelist=['boto_s3_bucket'])
|
||||
|
|
|
@ -91,7 +91,7 @@ class BotoVpcStateTestCaseBase(TestCase, LoaderModuleMockMixin):
|
|||
ctx = {}
|
||||
utils = salt.loader.utils(
|
||||
self.opts,
|
||||
whitelist=['boto', 'boto3', 'args', 'systemd', 'path', 'platform'],
|
||||
whitelist=['boto', 'boto3', 'args', 'systemd', 'path', 'platform', 'reg'],
|
||||
context=ctx)
|
||||
serializers = salt.loader.serializers(self.opts)
|
||||
self.funcs = salt.loader.minion_mods(self.opts, context=ctx, utils=utils, whitelist=['boto_vpc', 'config'])
|
||||
|
|
Loading…
Add table
Reference in a new issue