network-variables.tf 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. # VPC Variables
  18. variable "vpc_cidr" {
  19. type = string
  20. description = "CIDR for the VPC"
  21. default = "10.0.0.0/16"
  22. }
  23. variable "subnet_count" {
  24. description = "Number of subnets"
  25. type = map(number)
  26. default = {
  27. public = 1,
  28. private = 2
  29. }
  30. }
  31. variable "public_subnet_cidr_blocks" {
  32. type = list(string)
  33. description = "CIDR blocks for the public subnets"
  34. default = [
  35. "10.0.1.0/24",
  36. "10.0.2.0/24",
  37. "10.0.3.0/24",
  38. "10.0.4.0/24"
  39. ]
  40. }
  41. variable "private_subnet_cidr_blocks" {
  42. description = "Available CIDR blocks for private subnets"
  43. type = list(string)
  44. default = [
  45. "10.0.101.0/24",
  46. "10.0.102.0/24",
  47. "10.0.103.0/24",
  48. "10.0.104.0/24",
  49. ]
  50. }