Skip to content

Commit

Permalink
readme main
Browse files Browse the repository at this point in the history
  • Loading branch information
chkp-guybarak committed Dec 23, 2024
1 parent 8d35e4c commit 49d3779
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This repository provides a structured set of Terraform modules for deploying Che
**Submodules:**


Internal Submodules -
**Internal Submodules:**

___

Expand All @@ -23,9 +23,7 @@ ___
Add the required module in your Terraform configuration file (`main.tf`) to deploy resources. For example:

```hcl
provider "aws" {
region = {your-region}
}
provider "aws" { }
module "example_module" {
source = "CheckPointSW/cloudguard-network-security/aws//modules/{module_name}"
Expand All @@ -51,6 +49,7 @@ Set up your AWS credentials and configure the default region by setting environm
```hcl
export AWS_ACCESS_KEY_ID="{your-access-key-id}"
export AWS_SECRET_ACCESS_KEY="{your-secret-access-key}"
export AWS_DEFAULT_REGION={your-region}
aws configure
Expand All @@ -59,13 +58,15 @@ aws configure
```hcl
$env:AWS_ACCESS_KEY_ID="{your-access-key-id}"
$env:AWS_SECRET_ACCESS_KEY="{your-secret-access-key}"
$env:AWS_DEFAULT_REGION={your-region}
aws configure
```
### Command Prompt (Windows)
```hcl
set AWS_ACCESS_KEY_ID="{your-access-key-id}"
set AWS_SECRET_ACCESS_KEY="{your-secret-access-key}"
set AWS_DEFAULT_REGION={your-region}
aws configure
```
Expand Down

0 comments on commit 49d3779

Please sign in to comment.