Skip to content

Commit be0505e

Browse files
committed
Fix tests for latest
1 parent 5e78d7c commit be0505e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tests/0.12/TEST-latest.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ No provider.
4747
| create\_db\_parameter\_group | Whether to create a database parameter group | `bool` | `true` | no |
4848
| create\_db\_subnet\_group | Whether to create a database subnet group | `bool` | `true` | no |
4949
| create\_monitoring\_role | Create IAM role with a defined name that permits RDS to send enhanced monitoring metrics to CloudWatch Logs. | `bool` | `false` | no |
50-
| database\_outbound\_acl\_rules | Database subnets outbound network ACL rules | `list(map(string))` | <code><pre>[<br> {<br> "cidr_block": "0.0.0.0/0",<br> "from_port": 0,<br> "protocol": "-1",<br> "rule_action": "allow",<br> "rule_number": 100,<br> "to_port": 0<br> }<br>]<br></pre></code> | no |
50+
| database\_outbound\_acl\_rules | Database subnets outbound network ACL rules | `list(map(string))` | <pre>[<br> {<br> "cidr_block": "0.0.0.0/0",<br> "from_port": 0,<br> "protocol": "-1",<br> "rule_action": "allow",<br> "rule_number": 100,<br> "to_port": 0<br> }<br>]<br></pre> | no |
5151
| db\_subnet\_group\_name | Name of DB subnet group. DB instance will be created in the VPC associated with the DB subnet group. If unspecified, will be created in the default VPC | `string` | `""` | no |
5252
| deletion\_protection | The database can't be deleted when this value is set to true. | `bool` | `false` | no |
5353
| description | Description of security group | `string` | `"Security Group managed by Terraform"` | no |
54-
| egress\_cidr\_blocks | List of IPv4 CIDR ranges to use on all egress rules | `list(string)` | <code><pre>[<br> "0.0.0.0/0"<br>]<br></pre></code> | no |
55-
| egress\_ipv6\_cidr\_blocks | List of IPv6 CIDR ranges to use on all egress rules | `list(string)` | <code><pre>[<br> "::/0"<br>]<br></pre></code> | no |
54+
| egress\_cidr\_blocks | List of IPv4 CIDR ranges to use on all egress rules | `list(string)` | <pre>[<br> "0.0.0.0/0"<br>]<br></pre> | no |
55+
| egress\_ipv6\_cidr\_blocks | List of IPv6 CIDR ranges to use on all egress rules | `list(string)` | <pre>[<br> "::/0"<br>]<br></pre> | no |
5656
| egress\_prefix\_list\_ids | List of prefix list IDs (for allowing access to VPC endpoints) to use on all egress rules | `list(string)` | `[]` | no |
5757
| egress\_rules | List of egress rules to create by name | `list(string)` | `[]` | no |
5858
| egress\_with\_cidr\_blocks | List of egress rules to create where 'cidr\_blocks' is used | `list(map(string))` | `[]` | no |
@@ -78,7 +78,7 @@ No provider.
7878
| monitoring\_role\_arn | The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to CloudWatch Logs. Must be specified if monitoring\_interval is non-zero. | `string` | `""` | no |
7979
| monitoring\_role\_name | Name of the IAM role which will be created when create\_monitoring\_role is enabled. | `string` | `"rds-monitoring-role"` | no |
8080
| multi\_az | Specifies if the RDS instance is multi-AZ | `bool` | `false` | no |
81-
| network | The network | <code><pre>object({<br> vpc = object({<br> id = string<br> cidr_block = string<br> })<br> subnets = set(object({<br> id = string<br> cidr_block = string<br> }))<br> })<br></pre></code> | <code><pre>{<br> "subnets": [<br> {<br> "cidr_block": "10.0.0.0/16",<br> "id": "vpc-123456"<br> }<br> ],<br> "vpc": {<br> "cidr_block": "10.0.0.0/16",<br> "id": "vpc-123456"<br> }<br>}<br></pre></code> | no |
81+
| network | The network | <pre>object({<br> vpc = object({<br> id = string<br> cidr_block = string<br> })<br> subnets = set(object({<br> id = string<br> cidr_block = string<br> }))<br> })<br></pre> | <pre>{<br> "subnets": [<br> {<br> "cidr_block": "10.0.0.0/16",<br> "id": "vpc-123456"<br> }<br> ],<br> "vpc": {<br> "cidr_block": "10.0.0.0/16",<br> "id": "vpc-123456"<br> }<br>}<br></pre> | no |
8282
| number\_of\_computed\_egress\_rules | Number of computed egress rules to create by name | `number` | `0` | no |
8383
| number\_of\_computed\_egress\_with\_cidr\_blocks | Number of computed egress rules to create where 'cidr\_blocks' is used | `number` | `0` | no |
8484
| number\_of\_computed\_egress\_with\_ipv6\_cidr\_blocks | Number of computed egress rules to create where 'ipv6\_cidr\_blocks' is used | `number` | `0` | no |
@@ -106,7 +106,7 @@ No provider.
106106
| subnetwork | This is a test | `string` | `"This\nis\na\ntest\n"` | no |
107107
| tags | A mapping of tags to assign to all resources | `map(string)` | `{}` | no |
108108
| test\_var | This is a test variable | `string` | `""` | no |
109-
| timeouts | (Optional) Updated Terraform resource management timeouts. Applies to `aws_db_instance` in particular to permit resource management times | `map(string)` | <code><pre>{<br> "create": "40m",<br> "delete": "40m",<br> "update": "80m"<br>}<br></pre></code> | no |
109+
| timeouts | (Optional) Updated Terraform resource management timeouts. Applies to `aws_db_instance` in particular to permit resource management times | `map(string)` | <pre>{<br> "create": "40m",<br> "delete": "40m",<br> "update": "80m"<br>}<br></pre> | no |
110110
| timezone | (Optional) Time zone of the DB instance. timezone is currently only supported by Microsoft SQL Server. The timezone can only be set on creation. See MSSQL User Guide for more information. | `string` | `""` | no |
111111
| use\_name\_prefix | Whether to use name\_prefix or fixed name. Should be true to able to update security group name after initial creation | `bool` | `true` | no |
112112
| use\_parameter\_group\_name\_prefix | Whether to use the parameter group name prefix or not | `bool` | `true` | no |

