From 2bad64576f36201ccec638f1cf742c67df08eeef Mon Sep 17 00:00:00 2001 From: vaishnavi Date: Fri, 7 Feb 2020 17:27:22 +0530 Subject: [PATCH] Fix issue #1081 --- ibm/resource_ibm_is_vpc.go | 9 +++++---- website/docs/r/is_vpc.html.markdown | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/ibm/resource_ibm_is_vpc.go b/ibm/resource_ibm_is_vpc.go index a3c8aed905..b8b7c197bf 100644 --- a/ibm/resource_ibm_is_vpc.go +++ b/ibm/resource_ibm_is_vpc.go @@ -63,10 +63,11 @@ func resourceIBMISVPC() *schema.Resource { }, isVPCDefaultNetworkACL: { - Type: schema.TypeString, - Optional: true, - Default: nil, - Computed: true, + Type: schema.TypeString, + Optional: true, + Default: nil, + Computed: true, + Deprecated: "This field is deprecated", }, isVPCIsDefault: { diff --git a/website/docs/r/is_vpc.html.markdown b/website/docs/r/is_vpc.html.markdown index a7df16077c..733aa4c243 100644 --- a/website/docs/r/is_vpc.html.markdown +++ b/website/docs/r/is_vpc.html.markdown @@ -26,7 +26,7 @@ resource "ibm_is_vpc" "testacc_vpc" { The following arguments are supported: -* `default_network_acl` - (Optional, string) ID of the default network ACL. +* `default_network_acl` - (Deprecated, string) ID of the default network ACL. * `is_default` - (Removed, bool) This field is removed. * `address_prefix_management` - (Optional, string) Indicates whether a default address prefix should be automatically created for each zone in this VPC. Default value `auto` * `classic_access` -(Optional, bool) Indicates whether this VPC should be connected to Classic Infrastructure. If true, This VPC's resources will have private network connectivity to the account's Classic Infrastructure resources. Only one VPC on an account may be connected in this way.