Skip to content

Commit

Permalink
Adding the computed fields
Browse files Browse the repository at this point in the history
  • Loading branch information
tombuildsstuff committed Feb 5, 2017
1 parent 99cefe5 commit 15ce30a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions builtin/providers/azurerm/resource_arm_documentdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,26 @@ func resourceArmDocumentDb() *schema.Resource {
Set: resourceAzureRMDocumentDbFailoverPolicyHash,
},

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

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

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

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

"tags": tagsSchema(),
},
}
Expand Down

0 comments on commit 15ce30a

Please sign in to comment.