Skip to content

Commit

Permalink
Remove Removed fields (#2391)
Browse files Browse the repository at this point in the history
  • Loading branch information
megan07 authored and rileykarson committed Nov 6, 2019
1 parent 2fa6af8 commit 374bad7
Show file tree
Hide file tree
Showing 16 changed files with 3 additions and 386 deletions.
1 change: 0 additions & 1 deletion products/compute/terraform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,6 @@ overrides: !ruby/object:Overrides::ResourceOverrides
pre_delete: templates/terraform/pre_delete/detach_disk.erb
constants: templates/terraform/constants/disk.erb
encoder: templates/terraform/encoders/disk.erb
extra_schema_entry: templates/terraform/extra_schema_entry/disk.erb
decoder: templates/terraform/decoders/disk.erb
resource_definition: templates/terraform/resource_definition/disk.erb
docs: !ruby/object:Provider::Terraform::Docs
Expand Down
20 changes: 0 additions & 20 deletions templates/terraform/extra_schema_entry/backend_service.erb

This file was deleted.

13 changes: 0 additions & 13 deletions templates/terraform/extra_schema_entry/disk.erb

This file was deleted.

26 changes: 0 additions & 26 deletions templates/terraform/extra_schema_entry/snapshot.erb
Original file line number Diff line number Diff line change
Expand Up @@ -16,29 +16,3 @@
Type: schema.TypeString,
Computed: true,
},

"snapshot_encryption_key_raw": {
Type: schema.TypeString,
Optional: true,
Sensitive: true,
Removed: "Use snapshot_encryption_key.raw_key instead.",
},

"snapshot_encryption_key_sha256": {
Type: schema.TypeString,
Computed: true,
Removed: "Use snapshot_encryption_key.sha256 instead.",
},

"source_disk_encryption_key_raw": {
Type: schema.TypeString,
Optional: true,
Sensitive: true,
Removed: "Use source_disk_encryption_key.raw_key instead.",
},

"source_disk_encryption_key_sha256": {
Type: schema.TypeString,
Computed: true,
Removed: "Use source_disk_encryption_key.sha256 instead.",
},
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,6 @@ func dataSourceGoogleServiceAccountKey() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"service_account_id": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Removed: "Please use name to specify full service account key path projects/{project}/serviceAccounts/{serviceAccount}/keys/{keyId}",
},
},
}
}
Expand Down
28 changes: 0 additions & 28 deletions third_party/terraform/resources/resource_bigtable_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,34 +87,6 @@ func resourceBigtableInstance() *schema.Resource {
Computed: true,
ForceNew: true,
},

"cluster_id": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Removed: "Use cluster instead.",
},

"zone": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Removed: "Use cluster instead.",
},

"num_nodes": {
Type: schema.TypeInt,
Optional: true,
Computed: true,
Removed: "Use cluster instead.",
},

"storage_type": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Removed: "Use cluster instead.",
},
},
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,27 +212,10 @@ func resourceCloudFunctionsFunction() *schema.Resource {
Optional: true,
},

"trigger_bucket": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Removed: "This field is removed. Use `event_trigger` instead.",
ConflictsWith: []string{"trigger_http", "trigger_topic"},
},

"trigger_http": {
Type: schema.TypeBool,
Optional: true,
ForceNew: true,
ConflictsWith: []string{"trigger_bucket", "trigger_topic"},
},

"trigger_topic": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Removed: "This field is removed. Use `event_trigger` instead.",
ConflictsWith: []string{"trigger_http", "trigger_bucket"},
Type: schema.TypeBool,
Optional: true,
ForceNew: true,
},

"event_trigger": {
Expand Down
80 changes: 0 additions & 80 deletions third_party/terraform/resources/resource_compute_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,12 +216,6 @@ func resourceComputeInstance() *schema.Resource {
ValidateFunc: validation.StringInSlice([]string{"PREMIUM", "STANDARD"}, false),
},

"assigned_nat_ip": {
Type: schema.TypeString,
Computed: true,
Removed: "Use network_interface.access_config.nat_ip instead.",
},

"public_ptr_domain_name": {
Type: schema.TypeString,
Optional: true,
Expand All @@ -247,14 +241,6 @@ func resourceComputeInstance() *schema.Resource {
},
},
},

"address": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Computed: true,
Removed: "Please use network_ip",
},
},
},
},
Expand Down Expand Up @@ -328,72 +314,6 @@ func resourceComputeInstance() *schema.Resource {
Default: false,
},

"disk": {
Type: schema.TypeList,
Optional: true,
ForceNew: true,
Removed: "Use boot_disk, scratch_disk, and attached_disk instead",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
// TODO(mitchellh): one of image or disk is required

"disk": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
},

"image": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
},

"type": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
},

"scratch": {
Type: schema.TypeBool,
Optional: true,
ForceNew: true,
},

"auto_delete": {
Type: schema.TypeBool,
Optional: true,
Default: true,
ForceNew: true,
},

"size": {
Type: schema.TypeInt,
Optional: true,
ForceNew: true,
},

"device_name": {
Type: schema.TypeString,
Optional: true,
},

"disk_encryption_key_raw": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Sensitive: true,
},

"disk_encryption_key_sha256": {
Type: schema.TypeString,
Computed: true,
},
},
},
},

"enable_display": {
Type: schema.TypeBool,
Optional: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,6 @@ func resourceComputeInstanceTemplate() *schema.Resource {
ForceNew: true,
},

"automatic_restart": {
Type: schema.TypeBool,
Optional: true,
ForceNew: true,
Removed: "Use 'scheduling.automatic_restart' instead.",
},

"can_ip_forward": {
Type: schema.TypeBool,
Optional: true,
Expand Down Expand Up @@ -270,11 +263,6 @@ func resourceComputeInstanceTemplate() *schema.Resource {
Computed: true,
ValidateFunc: validation.StringInSlice([]string{"PREMIUM", "STANDARD"}, false),
},
"assigned_nat_ip": {
Type: schema.TypeString,
Computed: true,
Removed: "Use network_interface.access_config.nat_ip instead.",
},
},
},
},
Expand All @@ -299,24 +287,10 @@ func resourceComputeInstanceTemplate() *schema.Resource {
},
},
},

"address": {
Type: schema.TypeString,
Computed: true,
Optional: true,
Removed: "Please use network_ip",
},
},
},
},

"on_host_maintenance": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Removed: "Use 'scheduling.on_host_maintenance' instead.",
},

"project": {
Type: schema.TypeString,
Optional: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,6 @@ func resourceDataprocCluster() *schema.Resource {
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{

"delete_autogen_bucket": {
Type: schema.TypeBool,
Optional: true,
Default: false,
Removed: "If you need a bucket that can be deleted, please create" +
"a new one and set the `staging_bucket` field",
},

"staging_bucket": {
Type: schema.TypeString,
Optional: true,
Expand Down
6 changes: 0 additions & 6 deletions third_party/terraform/resources/resource_endpoints_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,6 @@ func resourceEndpointsService() *schema.Resource {
Type: schema.TypeString,
Optional: true,
},
"protoc_output": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Removed: "Please use protoc_output_base64 instead.",
},
"protoc_output_base64": {
Type: schema.TypeString,
Optional: true,
Expand Down
Loading

0 comments on commit 374bad7

Please sign in to comment.