26 lines
507 B
Terraform
26 lines
507 B
Terraform
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
terraform {
|
|
required_version = ">= 1.5.0"
|
|
|
|
required_providers {
|
|
aws = {
|
|
source = "hashicorp/aws"
|
|
version = ">= 6.35.1"
|
|
}
|
|
random = {
|
|
source = "hashicorp/random"
|
|
version = ">= 3.5.0"
|
|
}
|
|
archive = {
|
|
source = "hashicorp/archive"
|
|
version = ">= 2.4.0"
|
|
}
|
|
null = {
|
|
source = "hashicorp/null"
|
|
version = ">= 3.2.0"
|
|
}
|
|
}
|
|
}
|