forked from p15670423/monkey
Merge pull request #427 from guardicore/426/bugfix-load-monkey-model-aws
Added aws_instance_id field to monkey model
This commit is contained in:
commit
f8fe0b9f09
|
@ -38,6 +38,8 @@ class Monkey(Document):
|
|||
ttl_ref = ReferenceField(MonkeyTtl)
|
||||
tunnel = ReferenceField("self")
|
||||
command_control_channel = EmbeddedDocumentField(CommandControlChannel)
|
||||
aws_instance_id = StringField(required=False) # This field only exists when the monkey is running on an AWS
|
||||
# instance. See https://github.com/guardicore/monkey/issues/426.
|
||||
|
||||
# LOGIC
|
||||
@staticmethod
|
||||
|
|
Loading…
Reference in New Issue