15 lines
342 B
Terraform
15 lines
342 B
Terraform
# In pre-build phase, this terraform script is ran by the TempRackspaceUser with local state file.
|
|
# Later on it was adjusted to use assume role
|
|
# Ultimately, the state file needs to be moved to s3
|
|
|
|
provider "aws" {
|
|
region = "ap-east-1"
|
|
}
|
|
|
|
terraform {
|
|
required_version = "> 0.12, < 0.13"
|
|
required_providers {
|
|
aws = "~> 3.6.0"
|
|
}
|
|
}
|