-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
terraform-provider-sdm/docs: add tags to documentation
GitOrigin-RevId: 79734be40ea0e63efe9f77964e125c26c88aeca7
- Loading branch information
1 parent
cc0fbaa
commit 2a4dbe8
Showing
11 changed files
with
120 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,12 +18,20 @@ resource "sdm_account" "test-user" { | |
first_name = "al" | ||
last_name = "bob" | ||
email = "[email protected]" | ||
tags = { | ||
region = "us-west" | ||
env = "dev" | ||
} | ||
} | ||
} | ||
resource "sdm_account" "test-service" { | ||
service { | ||
name = "test-service" | ||
tags = { | ||
region = "us-west" | ||
env = "dev" | ||
} | ||
} | ||
} | ||
``` | ||
|
@@ -34,9 +42,11 @@ The following arguments are supported by the Account resource: | |
* `first_name` - (Required) The User's first name. | ||
* `last_name` - (Required) The User's last name. | ||
* `suspended` - (Optional) The User's suspended state. | ||
* `tags` - (Optional) Tags is a map of key, value pairs. | ||
* service: | ||
* `name` - (Required) Unique human-readable name of the Service. | ||
* `suspended` - (Optional) The Service's suspended state. | ||
* `tags` - (Optional) Tags is a map of key, value pairs. | ||
## Attribute Reference | ||
In addition to provided arguments above, the following attributes are returned by the Account resource: | ||
* `id` - A unique identifier for the Account resource. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.