Skip to content

Commit

Permalink
including tf providers references
Browse files Browse the repository at this point in the history
  • Loading branch information
junior committed Jul 27, 2021
1 parent 83fa4b0 commit bd392d7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deploy/basic/terraform/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,22 @@ terraform {
oci = {
source = "hashicorp/oci"
version = ">= 4.36.0"
# https://registry.terraform.io/providers/hashicorp/oci/4.36.0
}
local = {
source = "hashicorp/local"
version = "2.1.0" # Latest version as June 2021 = 2.1.0.
# https://registry.terraform.io/providers/hashicorp/local/2.1.0
}
random = {
source = "hashicorp/random"
version = "3.1.0" # Latest version as June 2021 = 3.1.0.
# https://registry.terraform.io/providers/hashicorp/random/3.1.0
}
tls = {
source = "hashicorp/tls"
version = "3.1.0" # Latest version as June 2021 = 3.1.0.
# https://registry.terraform.io/providers/hashicorp/tls/3.1.0
}
}
}
Expand Down
6 changes: 6 additions & 0 deletions deploy/complete/terraform/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,32 @@ terraform {
oci = {
source = "hashicorp/oci"
version = ">= 4.36.0"
# https://registry.terraform.io/providers/hashicorp/oci/4.36.0
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "2.2.0" # Latest version as June 2021 = 2.3.2. Using 2.2.0 (May, 2021) for ORM compatibility
# https://registry.terraform.io/providers/hashicorp/kubernetes/2.2.0
}
helm = {
source = "hashicorp/helm"
version = "2.1.0" # Latest version as June 2021 = 2.2.0. Using 2.1.0 (March, 2021) for ORM compatibility
# https://registry.terraform.io/providers/hashicorp/helm/2.1.0
}
tls = {
source = "hashicorp/tls"
version = "3.1.0" # Latest version as June 2021 = 3.1.0.
# https://registry.terraform.io/providers/hashicorp/tls/3.1.0
}
local = {
source = "hashicorp/local"
version = "2.1.0" # Latest version as June 2021 = 2.1.0.
# https://registry.terraform.io/providers/hashicorp/local/2.1.0
}
random = {
source = "hashicorp/random"
version = "3.1.0" # Latest version as June 2021 = 3.1.0.
# https://registry.terraform.io/providers/hashicorp/random/3.1.0
}
}
}
Expand Down

0 comments on commit bd392d7

Please sign in to comment.