-
Notifications
You must be signed in to change notification settings - Fork 19
/
variables.tf
47 lines (38 loc) · 962 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
36
37
38
39
40
41
42
43
44
45
46
47
#
# This file is part of Cisco Modeling Labs
# Copyright (c) 2019-2024, Cisco Systems, Inc.
# All rights reserved.
#
# Common variables
variable "cfg_file" {
type = string
description = "Name of the YAML config file to use"
default = "config.yml"
}
variable "cfg_extra_vars" {
type = string
description = "extra variable definitions, typically empty"
default = null
}
# AWS related vars
variable "aws_access_key" {
type = string
description = "AWS access key / credential for the provisioning user"
default = "notset"
}
variable "aws_secret_key" {
type = string
description = "AWS secret key matching the access key"
default = "notset"
}
# Azure related vars
variable "subscription_id" {
type = string
description = "Azure subscription ID"
default = "notset"
}
variable "tenant_id" {
type = string
description = "Azure tenant ID"
default = "notset"
}