terraform-openstack-securit.../tests/module/README.md
Bertrand Lanson 12a7830529
All checks were successful
pull-requests-open / Check commit compliance (pull_request) Successful in 29s
pull-requests-open / Check pre-commit status (pull_request) Successful in 39s
pull-requests-open / Run E2E tofu tests (pull_request) Successful in 1m44s
feat: add raw output for the security group objects
2024-10-03 20:56:18 +02:00

3.0 KiB

module

Requirements

Name Version
terraform >= 1.0.0
openstack ~> 2.1.0

Providers

Name Version
vault n/a

Modules

Name Source Version
security_group ../../ n/a

Resources

Name Type
vault_kv_secret_v2.openstack_provider_project_info data source
vault_kv_secret_v2.openstack_provider_project_user data source
vault_kv_secret_v2.openstack_provider_region data source

Inputs

Name Description Type Default Required
delete_default_rules Whether or not to delete the default egress rules applied to the security group.
Default rules allow egress ipv4 and ipv6 to 0.0.0.0/0.
bool false no
description Description for the security group. string null no
egress_rules The list of egress rules to attach to the security group.
You can use all regular entries from the openstack_networking_secgroup_rule_v2 resource
provided by the openstack provider, except region, which defaults to the region of the provider used,
and direction, which defaults to egress.
By default, if ethertype is not specified, it will by IPv4.
map(map(string)) {} no
ingress_rules The list of ingress rules to attach to the security group.
You can use all regular entries from the openstack_networking_secgroup_rule_v2 resource
provided by the openstack provider, except region, which defaults to the region of the provider used,
and direction, which defaults to ingress.
By default, if ethertype is not specified, it will by IPv4.
map(map(string)) {} no
name The name of the security group. string n/a yes
tags A list of tags (strings) to apply to the security group list(string) [] no
tenant_id The tenant for which to create the security group.
This is only required for admins creating security groups for other tenant.
string null no

Outputs

No outputs.