Skip to content

Commit

Permalink
updating policy document
Browse files Browse the repository at this point in the history
  • Loading branch information
RavinderReddyF5 committed Oct 15, 2020
1 parent 1b0d90a commit 5412541
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 17 deletions.
14 changes: 5 additions & 9 deletions docs/resources/bigip_ltm_policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,16 @@ For resources should be named with their "full path". The full path is the combi


```hcl
resource "bigip_ltm_policy" "test-policy" {
name = "my_policy"
strategy = "first-match"
requires = ["http"]
published_copy = "Drafts/my_policy"
controls = ["forwarding"]
name = "test-policy"
strategy = "/Common/first-match"
requires = ["http"]
controls = ["forwarding"]
rule {
name = "rule6"
action {
tm_name = "20"
forward = true
pool = "/Common/mypool"
pool = bigip_ltm_pool.pool.name
}
}
depends_on = [bigip_ltm_pool.mypool]
Expand Down
13 changes: 5 additions & 8 deletions website/docs/r/bigip_ltm_policy.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,15 @@ For resources should be named with their "full path". The full path is the combi
```hcl
resource "bigip_ltm_policy" "test-policy" {
name = "my_policy"
strategy = "first-match"
requires = ["http"]
published_copy = "Drafts/my_policy"
controls = ["forwarding"]
name = "test-policy"
strategy = "/Common/first-match"
requires = ["http"]
controls = ["forwarding"]
rule {
name = "rule6"
action {
tm_name = "20"
forward = true
pool = "/Common/mypool"
pool = bigip_ltm_pool.pool.name
}
}
depends_on = [bigip_ltm_pool.mypool]
Expand Down

0 comments on commit 5412541

Please sign in to comment.