Skip to content

Commit

Permalink
fix: update egress_subnet description
Browse files Browse the repository at this point in the history
  • Loading branch information
gboutry committed Aug 22, 2023
1 parent a4141d1 commit 7f28925
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/json_schemas/vault_kv/v0/requirer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"properties": {
"egress_subnet": {
"title": "Egress Subnet",
"default": "Egress subnet to use.",
"default": "Egress subnet to use, in CIDR notation.",
"type": "string"
}
}
Expand Down
2 changes: 1 addition & 1 deletion interfaces/vault_kv/v0/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class AppVaultKvProviderSchema(BaseModel):


class UnitVaultKvRequirerSchema(BaseModel):
egress_subnet: str = Field("Egress subnet to use.")
egress_subnet: str = Field("Egress subnet to use, in CIDR notation.")


class ProviderSchema(DataBagSchema):
Expand Down

0 comments on commit 7f28925

Please sign in to comment.