Skip to content

Commit cb5ed8b

Browse files
Merge pull request #5 from RohitSquareops/Release-v1.0.0
Initial Release
2 parents 8fa0f7c + 250135e commit cb5ed8b

File tree

5 files changed

+17
-16
lines changed

5 files changed

+17
-16
lines changed

IAM.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
resource "aws_iam_policy" "terraform_pike" {
2-
name_prefix = "terraform_pike"
3-
path = "/"
4-
description = "Pike Autogenerated policy from IAC"
1+
## IAM Permission
52

6-
policy = jsonencode({
3+
The Policy required to deploy this module is:
4+
5+
```
6+
{
77
"Version": "2012-10-17",
88
"Statement": [
99
{
@@ -17,5 +17,7 @@ resource "aws_iam_policy" "terraform_pike" {
1717
]
1818
}
1919
]
20-
})
2120
}
21+
22+
23+
```

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ This module is compatible with EKS version 1.23,1.24 and 1.25 which is great new
2323

2424
```hcl
2525
module "argocd" {
26-
source = "https://github.com/sq-ia/terraform-kubernetes-argocd.git"
26+
source = "squareops/argocd/kubernetes"
2727
argocd_config = {
28-
hostname = "argocd.squareops.in"
28+
hostname = "argocd.prod.in"
2929
values_yaml = ""
3030
redis_ha_enabled = true
3131
autoscaling_enabled = true
@@ -35,10 +35,10 @@ module "argocd" {
3535
}
3636
3737
```
38-
Refer [examples](https://github.com/sq-ia/terraform-kubernetes-argocd/tree/main/examples/complete) for more details.
38+
Refer [examples](https://github.com/squareops/terraform-kubernetes-argocd/tree/main/examples/complete) for more details.
3939

4040
## IAM Permissions
41-
The required IAM permissions to create resources from this module can be found [here](https://github.com/sq-ia/terraform-kubernetes-argocd/blob/main/IAM.md)
41+
The required IAM permissions to create resources from this module can be found [here](https://github.com/squareops/terraform-kubernetes-argocd/blob/main/IAM.md)
4242

4343
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
4444
## Requirements
@@ -83,7 +83,7 @@ No modules.
8383

8484
To report an issue with a project:
8585

86-
1. Check the repository's [issue tracker](https://github.com/sq-ia/terraform-kubernetes-argocd/issues) on GitHub
86+
1. Check the repository's [issue tracker](https://github.com/squareops/terraform-kubernetes-argocd/issues) on GitHub
8787
2. Search to see if the issue has already been reported
8888
3. If you can't find an answer to your question in the documentation or issue tracker, you can ask a question by creating a new issue. Be sure to provide enough context and details so others can understand your problem.
8989

@@ -95,7 +95,7 @@ Apache License, Version 2.0, January 2004 (http://www.apache.org/licenses/).
9595

9696
To support a GitHub project by liking it, you can follow these steps:
9797

98-
1. Visit the repository: Navigate to the [GitHub repository](https://github.com/sq-ia/terraform-kubernetes-argocd).
98+
1. Visit the repository: Navigate to the [GitHub repository](https://github.com/squareops/terraform-kubernetes-argocd).
9999

100100
2. Click the "Star" button: On the repository page, you'll see a "Star" button in the upper right corner. Clicking on it will star the repository, indicating your support for the project.
101101

examples/complate/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ No requirements.
2222

2323
| Name | Source | Version |
2424
|------|--------|---------|
25-
| <a name="module_argocd"></a> [argocd](#module\_argocd) | ../../ | n/a |
25+
| <a name="module_argocd"></a> [argocd](#module\_argocd) | squareops/argocd/kubernetes.git | n/a |
2626

2727
## Resources
2828

examples/complate/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ locals {
99
}
1010

1111
module "argocd" {
12-
source = "https://github.com/sq-ia/terraform-kubernetes-argocd.git"
12+
source = "squareops/argocd/kubernetes"
1313
argocd_config = {
14-
hostname = "argocd.squareops.in"
14+
hostname = "argocd.prod.in"
1515
values_yaml = file("./helm/values.yaml")
1616
redis_ha_enabled = true
1717
autoscaling_enabled = true

main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
resource "kubernetes_namespace" "argocd" {
2-
32
metadata {
43
name = var.namespace
54
}

0 commit comments

Comments
 (0)