Skip to content

Commit 2a9cfce

Browse files
authored
Create provider.tf
1 parent 3d9758c commit 2a9cfce

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

provider.tf

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
terraform {
2+
required_providers {
3+
mongodbatlas = {
4+
source = "mongodb/mongodbatlas"
5+
version = ">=1.5.0"
6+
}
7+
}
8+
}
9+
10+
provider "mongodbatlas" {
11+
mongodbatlas_public_key = var.mongodbatlas_public_key
12+
mongodbatlas_private_key = var.mongodbatlas_private_key
13+
}
14+

0 commit comments

Comments
 (0)