-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinterface.tf
More file actions
32 lines (26 loc) · 816 Bytes
/
interface.tf
File metadata and controls
32 lines (26 loc) · 816 Bytes
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
variable "logical_name" {
type = "string"
description = "Specify the 'logical' name that distinguishes resources created by this module by its use case or function, e.g. media or orders"
}
variable "org" {
type = "string"
description = "Short id of the organization that owns the bucket"
}
variable "owner" {
type = "string"
description = "Name of the team or department that responsible for the bucket"
}
variable "env" {
type = "string"
description = "Name of the environment the bucket supports"
}
variable "app" {
type = "string"
description = "Name of the application the bucket supports"
}
output "instance_id" {
value = "${random_id.placeholder.b64}"
}
output "instance_arn" {
value = "${data.template_file.placholder_resource_arn.rendered}"
}