Skip to content

Commit c855574

Browse files
committed
chore: move provider config to separate file
1 parent 68d4572 commit c855574

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

platform-cx-s3-to-sqs/main.tf

-10
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,6 @@
1515
# - sqs:SetQueueAttributes
1616
################################################################################
1717

18-
terraform {
19-
required_version = ">= 1.0.0"
20-
required_providers {
21-
aws = {
22-
source = "hashicorp/aws"
23-
version = ">= 4.0.0"
24-
}
25-
}
26-
}
27-
2818
#--------------------------------------------------------------
2919
# SQS Queue
3020
#--------------------------------------------------------------

platform-cx-s3-to-sqs/providers.tf

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
terraform {
2+
required_version = ">= 1.0.0"
3+
required_providers {
4+
aws = {
5+
source = "hashicorp/aws"
6+
version = ">= 4.0.0"
7+
}
8+
}
9+
}

0 commit comments

Comments
 (0)