Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

azuread_service_principal: add tags property #31

Merged
merged 2 commits into from
Jan 25, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions website/docs/r/service_principal.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ resource "azuread_application" "test" {

resource "azuread_service_principal" "test" {
application_id = "${azuread_application.test.application_id}"

tags = ["example", "tags", "here"]
}
```

Expand All @@ -36,6 +38,8 @@ The following arguments are supported:

* `application_id` - (Required) The ID of the Azure AD Application for which to create a Service Principal.

* `tags` - (Optional) A list of tags to apply to the Service Principal.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

since this is ForceNew we'll want to suffix this with Changing this forces a new resource to be created?


## Attributes Reference

The following attributes are exported:
Expand Down