Skip to content

Commit 6b51561

Browse files
authored
Merge pull request #13 from 3scale-sre/cfg/update-github-org-links
clean: rename link to the 3scale-sre github org
2 parents 538b9e2 + e41e3e7 commit 6b51561

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
The module will create a Hypershift HostedCluster in the Hub cluster using the credentials provided in the helm provider (see example below). The module expects an already set up VPC to be provided and will only create the required IAM resources, security groups and hosted zones.
44
The module will also configure the following:
55

6-
* A Github oauth applications as Openshift's identity provider
7-
* A Vault approle that grants the cluster access to a specific Vault path so the user can install external-secrets-operator with the provided credentials.
6+
- A Github oauth applications as Openshift's identity provider
7+
- A Vault approle that grants the cluster access to a specific Vault path so the user can install external-secrets-operator with the provided credentials.
88

99
## Example usage
1010

@@ -37,7 +37,7 @@ Then onvoke the module in `main.tf` like this:
3737

3838
```hcl
3939
module "hostedcluster" {
40-
source = "[email protected]:3scale-ops/tf-hypershift-hostedcluster?ref=tags/0.1.0"
40+
source = "[email protected]:3scale-sre/tf-hypershift-hostedcluster?ref=tags/0.1.0"
4141
environment = "dev"
4242
project = "example"
4343
cluster = "cluster"

security_group.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module "storage_sg_3scale_management_rules" {
2-
source = "[email protected]:3scale-ops/tf-aws-sg-rules.git?ref=tags/0.3.0"
2+
source = "[email protected]:3scale-sre/tf-aws-sg-rules.git?ref=tags/0.3.0"
33
sg_id = aws_security_group.worker.id
44
}
55

vault.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ resource "vault_approle_auth_backend_role_secret_id" "this" {
2828
# Retrieve GitHub oauth credentials from vault
2929
module "github_oauth_idp" {
3030
count = var.github_oauth_enabled ? 1 : 0
31-
source = "[email protected]:3scale-ops/tf-vault-secret.git?ref=tags/0.1.3"
31+
source = "[email protected]:3scale-sre/tf-vault-secret.git?ref=tags/0.1.3"
3232
path = "kubernetes/${var.environment}-${var.project}/${var.cluster}/github-oauth-idp"
3333
}

0 commit comments

Comments
 (0)