Skip to content

Commit b755d26

Browse files
authored
Merge branch 'master' into dependabot/go_modules/github.com/hashicorp/terraform-plugin-framework-validators-0.19.0
2 parents df8e5fa + 45850cf commit b755d26

5 files changed

Lines changed: 5 additions & 4 deletions

File tree

internal/service/ipam/api_address_block_resource_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -808,6 +808,8 @@ func TestAccAddressBlockResource_InheritanceSources(t *testing.T) {
808808
}
809809

810810
func TestAccAddressBlockResource_MultipleFederatedRealms(t *testing.T) {
811+
t.Skip("Skipping this test as Multiple federated realms are not supported")
812+
811813
var resourceName = "bloxone_ipam_address_block.test_federated_realms"
812814
var v ipam.AddressBlock
813815
var ipSpaceName = acctest.RandomNameWithPrefix("ip-space")

internal/service/ipam/api_subnet_resource_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -867,6 +867,8 @@ func TestAccSubnetResource_InheritanceSources(t *testing.T) {
867867
}
868868

869869
func TestAccSubnetResource_MultipleFederatedRealms(t *testing.T) {
870+
t.Skip("Skipping this test as Multiple federated realms are not supported")
871+
870872
var resourceName = "bloxone_ipam_subnet.test_federated_realms"
871873
var v ipam.Subnet
872874
var ipSpaceName = acctest.RandomNameWithPrefix("ip-space")

internal/service/ipam/model_ipamsvc_address.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ var IpamsvcAddressResourceSchemaAttributes = map[string]schema.Attribute{
9393
},
9494
"compartment_id": schema.StringAttribute{
9595
Computed: true,
96-
Default: stringdefault.StaticString(""),
9796
MarkdownDescription: "The compartment associated with the object. If no compartment is associated with the object, the value defaults to empty.",
9897
},
9998
"created_at": schema.StringAttribute{

internal/service/ipam/model_ipamsvc_address_block.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ var IpamsvcAddressBlockResourceSchemaAttributes = map[string]schema.Attribute{
169169
"compartment_id": schema.StringAttribute{
170170
Optional: true,
171171
Computed: true,
172-
Default: stringdefault.StaticString(""),
173172
MarkdownDescription: "The compartment associated with the object. If no compartment is associated with the object, the value defaults to empty.",
174173
},
175174
"created_at": schema.StringAttribute{

internal/service/ipam/model_ipamsvc_subnet.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,7 @@ var IpamsvcSubnetResourceSchemaAttributes = map[string]schema.Attribute{
178178
MarkdownDescription: "The description for the subnet. May contain 0 to 1024 characters. Can include UTF-8.",
179179
},
180180
"compartment_id": schema.StringAttribute{
181-
Computed: true,
182-
Default: stringdefault.StaticString(""),
181+
Computed: true,
183182
MarkdownDescription: "The compartment associated with the object. If no compartment is associated with the object, the value defaults to empty.",
184183
},
185184
"config_profiles": schema.ListAttribute{

0 commit comments

Comments
 (0)