Skip to content

Commit

Permalink
azuread_conditional_access_policy - support linux in the `include…
Browse files Browse the repository at this point in the history
…d_platforms` and `excluded_platforms` properties
  • Loading branch information
manicminer committed Apr 27, 2022
1 parent ba175fe commit e1cfdf7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/resources/conditional_access_policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ The following arguments are supported:

`platforms` block supports the following:

* `excluded_platforms` - (Optional) A list of platforms explicitly excluded from the policy. Possible values are: `all`, `android`, `iOS`, `macOS`, `windows`, `windowsPhone` or `unknownFutureValue`.
* `included_platforms` - (Required) A list of platforms the policy applies to, unless explicitly excluded. Possible values are: `all`, `android`, `iOS`, `macOS`, `windows`, `windowsPhone` or `unknownFutureValue`.
* `excluded_platforms` - (Optional) A list of platforms explicitly excluded from the policy. Possible values are: `all`, `android`, `iOS`, `linux`, `macOS`, `windows`, `windowsPhone` or `unknownFutureValue`.
* `included_platforms` - (Required) A list of platforms the policy applies to, unless explicitly excluded. Possible values are: `all`, `android`, `iOS`, `linux`, `macOS`, `windows`, `windowsPhone` or `unknownFutureValue`.

---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ func conditionalAccessPolicyResource() *schema.Resource {
msgraph.ConditionalAccessDevicePlatformAll,
msgraph.ConditionalAccessDevicePlatformAndroid,
msgraph.ConditionalAccessDevicePlatformIos,
msgraph.ConditionalAccessDevicePlatformLinux,
msgraph.ConditionalAccessDevicePlatformMacOs,
msgraph.ConditionalAccessDevicePlatformUnknownFutureValue,
msgraph.ConditionalAccessDevicePlatformWindows,
Expand All @@ -281,6 +282,7 @@ func conditionalAccessPolicyResource() *schema.Resource {
msgraph.ConditionalAccessDevicePlatformAll,
msgraph.ConditionalAccessDevicePlatformAndroid,
msgraph.ConditionalAccessDevicePlatformIos,
msgraph.ConditionalAccessDevicePlatformLinux,
msgraph.ConditionalAccessDevicePlatformMacOs,
msgraph.ConditionalAccessDevicePlatformUnknownFutureValue,
msgraph.ConditionalAccessDevicePlatformWindows,
Expand Down

0 comments on commit e1cfdf7

Please sign in to comment.