Skip to content
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 config for comma-delimited destinations in ASGs #386

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions jobs/cloud_controller_ng/spec
Original file line number Diff line number Diff line change
Expand Up @@ -975,6 +975,9 @@ properties:
description: "The default running security groups that will be seeded in CloudController. Note: security groups are only seeded on the first deploy, after which they should be managed via the API"
cc.default_staging_security_groups:
description: "The default staging security groups that will be seeded in CloudController. Note: security groups are only seeded on the first deploy, after which they should be managed via the API"
cc.security_groups.enable_comma_delimited_destinations:
description: "Flag to enable comma-delimited destinations (e.g. `1.1.1.1,10.0.0.0/24`) within security group definitions. Defaults to `false`."
default: false

cc.allowed_cors_domains:
description: "List of domains (including scheme) from which Cross-Origin requests will be accepted, a * can be used as a wildcard for any part of a domain"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,8 @@ log_audit_events: <%= p("cc.log_audit_events") %>
security_group_definitions: <%= p("cc.security_group_definitions").to_json %>
default_running_security_groups: <%= p("cc.default_running_security_groups").to_json %>
default_staging_security_groups: <%= p("cc.default_staging_security_groups").to_json %>
security_groups:
enable_comma_delimited_destinations: <%= p("cc.security_groups.enable_comma_delimited_destinations") %>

allowed_cors_domains: <%= p("cc.allowed_cors_domains").to_json %>

Expand Down