-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add option for default ee from org export #565
Conversation
roles/organizations/tasks/main.yml
Outdated
@@ -6,7 +6,7 @@ | |||
custom_virtualenv: "{{ __controller_organizations_item.custom_virtualenv | default(omit, true) }}" | |||
max_hosts: "{{ __controller_organizations_item.max_hosts | default(omit, true) }}" | |||
instance_groups: "{{ __controller_organizations_item.instance_groups | default(omit, true) }}" | |||
default_environment: "{{ (__controller_organizations_item.default_environment | default(omit)) if (assign_default_ee_to_org is defined and assign_default_ee_to_org) else omit }}" | |||
default_environment: "{{ (__controller_organizations_item.default_environment.name | default(__controller_organizations_item.execution_environment | default(omit, true))) if (assign_default_ee_to_org is defined and assign_default_ee_to_org) else omit }}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want omit true?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't remember anymore, and I was just keeping the original
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think remove true
…ration into devel
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
What does this PR do?
Add option for default ee from org export