Skip to content

Commit 5dcbc2e

Browse files
Fix Typo Remove Unverified SSL (#6)
Co-authored-by: eviatars <[email protected]>
1 parent 04827ff commit 5dcbc2e

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,21 +61,18 @@ Set the required environment variables.
6161
export VSPHERE_USER="your_vsphere_username"
6262
export VSPHERE_PASSWORD="your_vsphere_password"
6363
export VSPHERE_SERVER="your_vsphere_server"
64-
export VSPHERE_ALLOW_UNVERIFIED_SSL="false" # Set to "true" if vCenter is using self-signed certificate
6564
```
6665
### PowerShell (Windows)
6766
```PowerShell
6867
$env:VSPHERE_USER="your_vsphere_username"
6968
$env:VSPHERE_PASSWORD="your_vsphere_password"
7069
$env:VSPHERE_SERVER"your_vsphere_server"
71-
$env:VSPHERE_ALLOW_UNVERIFIED_SSL = "false" # Set to "true" if vCenter is using self-signed certificate
7270
```
7371
### Command Prompt (Windows)
7472
```cmd
7573
set VSPHERE_SERVER=your_vsphere_server
7674
set VSPHERE_USER=your_vsphere_username
7775
set VSPHERE_PASSWORD=your_vsphere_password
78-
set VSPHERE_ALLOW_UNVERIFIED_SSL=false # Set to `true` if vCenter is using self-signed certificate
7976
```
8077
---
8178

modules/management/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module "management" {
2727
datastore = "datastore-1"
2828
esxi_host = "172.23.24.20"
2929
eth0_network_name = "external-network"
30-
local_ovf_path = "/home/file/jaguar_opt_main-777-991001696"
30+
local_ovf_path = "/home/file/jaguar_opt_main-777-991001696.ova"
3131
hostname = "Management-Server-example"
3232
3333
// Management configuration

modules/single-gateway/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on [main readme.md file](https://registry.terraform.io/modules/CheckPointSW/clou
2020
provider "vsphere" {}
2121
2222
module "single_gateway" {
23-
source = "CheckPointSW/cloudguard-network-security/vmware///modules/single-gateway"
23+
source = "CheckPointSW/cloudguard-network-security/vmware//modules/single-gateway"
2424
2525
// VMware vCenter configuration
2626
datacenter_name = "datacenter"

0 commit comments

Comments
 (0)