aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-08-07 20:57:38 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-08-07 20:57:38 +0200
commit8ad4b310ac6da08d19c1c776d83473294b9b3eb7 (patch)
tree4aa848b8002fb1ed3d8b7c7738b09b4d4bae814f
parentyandex/server: output instance ID (diff)
downloadinfra-terraform-8ad4b310ac6da08d19c1c776d83473294b9b3eb7.tar.gz
infra-terraform-8ad4b310ac6da08d19c1c776d83473294b9b3eb7.zip
add README.mdv0.0.6
-rw-r--r--README.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..0296b4d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,29 @@
+infra-terraform
+===============
+
+Some common Terraform modules used by me to manage things.
+
+Usage
+-----
+
+An example for the digitalocean/domain module:
+
+```
+module "domain" {
+ source = "github.com/egor-tensin/infra-terraform//digitalocean/domain?ref=v1.0.0"
+
+ name = "example.com"
+ ip_address = digitalocean_floating_ip.server.ip_address
+ project_id = digitalocean_project.this.id
+
+ aliases = ["sub1", "sub2"]
+}
+```
+
+License
+-------
+
+Distributed under the MIT License.
+See [LICENSE.txt] for details.
+
+[LICENSE.txt]: LICENSE.txt