From a1934823ba0cc63f78624e4e675481197012987b Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 15 Dec 2020 16:56:08 -0500 Subject: [PATCH] Flip the instance ID var for AWS to `instance_id` This is always returned by the plugin, ec2_id was what the old script returned. --- awx/settings/defaults.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/settings/defaults.py b/awx/settings/defaults.py index d47277eaed..b9e7ecddb7 100644 --- a/awx/settings/defaults.py +++ b/awx/settings/defaults.py @@ -662,7 +662,7 @@ INV_ENV_VARIABLE_BLOCKED = ("HOME", "USER", "_", "TERM") # ---------------- EC2_ENABLED_VAR = 'ec2_state' EC2_ENABLED_VALUE = 'running' -EC2_INSTANCE_ID_VAR = 'ec2_id' +EC2_INSTANCE_ID_VAR = 'instance_id' EC2_EXCLUDE_EMPTY_GROUPS = True # ------------