-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathvariables.tf
35 lines (30 loc) · 882 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
default = "us-south"
}
variable "prefix" {
description = "The prefix that you would like to append to your resources"
type = string
default = "basic-slz-vpc"
}
variable "name" {
description = "The name of the vpc"
type = string
default = "vpc"
}
variable "resource_group" {
type = string
description = "An existing resource group name to use for this example, if unset a new resource group will be created"
default = null
}
variable "resource_tags" {
description = "List of Tags for the resource created"
type = list(string)
default = null
}