Fix typos
This commit is contained in:
parent
ff75d57337
commit
f015bbb4a9
4
dtca.tf
4
dtca.tf
|
@ -1,5 +1,5 @@
|
|||
resource "openstack_networking_port_v2" "dtcaport" {
|
||||
name = "${dtcaname}-sunet-se-port"
|
||||
name = "${var.caname}-sunet-se-port"
|
||||
network_id = data.openstack_networking_network_v2.public.id
|
||||
# A list of security group ID
|
||||
security_group_ids = [
|
||||
|
@ -14,7 +14,7 @@ resource "openstack_networking_port_v2" "dtcaport" {
|
|||
|
||||
|
||||
resource "openstack_networking_port_v2" "dtcadbport" {
|
||||
name = "${dtcadbname}-sunet-se-port"
|
||||
name = "${var.cadbname}-sunet-se-port"
|
||||
network_id = data.openstack_networking_network_v2.public.id
|
||||
# A list of security group ID
|
||||
security_group_ids = [
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Datasource of sunet ssh-from-jumphost security group.
|
||||
data "openstack_networking_secgroup_v2" "sshfromjumphosts" {
|
||||
name = "ssh-from-jumphost"
|
||||
name = "Allow SSH from SUNET jumphosts"
|
||||
}
|
||||
|
||||
data "openstack_networking_secgroup_v2" "allegress" {
|
||||
|
|
Loading…
Reference in a new issue