Skip to content

Commit

Permalink
Update device admin condition example values
Browse files Browse the repository at this point in the history
  • Loading branch information
danischm committed Dec 1, 2023
1 parent 98c8bdd commit cd238b2
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 33 deletions.
6 changes: 3 additions & 3 deletions docs/resources/device_admin_condition.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ resource "ise_device_admin_condition" "example" {
description = "My description"
condition_type = "LibraryConditionAttributes"
is_negate = false
attribute_name = "EapAuthentication"
attribute_value = "EAP-TLS"
dictionary_name = "Network Access"
attribute_name = "User"
attribute_value = "User1"
dictionary_name = "TACACS"
operator = "equals"
}
```
Expand Down
6 changes: 3 additions & 3 deletions examples/resources/ise_device_admin_condition/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ resource "ise_device_admin_condition" "example" {
description = "My description"
condition_type = "LibraryConditionAttributes"
is_negate = false
attribute_name = "EapAuthentication"
attribute_value = "EAP-TLS"
dictionary_name = "Network Access"
attribute_name = "User"
attribute_value = "User1"
dictionary_name = "TACACS"
operator = "equals"
}
24 changes: 12 additions & 12 deletions gen/definitions/device_admin_condition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@ attributes:
- model_name: attributeName
type: String
description: Dictionary attribute name
example: EapAuthentication
minimum_test_value: '"EapAuthentication"'
example: User
minimum_test_value: '"User"'
- model_name: attributeValue
type: String
description: Attribute value for condition. Value type is specified in dictionary object.
example: EAP-TLS
minimum_test_value: '"EAP-TLS"'
example: User1
minimum_test_value: '"User1"'
- model_name: dictionaryName
type: String
description: Dictionary name
example: Network Access
minimum_test_value: '"Network Access"'
example: TACACS
minimum_test_value: '"TACACS"'
- model_name: dictionaryValue
type: String
description: Dictionary value
Expand Down Expand Up @@ -113,15 +113,15 @@ attributes:
- model_name: attributeName
type: String
description: Dictionary attribute name
example: EapAuthentication
example: User
- model_name: attributeValue
type: String
description: Attribute value for condition. Value type is specified in dictionary object.
example: EAP-TLS
example: User1
- model_name: dictionaryName
type: String
description: Dictionary name
example: Network Access
example: TACACS
- model_name: dictionaryValue
type: String
description: Dictionary value
Expand Down Expand Up @@ -190,15 +190,15 @@ attributes:
- model_name: attributeName
type: String
description: Dictionary attribute name
example: EapAuthentication
example: User
- model_name: attributeValue
type: String
description: Attribute value for condition. Value type is specified in dictionary object.
example: EAP-TLS
example: User1
- model_name: dictionaryName
type: String
description: Dictionary name
example: Network Access
example: TACACS
- model_name: dictionaryValue
type: String
description: Dictionary value
Expand Down
12 changes: 6 additions & 6 deletions internal/provider/data_source_ise_device_admin_condition_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions internal/provider/resource_ise_device_admin_condition_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cd238b2

Please sign in to comment.