blob: 0296b4dcf5192e856fa870cc8ac18b746c0913ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
|