Skip to content

Commit

Permalink
chore: Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
csquire committed Dec 17, 2024
1 parent 81f2a3b commit b2489ca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/resources/license_map.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
page_title: "dbtcloud_license_map Resource - dbtcloud"
subcategory: ""
description: |-
Maps SSO groups to a given license type
---

# dbtcloud_license_map (Resource)



Maps SSO groups to a given license type

## Example Usage

Expand Down Expand Up @@ -45,7 +45,7 @@ resource "dbtcloud_license_map" "it_license_map" {

### Read-Only

- `id` (String) The ID of this resource.
- `id` (Number) The ID of the license map

## Import

Expand Down
4 changes: 4 additions & 0 deletions pkg/framework/objects/license_map/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package license_map

import (
"context"
"github.com/dbt-labs/terraform-provider-dbtcloud/pkg/helper"
"github.com/hashicorp/terraform-plugin-framework-validators/stringvalidator"
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
Expand All @@ -17,6 +18,9 @@ func (r *licenseMapResource) Schema(
resp *resource.SchemaResponse,
) {
resp.Schema = schema.Schema{
Description: helper.DocString(
`Maps SSO groups to a given license type`,
),
Attributes: map[string]schema.Attribute{
"id": schema.Int64Attribute{
Computed: true,
Expand Down

0 comments on commit b2489ca

Please sign in to comment.