Skip to content

Commit

Permalink
Merge pull request #1003 from Juniper/1002-markdown-text-on-wrong-att…
Browse files Browse the repository at this point in the history
…ribute

Update markdown text
  • Loading branch information
chrismarget-j authored Dec 21, 2024
2 parents f802a99 + 59f4f68 commit 46fb091
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apstra/blueprint/datacenter_routing_zone.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ func (o DatacenterRoutingZone) DataSourceAttributes() map[string]dataSourceSchem
},
},
"blueprint_id": dataSourceSchema.StringAttribute{
MarkdownDescription: "Apstra Blueprint ID. Required when `id` is omitted.",
MarkdownDescription: "Apstra Blueprint ID.",
Required: true,
Validators: []validator.String{stringvalidator.LengthAtLeast(1)},
},
"name": dataSourceSchema.StringAttribute{
MarkdownDescription: "Name displayed in the Apstra web UI.",
MarkdownDescription: "Name displayed in the Apstra web UI. Required when `id` is omitted.",
Computed: true,
Optional: true,
Validators: []validator.String{
Expand Down
4 changes: 2 additions & 2 deletions docs/data-sources/datacenter_routing_zone.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ output "routing_zone" {

### Required

- `blueprint_id` (String) Apstra Blueprint ID. Required when `id` is omitted.
- `blueprint_id` (String) Apstra Blueprint ID.

### Optional

- `id` (String) Apstra graph node ID. Required when `name` is omitted.
- `name` (String) Name displayed in the Apstra web UI.
- `name` (String) Name displayed in the Apstra web UI. Required when `id` is omitted.

### Read-Only

Expand Down

0 comments on commit 46fb091

Please sign in to comment.