Skip to content

Commit a7118c8

Browse files
committedJan 13, 2025
Add a variables.tf and provider.tf files to the examples
1 parent 9d094fb commit a7118c8

File tree

12 files changed

+5
-7
lines changed

12 files changed

+5
-7
lines changed
 

‎1.aws-vpc-and-ec2/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ The work here assumes you have an AWS account and have the AWS CLI installed and
33

44
## Files
55
- The [variables.tf](variables.tf) contains the different variables configurable in this example.
6-
- The [provider.tf](provider.tf) contains the terraform providers needed for this example.
6+
- The [providers.tf](providers.tf) contains the terraform providers needed for this example.
77
- The [main.tf](main.tf) contains the configuration that Terraform will use to create the resources in the cloud.
88

99
1. Initialize the Terraform configuration by running the following command
File renamed without changes.

‎2.kubernetes-nginx/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ The work here assumes you have a Kubernetes cluster with `kubectl` installed and
33

44
## Files
55
- The [variables.tf](variables.tf) contains the different variables configurable in this example.
6-
- The [provider.tf](provider.tf) contains the terraform providers needed for this example.
6+
- The [providers.tf](providers.tf) contains the terraform providers needed for this example.
77
- The [main.tf](main.tf) file has the configuration that Terraform will use to create the Nginx in the Kubernetes cluster.
88

99
This example also has a commented out snippet of using Artifactory as the [Terraform backend](https://jfrog.com/help/r/jfrog-artifactory-documentation/terraform-backend-repository).
File renamed without changes.

‎3.artifactory-install/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Using the [Terraform Helm Provider](https://developer.hashicorp.com/terraform/tu
33

44
## Files
55
- The [variables.tf](variables.tf) contains the different variables configurable in this example.
6-
- The [provider.tf](provider.tf) contains the terraform providers needed for this example.
6+
- The [providers.tf](providers.tf) contains the terraform providers needed for this example.
77
- The [main.tf](main.tf) file has the configuration that Terraform will use to install Artifactory with Helm.
88

99
## Prepare the Artifactory Configurations
File renamed without changes.

‎4.artifactory-config/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ helm upgrade --install artifactory jfrog/artifactory --set postgresql.postgresql
1212

1313
## Files
1414
- The [variables.tf](variables.tf) contains the different variables configurable in this example.
15-
- The [provider.tf](provider.tf) contains the terraform providers needed for this example.
15+
- The [providers.tf](providers.tf) contains the terraform providers needed for this example.
1616
- The [main.tf](main.tf) file has the configuration that Terraform will use to configure the Artifactory server.
1717

1818
Create an [Artifactory access token](https://jfrog.com/help/r/how-to-generate-an-access-token-video/artifactory-creating-access-tokens-in-artifactory) and store it in a [terraform.tfvars](terraform.tfvars) file
File renamed without changes.

‎5.aws-eks/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ The work here assumes you have an AWS account and have the AWS CLI installed and
33

44
## Files
55
- The [variables.tf](variables.tf) contains the different variables configurable in this example.
6-
- The [provider.tf](provider.tf) contains the terraform providers needed for this example.
6+
- The [providers.tf](providers.tf) contains the terraform providers needed for this example.
77
- The [main.tf](main.tf) contains the configuration that Terraform will use to create all the resources needed for running an [EKS](https://aws.amazon.com/eks/) cluster.
88

99
Set and store the needed variables values in a [terraform.tfvars](terraform.tfvars) file
File renamed without changes.

‎6.artifactory-aws-install/main.tf ‎6.artifactory-aws-install/providers.tf

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Setup the providers
2-
32
terraform {
43
## Configure the remote backend (Artifactory)
54
## This will store the state file in Artifactory.

‎7.jfrog-platform-aws-install/main.tf ‎7.jfrog-platform-aws-install/providers.tf

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Setup the providers
2-
32
terraform {
43
## Configure the remote backend (Artifactory)
54
## This will store the state file in Artifactory.

0 commit comments

Comments
 (0)