diff --git a/Changelog.md b/Changelog.md
index 874bee4..de4bdd1 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,3 +1,6 @@
+## V0.0.7
+* Fixed name being required, when it was not the case
+
## V0.0.6
* Enabled prune by default
* Project is now "default" by default
diff --git a/README.md b/README.md
index ce110c1..4b199d1 100644
--- a/README.md
+++ b/README.md
@@ -40,7 +40,7 @@ No modules.
| [helm\_values](#input\_helm\_values) | Helm values as a block of yaml | `any` | `null` | no |
| [ignore\_differences](#input\_ignore\_differences) | Ignore differences at the specified json pointers | `list(any)` | `[]` | no |
| [labels](#input\_labels) | n/a | `map(string)` | `{}` | no |
-| [name](#input\_name) | The name of this application | `string` | n/a | yes |
+| [name](#input\_name) | The name of this application | `string` | `""` | no |
| [namespace](#input\_namespace) | n/a | `string` | n/a | yes |
| [path](#input\_path) | n/a | `string` | `""` | no |
| [project](#input\_project) | The project that this ArgoCD application will be placed into. | `string` | `"default"` | no |
diff --git a/variables.tf b/variables.tf
index 8b8f620..c7acd5a 100644
--- a/variables.tf
+++ b/variables.tf
@@ -48,6 +48,7 @@ variable "helm_values" {
variable "name" {
type = string
description = "The name of this application"
+ default = ""
}
variable "project" {
type = string