Skip to content

Commit

Permalink
docs: fix address state description (#1923)
Browse files Browse the repository at this point in the history
  • Loading branch information
byashimov authored Nov 27, 2024
1 parent 154b966 commit dba579f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/data-sources/billing_group.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ data "aiven_billing_group" "example_billing_group" {
- `id` (String) The ID of this resource.
- `name` (String) Name of the billing group.
- `parent_id` (String) Link a billing group to an existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
- `state` (String) State or province.
- `state` (String) Address state.
- `vat_id` (String) The VAT identification number for your company.
- `zip_code` (String) Zip or postal code.
2 changes: 1 addition & 1 deletion docs/resources/billing_group.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ resource "aiven_project" "example_project" {
- `copy_from_billing_group` (String) ID of the billing group to copy the company name, address, currency, billing contacts, and extra text from.
- `country_code` (String) Two-letter country code.
- `parent_id` (String) Link a billing group to an existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
- `state` (String) State or province.
- `state` (String) Address state.
- `timeouts` (Block, Optional) (see [below for nested schema](#nestedblock--timeouts))
- `vat_id` (String) The VAT identification number for your company.
- `zip_code` (String) Zip or postal code.
Expand Down
2 changes: 1 addition & 1 deletion internal/sdkprovider/service/project/billing_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ var aivenBillingGroupSchema = map[string]*schema.Schema{
Type: schema.TypeString,
Optional: true,
DiffSuppressFunc: schemautil.EmptyObjectNoChangeDiffSuppressFunc,
Description: "State or province.",
Description: "Address state.",
},
"copy_from_billing_group": {
Type: schema.TypeString,
Expand Down

0 comments on commit dba579f

Please sign in to comment.