tests/default/TEST-latest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ No provider.
6262
| storage\_type | One of 'standard' (magnetic), 'gp2' (general purpose SSD), or 'io1' (provisioned IOPS SSD). The default is 'io1' if iops is specified, 'standard' if not. Note that this behaviour is different from the AWS web console, where the default is 'gp2'. | `string` | `"gp2"` | no |
6363
| subnet\_ids | A list of VPC subnet IDs | `list` | `[]` | no |
6464
| tags | A mapping of tags to assign to all resources | `map` | `{}` | no |
65-
| timeouts | (Optional) Updated Terraform resource management timeouts. Applies to `aws_db_instance` in particular to permit resource management times | `map` | <code><pre>{<br> "create": "40m",<br> "delete": "40m",<br> "update": "80m"<br>}<br></pre></code> | no |
65+
| timeouts | (Optional) Updated Terraform resource management timeouts. Applies to `aws_db_instance` in particular to permit resource management times | `map` | <pre>{<br> "create": "40m",<br> "delete": "40m",<br> "update": "80m"<br>}<br></pre> | no |
6666
| timezone | (Optional) Time zone of the DB instance. timezone is currently only supported by Microsoft SQL Server. The timezone can only be set on creation. See MSSQL User Guide for more information. | `string` | `""` | no |
6767
| use\_option\_group\_name\_prefix | Whether to use the option group name prefix or not | `bool` | `true` | no |
6868
| use\_parameter\_group\_name\_prefix | Whether to use the parameter group name prefix or not | `bool` | `true` | no |

0 commit comments

Comments
 (0)