We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3233eb7 commit 11319efCopy full SHA for 11319ef
src/ops/inventory/plugin/cns.py
@@ -26,6 +26,7 @@ def cns(args):
26
jsn = ec2(dict(
27
region=region,
28
boto_profile=profile,
29
+ teleport_enabled=args.get('teleport_enabled', False),
30
cache=args.get('cache', 3600 * 24),
31
filters=[
32
{'Name': 'tag:cluster', 'Values': [cns_cluster]}
src/ops/inventory/plugin/ec2.py
@@ -14,7 +14,7 @@
14
def ec2(args):
15
filters = args.get('filters', [])
16
bastion_filters = args.get('bastion', [])
17
- teleport_enabled = args.get('teleport_enabled', False)
+ teleport_enabled = args.get('teleport_enabled')
18
19
if args.get('cluster') and not args.get('filters'):
20
filters = [{'Name': 'tag:cluster', 'Values': [args.get('cluster')]}]
0 commit comments