diff --git a/sas/README.md b/sas/README.md index 1456abf..a53501b 100644 --- a/sas/README.md +++ b/sas/README.md @@ -100,14 +100,14 @@ No modules. | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| -| [description](#input\_description) | Security Group Description | `string` | n/a | yes | +| [description](#input\_description) | Security Group Description | `string` | `""` | no | | [egress\_networks](#input\_egress\_networks) | List of egress networks (with all pre-defined egress ports) | `list(string)` | `[]` | no | | [egress\_security\_groups](#input\_egress\_security\_groups) | List of egress security groups (all ports) | `list(string)` | `[]` | no | | [enable\_self](#input\_enable\_self) | Enable\|Disable self full access | `bool` | `false` | no | | [ingress\_networks](#input\_ingress\_networks) | List of ingress networks for access (with all pre-defined ingress ports) | `list(string)` | `[]` | no | | [ingress\_security\_groups](#input\_ingress\_security\_groups) | List of ingress security groups for all ports | `list(string)` | `[]` | no | -| [name](#input\_name) | Security Group Name | `string` | n/a | yes | -| [short\_description](#input\_short\_description) | Security Group Short Description | `string` | n/a | yes | +| [name](#input\_name) | Security Group Name | `string` | `""` | no | +| [short\_description](#input\_short\_description) | Security Group Short Description | `string` | `""` | no | | [tags](#input\_tags) | Extra security group tags | `map` | `{}` | no | | [use\_vpc\_cidr](#input\_use\_vpc\_cidr) | Enable\|Disable use of VPC CIDR block in the ingress\_networks | `bool` | `false` | no | | [vpc\_full\_name](#input\_vpc\_full\_name) | VPC Name | `string` | `""` | no | diff --git a/sas/logs/fmt.20211021.1634841547.log b/sas/logs/fmt.20211021.1634841547.log deleted file mode 100644 index ec1a424..0000000 --- a/sas/logs/fmt.20211021.1634841547.log +++ /dev/null @@ -1,6 +0,0 @@ -# starting v1.4.4 action fmt file logs/fmt.20211021.1634841547.log stamp 20211021.1634841547 time 1634841547 - -ports.tf -settings.tf -# ending v1.4.4 action fmt file logs/fmt.20211021.1634841547.log stamp 20211021.1634841547 start 1634841547 end 1634841547 elapsed 0 - diff --git a/sas/variables.tf b/sas/variables.tf index a2e474b..885b0fc 100644 --- a/sas/variables.tf +++ b/sas/variables.tf @@ -3,17 +3,17 @@ variable "name" { description = "Security Group Name" type = string - # default = "REPLACE" + default = "" } variable "description" { description = "Security Group Description" type = string - # default = "REPLACE" + default = "" } variable "short_description" { description = "Security Group Short Description" type = string - # default = "REPLACE" + default = "" }