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 d3154ab commit 8d35e4c
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Terraform Modules for CloudGuard Network Security (CGNS) - AWS


## Introduction
This repository provides a structured set of Terraform modules for deploying Check Point CloudGuard Network Security in Amazon Web Services (AWS). These modules automate the creation of Virtual Private Clouds (VPCs), Security Gateways, High-Availability architectures, and more, enabling secure and scalable cloud deployments.

Expand All @@ -25,7 +24,7 @@ Add the required module in your Terraform configuration file (`main.tf`) to depl

```hcl
provider "aws" {
region = "us-west-2"
region = {your-region}
}
module "example_module" {
Expand All @@ -52,7 +51,6 @@ 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="us-west-2"
aws configure
Expand All @@ -61,15 +59,13 @@ 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="us-west-2"
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="us-west-2"
aws configure
```
Expand Down

0 comments on commit 8d35e4c

Please sign in to comment.