Skip to content

Commit

Permalink
Merge pull request #190 from vasilsatanasov/topic/vasila/fix-acc-pr-189
Browse files Browse the repository at this point in the history
Adding microsoft_licensing_config.academic_license in cluster schema
  • Loading branch information
vasilsatanasov authored Aug 4, 2023
2 parents 5789e5a + a97450f commit a15740a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.13.1 (Aug 4, 2023)

BUG FIXES:

* Allowing usage of microsoft_license_config upon SDDC creation. Reading microsoft_license_config.academic_license field [\#190](https://github.com/vmware/terraform-provider-vmc/pull/190)

ENHANCEMENT:
* Bump google.golang.org/grpc from 1.51.0 to 1.53.0 [\#184](https://github.com/vmware/terraform-provider-vmc/pull/184)
* Updates to documentation [\#186](https://github.com/vmware/terraform-provider-vmc/pull/186)

## 1.13 (Feb 23, 2023)

FEATURES:
Expand Down
5 changes: 5 additions & 0 deletions vmc/resource_vmc_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,11 @@ func clusterSchema() map[string]*schema.Schema {
ValidateFunc: validation.StringInSlice([]string{
constants.LicenseConfigEnabled, constants.LicenseConfigDisabled, constants.CapitalLicenseConfigEnabled, constants.CapitalLicenseConfigDisabled}, false),
},
"academic_license": {
Type: schema.TypeBool,
Optional: true,
Description: "Flag to identify if it is Academic Standard or Commercial Standard License.",
},
},
},
Optional: true,
Expand Down

0 comments on commit a15740a

Please sign in to comment.