-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathvariables.tf
35 lines (29 loc) · 877 Bytes
/
variables.tf
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
29
30
31
32
33
34
35
variable "ibmcloud_api_key" {
description = "APIkey that's associated with the account to provision resources to"
type = string
sensitive = true
}
variable "region" {
description = "The region to which to deploy the VPC"
type = string
}
variable "vpc_id" {
description = "The ID of the VPC where the VSI will be created."
type = string
}
variable "public_gateway_name" {
description = "The name of the public gateway"
type = string
}
variable "subnet_ids" {
description = "The ID of the VPC where the VSI will be created."
type = list(string)
}
variable "existing_resource_group_name" {
type = string
description = "An existing resource group name to use for this example."
}
variable "name" {
description = "The string is used as a prefix for the naming of VPC resources."
type = string
}