network-main.tf 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing,
  12. # software distributed under the License is distributed on an
  13. # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. # KIND, either express or implied. See the License for the
  15. # specific language governing permissions and limitations
  16. # under the License.
  17. resource "aws_vpc" "_" {
  18. cidr_block = var.vpc_cidr
  19. enable_dns_hostnames = true
  20. tags = merge(var.tags, {
  21. "Name" = "${var.name_prefix}-vpc"
  22. })
  23. }
  24. resource "aws_internet_gateway" "_" {
  25. vpc_id = aws_vpc._.id
  26. tags = merge(var.tags, {
  27. "Name" = "${var.name_prefix}-ig"
  28. })
  29. }
  30. resource "aws_subnet" "public" {
  31. count = var.subnet_count.public
  32. vpc_id = aws_vpc._.id
  33. cidr_block = var.public_subnet_cidr_blocks[count.index]
  34. availability_zone = data.aws_availability_zones.available.names[count.index]
  35. tags = merge(var.tags, {
  36. "Name" = "${var.name_prefix}-public-subnet-${count.index}"
  37. })
  38. }
  39. resource "aws_route_table" "public" {
  40. vpc_id = aws_vpc._.id
  41. route {
  42. cidr_block = "0.0.0.0/0"
  43. gateway_id = aws_internet_gateway._.id
  44. }
  45. tags = merge(var.tags, {
  46. "Name" = "${var.name_prefix}-public-rt"
  47. })
  48. }
  49. resource "aws_route_table_association" "public" {
  50. count = var.subnet_count.public
  51. subnet_id = aws_subnet.public[count.index].id
  52. route_table_id = aws_route_table.public.id
  53. }
  54. resource "aws_subnet" "private" {
  55. count = var.subnet_count.private
  56. vpc_id = aws_vpc._.id
  57. cidr_block = var.private_subnet_cidr_blocks[count.index]
  58. availability_zone = data.aws_availability_zones.available.names[count.index]
  59. tags = merge(var.tags, {
  60. "Name" = "${var.name_prefix}-private-subnet-${count.index}"
  61. })
  62. }
  63. resource "aws_route_table" "private" {
  64. vpc_id = aws_vpc._.id
  65. route {
  66. cidr_block = "0.0.0.0/0"
  67. gateway_id = aws_internet_gateway._.id
  68. }
  69. tags = merge(var.tags, {
  70. "Name" = "${var.name_prefix}-private-rt"
  71. })
  72. }
  73. resource "aws_route_table_association" "private" {
  74. count = var.subnet_count.private
  75. subnet_id = aws_subnet.private[count.index].id
  76. route_table_id = aws_route_table.private.id
  77. }