Skip to content

Commit

Permalink
Merge pull request #396 from GaddamSaketha/master
Browse files Browse the repository at this point in the history
adding doc changes for website
  • Loading branch information
RavinderReddyF5 authored Nov 26, 2020
2 parents 9c31f15 + 6b1d1eb commit 2e017e6
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 5 deletions.
18 changes: 18 additions & 0 deletions website/docs/r/bigip_common_license_manage_bigiq.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,24 @@ resource "bigip_common_license_manage_bigiq" "test_example" {
mac_address = "FA:16:3E:1B:6D:32"
hypervisor = "azure"
}
# MANAGED Purchased Pool
resource "bigip_common_license_manage_bigiq" "test_example" {
bigiq_address = var.bigiq
bigiq_user = var.bigiq_un
bigiq_password = var.bigiq_pw
license_poolname = "purchased_pool_name"
assignment_type = "MANAGED"
}
# UNMANAGED Purchased Pool
resource "bigip_common_license_manage_bigiq" "test_example" {
bigiq_address = var.bigiq
bigiq_user = var.bigiq_un
bigiq_password = var.bigiq_pw
license_poolname = "purchased_pool_name"
assignment_type = "UNMANAGED"
}
```

## Argument Reference
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ resource "bigip_ltm_persistence_profile_cookie" "test_ppcookie" {

`match_across_virtuals` (Optional) (enabled or disabled) match across virtual servers with given persistence record

`method` (Optional) Specifies the type of cookie processing that the system uses. The default value is insert

`mirror` (Optional) (enabled or disabled) mirror persistence record

`timeout` (Optional) (enabled or disabled) Timeout for persistence of the session in seconds
Expand Down
1 change: 0 additions & 1 deletion website/docs/r/bigip_ltm_profile_client_ssl.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ description: |-
resource "bigip_ltm_profile_client_ssl" "test-ClientSsl" {
name = "/Common/test-ClientSsl"
partition = "Common"
defaults_from = "/Common/clientssl"
authenticate = "always"
ciphers = "DEFAULT"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/bigip_ltm_profile_fasthttp.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ For resources should be named with their "full path". The full path is the combi

```hcl
resource "bigip_ltm_profile_fasthttp" "sjfasthttpprofile" {
name = "sjfasthttpprofile"
name = "/Common/sjfasthttpprofile"
defaults_from = "/Common/fasthttp"
idle_timeout = 300
connpoolidle_timeoutoverride = 0
Expand Down
1 change: 0 additions & 1 deletion website/docs/r/bigip_ltm_profile_fastl4.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ For resources should be named with their "full path". The full path is the combi
```hcl
resource "bigip_ltm_profile_fastl4" "profile_fastl4" {
name = "/Common/sjfastl4profile"
partition = "Common"
defaults_from = "/Common/fastL4"
client_timeout = 40
explicitflow_migration = "enabled"
Expand Down
1 change: 0 additions & 1 deletion website/docs/r/bigip_ltm_profile_server_ssl.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ description: |-
resource "bigip_ltm_profile_server_ssl" "test-ServerSsl" {
name = "/Common/test-ServerSsl"
partition = "Common"
defaults_from = "/Common/serverssl"
authenticate = "always"
ciphers = "DEFAULT"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/bigip_ltm_profile_tcp.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ For resources should be named with their "full path". The full path is the combi

```hcl
resource "bigip_ltm_profile_tcp" "sanjose-tcp-lan-profile" {
name = "sanjose-tcp-lan-profile"
name = "/Common/sanjose-tcp-lan-profile"
idle_timeout = 200
close_wait_timeout = 5
finwait_2timeout = 5
Expand Down

0 comments on commit 2e017e6

Please sign in to comment.