Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
TF - 0.13 upgrade (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
Puneeth-n authored Feb 27, 2021
1 parent a9ed615 commit 12770ff
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 26 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM puneethn/terraform-test-workhorse:0.12.25
FROM puneethn/terraform-test-workhorse:0.13.5

WORKDIR /go/src/github.com/comtravo/terraform-aws-vpc
COPY . .
46 changes: 23 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ MIT Licensed. See [LICENSE](LICENSE) for full details.

| Name | Version |
|------|---------|
| terraform | >= 0.12 |
| terraform | >= 0.13 |
| aws | ~> 3.0 |

## Providers
Expand All @@ -35,35 +35,35 @@ MIT Licensed. See [LICENSE](LICENSE) for full details.
|------|-------------|------|---------|:--------:|
| azs | Availability zones | `list(string)` | n/a | yes |
| cidr | CIDR | `string` | n/a | yes |
| depends_id | For inter module dependencies | `string` | `""` | no |
| enable | Enable or Disable the module | `bool` | n/a | yes |
| enable_dns_hostnames | Enable DNS hostnames | `bool` | `true` | no |
| enable_dns_support | Enable DNS support | `bool` | `true` | no |
| environment | Environment | `string` | n/a | yes |
| nat_az_number | Subnet number to deploy NAT gateway in | `number` | `0` | no |
| private_subnet_tags | n/a | `map(string)` | `{}` | no |
| public_subnet_tags | n/a | `map(string)` | `{}` | no |
| replication_factor | Number of subnets, routing tables, NAT gateways | `number` | n/a | yes |
| replication\_factor | Number of subnets, routing tables, NAT gateways | `number` | n/a | yes |
| vpc\_name | VPC name | `string` | n/a | yes |
| depends\_id | For inter module dependencies | `string` | `""` | no |
| enable\_dns\_hostnames | Enable DNS hostnames | `bool` | `true` | no |
| enable\_dns\_support | Enable DNS support | `bool` | `true` | no |
| nat\_az\_number | Subnet number to deploy NAT gateway in | `number` | `0` | no |
| private\_subnet\_tags | n/a | `map(string)` | `{}` | no |
| public\_subnet\_tags | n/a | `map(string)` | `{}` | no |
| subdomain | Subdomain name | `string` | `""` | no |
| tags | n/a | `map(string)` | `{}` | no |
| vpc_name | VPC name | `string` | n/a | yes |

## Outputs

| Name | Description |
|------|-------------|
| depends_id | Dependency ID |
| net0ps_zone_id | Private hosted zone ID |
| private_subdomain | Private subdomain name |
| private_subnets | Private subnets |
| private_zone_id | Private hosted zone ID |
| public_subdomain | Public subdomain name |
| public_subdomain_name_servers | Public subdomain name servers |
| public_subdomain_zone_id | Subdomain hosted zone ID |
| public_subnets | Public subnets |
| subdomain_zone_id | Subdomain hosted zone ID |
| vpc_default_sg | Default VPC security group |
| vpc_id | VPC ID |
| vpc_private_routing_table_id | Private routing table ID |
| vpc_public_routing_table_id | Public routing table ID |
| depends\_id | Dependency ID |
| net0ps\_zone\_id | Private hosted zone ID |
| private\_subdomain | Private subdomain name |
| private\_subnets | Private subnets |
| private\_zone\_id | Private hosted zone ID |
| public\_subdomain | Public subdomain name |
| public\_subdomain\_name\_servers | Public subdomain name servers |
| public\_subdomain\_zone\_id | Subdomain hosted zone ID |
| public\_subnets | Public subnets |
| subdomain\_zone\_id | Subdomain hosted zone ID |
| vpc\_default\_sg | Default VPC security group |
| vpc\_id | VPC ID |
| vpc\_private\_routing\_table\_id | Private routing table ID |
| vpc\_public\_routing\_table\_id | Public routing table ID |

10 changes: 8 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@

terraform {
required_version = ">= 0.12"
required_version = ">= 0.13"
required_providers {
aws = "~> 3.0"
aws = {
source = "hashicorp/aws"
version = "~> 3.0"
}
null = {
source = "hashicorp/null"
}
}
}

0 comments on commit 12770ff

Please sign in to comment.