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

Fixes in VPC documentation #1302

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Changes from all commits
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
10 changes: 5 additions & 5 deletions website/docs/r/vpc_service_profile.html.markdown
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
subcategory: "VPC"
layout: "nsxt"
page_title: "NSXT: nsxt_policy_service_profile"
page_title: "NSXT: nsxt_vpc_service_profile"
description: A resource to configure a VPC Service Profile.
---

# nsxt_policy_service_profile
# nsxt_vpc_service_profile

This resource provides a method for the management of a VPC Service Profile.

Expand All @@ -14,7 +14,7 @@ This resource is applicable to NSX Policy Manager.
## Example Usage

```hcl
resource "nsxt_policy_service_profile" "vpc1_service_profile" {
resource "nsxt_vpc_service_profile" "vpc1_service_profile" {
display_name = "vpc1"
description = "Terraform provisioned Vpc Service Profile"

Expand Down Expand Up @@ -85,7 +85,7 @@ An existing object can be [imported][docs-import] into this resource, via the fo
[docs-import]: https://www.terraform.io/cli/import

```
terraform import nsxt_policy_service_profile.test UUID
terraform import nsxt_vpc_service_profile.test PATH
```

The above command imports VpcServiceProfile named `test` with the NSX ID `UUID`.
The above command imports VPC Service Profile named `test` with the NSX policy path `PATH`.
Loading