security-group
julienlevasseur/security-group/openstack
Terraform Module
HCL
OPENSTACK
Terraform OpenStack Security Group Module
Install
module "security-group" {
source = "julienlevasseur/security-group/openstack"
version = "0.1.0"
}
README
README Provide a basic configuration to describe an OpenStack Security Group with Terraform. Usage ``HCL module "openstack_secgroup_ssh" { source = "julienlevasseur/security-group/openstack" name = "std_ssh_rhel_base" description = "Wide SSH access" from_port = 22 to_port = 22 ip_protocol = "tcp" cidr = "0.0.0.0/0" } `` Authors Julien Levasseur (https://github.com/julienlevasseur)
Inputs (6)
| Name | Type | Description | Default |
|---|---|---|---|
| name | any | A unique name for the resource | required |
| description | any | A description for the security group | required |
| from_port | any | An integer representing the lower bound of the port range to open | required |
| to_port | any | An integer representing the upper bound of the port range to open | required |
| ip_protocol | any | The protocol type that will be allowed | required |
| cidr | any | The IP range that will be the source of network traffic to the security group. U | required |
Outputs (1)
name — The name of the Security Group resourceResources (1)
openstack_compute_secgroup_v2
Details
FrameworkTerraform Module
LanguageHCL
Version0.1.0
Cloud OPENSTACK
Total downloads818
Inputs6
Outputs1
Resources1
Namespacejulienlevasseur
Updated