-
Notifications
You must be signed in to change notification settings - Fork 2
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
Change ports for motley-cue #64
Conversation
Terraform Format and Style 🖌
|
deployment/main.tf
Outdated
@@ -6,7 +6,7 @@ resource "openstack_compute_instance_v2" "dashboard" { | |||
network { | |||
uuid = var.net_id | |||
} | |||
security_groups = [openstack_compute_secgroup_v2.secgroup.name, "default"] | |||
security_groups = ["default", "HTTP", "motley-cue"] |
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.
should we remove default
?
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.
ssh
is there, should I add it to motley-cue
then?
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.
yes, I think it's better to have explicit control of the ports than to rely on groups that we don't control
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.
done, thanks
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
Terraform Format and Style 🖌
|
Terraform Format and Style 🖌
|
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.
just 2 minor things
deployment/main.tf
Outdated
@@ -6,7 +6,7 @@ resource "openstack_compute_instance_v2" "dashboard" { | |||
network { | |||
uuid = var.net_id | |||
} | |||
security_groups = [openstack_compute_secgroup_v2.secgroup.name, "default"] | |||
security_groups = ["default", "HTTP", "motley-cue"] |
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.
yes, I think it's better to have explicit control of the ports than to rely on groups that we don't control
Co-authored-by: Enol Fernández <[email protected]>
Terraform Format and Style 🖌
|
Terraform Format and Style 🖌
|
Terraform Format and Style 🖌
|
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.
👍
Summary
motley-cue
uses8080
, liketraefik
for the dashboard. This PR movesmotley-cue
to a different port.Related issue :