39 lines
801 B
HCL
39 lines
801 B
HCL
variable "hub" {
|
|
description = "Hub to deploy the stack"
|
|
type = string
|
|
}
|
|
|
|
variable "region" {
|
|
description = "Region to deploy the stack"
|
|
type = string
|
|
}
|
|
|
|
variable "profile" {
|
|
description = "Name of the AWS profile in ~/.aws/config"
|
|
type = string
|
|
}
|
|
|
|
variable "environment" {
|
|
description = "Deployment environment/stage (e.g. test,dev, prod or int)"
|
|
type = string
|
|
}
|
|
|
|
variable "project" {
|
|
description = "Project whom the stack belongs to"
|
|
type = string
|
|
}
|
|
|
|
variable "main_module" {
|
|
description = "Functional resource to deploy"
|
|
type = string
|
|
}
|
|
|
|
variable "role_arn" {
|
|
description = "Role arn to assume"
|
|
type = string
|
|
}
|
|
|
|
variable "tags" {
|
|
description = "A mapping of tags to assign to the resource"
|
|
type = map(string)
|
|
} |