-
Notifications
You must be signed in to change notification settings - Fork 0
/
consts.tf
49 lines (37 loc) · 805 Bytes
/
consts.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
48
49
data "aws_caller_identity" "current" {}
variable "company_name" {
default = "acme"
}
variable "environment" {
default = "dev"
}
locals {
resource_prefix = {
value = "${data.aws_caller_identity.current.account_id}-${var.company_name}-${var.environment}"
}
}
variable "profile" {
default = "default"
}
variable "region" {
default = "us-west-2"
}
variable ami {
type = "string"
default = "ami-09a5b0b7edf08843d"
}
variable "dbname" {
type = "string"
description = "Name of the Database"
default = "db1"
}
variable "password" {
type = "string"
description = "Database password"
default = "Aa1234321Bb"
}
variable "neptune-dbname" {
type = "string"
description = "Name of the Neptune graph database"
default = "neptunedb1"
}