Skip to content

Commit 5b252ca

Browse files
author
rahul-infra
committed
Moved providers into seperate file.
1 parent e1e0782 commit 5b252ca

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

modules/acm/main.tf

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,6 @@ locals {
77
}
88
}
99

10-
terraform {
11-
required_providers {
12-
aws = {
13-
source = "hashicorp/aws"
14-
version = "~> 6.0"
15-
configuration_aliases = [
16-
aws,
17-
aws.cross_account_provider
18-
]
19-
}
20-
}
21-
}
22-
2310
################################################################################
2411
# ACM Certificate
2512
################################################################################

modules/acm/providers.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
terraform {
2+
required_providers {
3+
aws = {
4+
source = "hashicorp/aws"
5+
version = "~> 6.0"
6+
configuration_aliases = [
7+
aws,
8+
aws.cross_account_provider
9+
]
10+
}
11+
}
12+
}

0 commit comments

Comments
 (0)