Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
chiradeep committed May 17, 2018
1 parent 6701582 commit a024c66
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ resource "netscaler_nsacls" "allacls" {
vlan = "2000"
priority = 130
}
}
```

Expand All @@ -208,6 +209,45 @@ You can have only one element of type `netscaler_nsacls`. Encapsulating every `n

See <https://developer-docs.citrix.com/projects/netscaler-nitro-api/en/12.0/configuration/ns/nsacl/nsacl/#nsacl> for possible values for these arguments and for an exhaustive list of arguments.

#### `netscaler_inat`

```
resource "netscaler_inat" "foo" {
name = "ip4ip4"
privateip = "192.168.2.5"
publicip = "172.17.1.2"
}
```
See <https://developer-docs.citrix.com/projects/netscaler-nitro-api/en/12.0/configuration/network/inat/inat/#inat> for possible values for these arguments and for an exhaustive list of arguments.

#### `netscaler_rnat`

```
resource "netscaler_rnat" "allrnat" {
depends_on = ["netscaler_nsacls.allacls"]
rnatsname = "rnatsall"
rnat {
network = "192.168.88.0"
netmask = "255.255.255.0"
natip = "172.17.0.2"
}
rnat {
aclname = "RNAT_ACL_1"
}
}
```

##### Argument Reference
You can have only one element of type `netscaler_rnat`. Encapsulate every `rnat` inside the `netscaler_rnat` resource.

See <https://developer-docs.citrix.com/projects/netscaler-nitro-api/en/12.0/configuration/network/rnat/rnat/#rnat> for possible values for these arguments and for an exhaustive list of arguments.

## Building
### Assumption
* You have (some) experience with Terraform, the different provisioners and providers that come out of the box,
Expand Down

0 comments on commit a024c66

Please sign in to comment.