aboutsummaryrefslogtreecommitdiff
path: root/terraform
diff options
context:
space:
mode:
Diffstat (limited to 'terraform')
-rw-r--r--terraform/aws/mini_environment.tf10
1 files changed, 10 insertions, 0 deletions
diff --git a/terraform/aws/mini_environment.tf b/terraform/aws/mini_environment.tf
index bf3a356..06bc0f3 100644
--- a/terraform/aws/mini_environment.tf
+++ b/terraform/aws/mini_environment.tf
@@ -6,6 +6,14 @@ variable "slug" {
type = "string"
}
+variable "aws_access_key" {
+ type = "string"
+}
+
+variable "aws_secret_key" {
+ type = "string"
+}
+
variable "aws_region" {
type = "string"
}
@@ -19,6 +27,8 @@ variable "start_command" {
}
provider "aws" {
+ access_key = "${var.aws_access_key}"
+ secret_key = "${var.aws_secret_key}"
region = "${var.aws_region}"
}