Skip to content

Commit 5cdd06b

Browse files
inital commit
1 parent fa15a8f commit 5cdd06b

File tree

1 file changed

+16
-46
lines changed

1 file changed

+16
-46
lines changed

README.yaml

Lines changed: 16 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ badges:
2222
image: "https://img.shields.io/badge/License-APACHE-blue.svg"
2323
url: "LICENSE.md"
2424
- name: "tfsec"
25-
image: "https://github.com/clouddrove/terraform-google-labels/actions/workflows/tfsec.yml/badge.svg"
26-
url: "https://github.com/clouddrove/terraform-aws-acm/actions/workflows/tfsec.yml"
25+
image: "https://github.com/clouddrove/terraform-gcp-labels/actions/workflows/tfsec.yml/badge.svg"
26+
url: "https://github.com/clouddrove/terraform-gcp-labels/actions/workflows/tfsec.yml"
2727
- name: "static-checks"
28-
image: "https://github.com/clouddrove/terraform-aws-acm/actions/workflows/terraform.yml/badge.svg"
29-
url: "https://github.com/clouddrove/terraform-aws-acm/actions/workflows/terraform.yml"
28+
image: "https://github.com/clouddrove/terraform-gcp-labels/actions/workflows/terraform.yml/badge.svg"
29+
url: "https://github.com/clouddrove/terraform-gcp-labels/actions/workflows/terraform.yml"
3030

3131
# description of this project
3232
description: |-
@@ -39,47 +39,17 @@ include:
3939
# How to use this project
4040
usage : |-
4141
Here are some examples of how you can use this module in your inventory structure:
42-
### ACM with DNS
42+
### labels module
4343
```hcl
44-
module "acm" {
45-
source = "clouddrove/acm/aws"
46-
version = "1.0.1"
47-
name = "certificate"
48-
environment = "test"
49-
label_order = ["name","environment"]
50-
domain_name = "clouddrove.com"
51-
validation_method = "DNS"
52-
enable_dns_validation = false
53-
enable_aws_certificate = true
44+
module "labels" {
45+
source = "./../"
46+
47+
name = "labels"
48+
environment = "test"
49+
label_order = ["name", "environment"]
50+
attributes = ["private"]
51+
extra_tags = {
52+
Application = "CloudDrove"
53+
}
5454
}
55-
```
56-
57-
### ACM with Email
58-
```hcl
59-
module "acm" {
60-
source = "clouddrove/acm/aws"
61-
version = "1.0.1"
62-
name = "certificate"
63-
environment = "test"
64-
label_order = ["name","environment"]
65-
domain_name = "clouddrove.com"
66-
validation_method = "EMAIL"
67-
validate_certificate = false
68-
enable_aws_certificate = true
69-
}
70-
```
71-
72-
### ACM with Import Certificate
73-
```hcl
74-
module "acm" {
75-
source = "clouddrove/acm/aws"
76-
version = "1.0.1"
77-
name = "certificate"
78-
environment = "test"
79-
label_order = ["name","environment"]
80-
private_key = "./../../../clouddrove-private-key.pem"
81-
certificate_body = "./../../../clouddrove-cert.pem"
82-
certificate_chain = "./../../../clouddrove-chain.crt"
83-
import_certificate = true
84-
}
85-
```
55+
```

0 commit comments

Comments
 (0)