-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: migrating to edc 0.7.3 * feat: migrating to edc 0.7.2 * feat: migrating to edc 0.7.2 * feat: migrating to edc 0.7.2 * feat: migrating to edc 0.7.2 * feat: migrating to edc 0.7.2
- Loading branch information
1 parent
6f982f5
commit 861bee7
Showing
57 changed files
with
248 additions
and
1,002 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/bash | ||
|
||
# remove terraform state | ||
rm -rf ./configure-public-address/.terraform | ||
rm -f ./configure-public-address/terraform.tfstate | ||
rm -f ./configure-public-address/.terraform.lock.hcl | ||
rm -f ./configure-public-address/terraform.tfstate.backup | ||
|
||
rm -rf ./ionos-s3-deploy/.terraform | ||
rm -f ./ionos-s3-deploy/terraform.tfstate | ||
rm -f ./ionos-s3-deploy/.terraform.lock.hcl | ||
rm -f ./ionos-s3-deploy/terraform.tfstate.backup | ||
|
||
rm -rf ./vault-init/.terraform | ||
rm -f ./vault-init/terraform.tfstate | ||
rm -f ./vault-init/.terraform.lock.hcl | ||
rm -f ./vault-init/terraform.tfstate.backup | ||
|
||
rm -rf ./vault-deploy/.terraform | ||
rm -f ./vault-deploy/terraform.tfstate | ||
rm -f ./vault-deploy/.terraform.lock.hcl | ||
rm -f ./vault-deploy/terraform.tfstate.backup | ||
|
||
rm -rf ./ionos-postgresqlaas/.terraform | ||
rm -f ./ionos-postgresqlaas/terraform.tfstate | ||
rm -f ./ionos-postgresqlaas/.terraform.lock.hcl | ||
rm -f ./ionos-postgresqlaas/terraform.tfstate.backup | ||
|
||
rm -f vault-init/vault-keys.json | ||
rm -f vault-init/vault-tokens.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
-----BEGIN EC PRIVATE KEY----- | ||
MHcCAQEEIARDUGJgKy1yzxkueIJ1k3MPUWQ/tbQWQNqW6TjyHpdcoAoGCCqGSM49 | ||
AwEHoUQDQgAE1l0Lof0a1yBc8KXhesAnoBvxZw5roYnkAXuqCYfNK3ex+hMWFuiX | ||
GUxHlzShAehR6wvwzV23bbC0tcFcVgW//A== | ||
-----END EC PRIVATE KEY----- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
-----BEGIN PUBLIC KEY----- | ||
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE1l0Lof0a1yBc8KXhesAnoBvxZw5r | ||
oYnkAXuqCYfNK3ex+hMWFuiXGUxHlzShAehR6wvwzV23bbC0tcFcVgW//A== | ||
-----END PUBLIC KEY----- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,6 @@ plugins { | |
`maven-publish` | ||
} | ||
|
||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
|
||
} | ||
|
||
configure<PublishingExtension> { | ||
publications { | ||
withType(MavenPublication::class.java) { | ||
|
@@ -21,6 +15,11 @@ configure<PublishingExtension> { | |
} | ||
} | ||
developers { | ||
developer { | ||
id.set("jannotti-glaucio") | ||
name.set("Glaucio Jannotti") | ||
email.set("[email protected]") | ||
} | ||
developer { | ||
id.set("paulolory-ionos") | ||
name.set("Paulo Lory") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.