File: input.tf

package info (click to toggle)
golang-github-hashicorp-go-discover 0.0%2Bgit20190905.34a6505-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 480 kB
  • sloc: makefile: 9
file content (28 lines) | stat: -rw-r--r-- 575 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
provider "aws" {
  version = "~> 1.15"
}

variable "prefix" {
  default     = "go-discover"
  description = "prefix of the VPC ?"
}

variable "private_key_path" {
  default     = "tf_rsa"
  description = "path to the private key used for provisioning"
}

variable "public_key_path" {
  default     = "tf_rsa.pub"
  description = "path to the public key used for provisioning"
}

variable "address_space" {
  default     = "10.0.0.0/16"
  description = "address space of the VPC"
}

variable "subnet_cidr" {
  default     = "10.0.1.0/24"
  description = "subnet of the VPC"
}