Skip to content

Commit a15740a

Browse files
Merge pull request #190 from vasilsatanasov/topic/vasila/fix-acc-pr-189
Adding microsoft_licensing_config.academic_license in cluster schema
2 parents 5789e5a + a97450f commit a15740a

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

Diff for: CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 1.13.1 (Aug 4, 2023)
2+
3+
BUG FIXES:
4+
5+
* 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)
6+
7+
ENHANCEMENT:
8+
* Bump google.golang.org/grpc from 1.51.0 to 1.53.0 [\#184](https://github.com/vmware/terraform-provider-vmc/pull/184)
9+
* Updates to documentation [\#186](https://github.com/vmware/terraform-provider-vmc/pull/186)
10+
111
## 1.13 (Feb 23, 2023)
212

313
FEATURES:

Diff for: vmc/resource_vmc_cluster.go

+5
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,11 @@ func clusterSchema() map[string]*schema.Schema {
159159
ValidateFunc: validation.StringInSlice([]string{
160160
constants.LicenseConfigEnabled, constants.LicenseConfigDisabled, constants.CapitalLicenseConfigEnabled, constants.CapitalLicenseConfigDisabled}, false),
161161
},
162+
"academic_license": {
163+
Type: schema.TypeBool,
164+
Optional: true,
165+
Description: "Flag to identify if it is Academic Standard or Commercial Standard License.",
166+
},
162167
},
163168
},
164169
Optional: true,

0 commit comments

Comments
 (0)