Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ resource "aws_iam_policy" "deployer" {
EOT
}

module "opszero-eks" {
source = "github.com/opszero/terraform-aws-mrmgr"
module "opszero-iam" {
source = "github.com/opszero/terraform-aws-iam?ref=v4.0.0"

github = {
"deployer" = {
org = "opszero"
repos = [
"terraform-aws-mrmgr"
"terraform-aws-iam"
]
policy_arns = [
aws_iam_policy.deployer.arn
Expand Down Expand Up @@ -94,7 +94,7 @@ module "opszero-eks" {
# environments/<nameofenv>/main.tf

module "opszero-eks" {
source = "github.com/opszero/terraform-aws-kubespot"
source = "github.com/opszero/terraform-aws-kubespot?ref=v10.1.1"

...

Expand Down Expand Up @@ -181,13 +181,13 @@ EOT
}

module "iam" {
source = "github.com/opszero/mrmgr//modules/aws"
source = "github.com/opszero/terraform-aws-iam?ref=v4.0.0"

github = {
"deployer" = {
org = "opszero"
repos = [
"mrmgr"
"iam"
]
policy_arns = [
aws_iam_policy.deployer.arn
Expand All @@ -202,7 +202,7 @@ kubespot

```terraform
module "opszero-eks" {
source = "github.com/opszero/terraform-aws-kubespot"
source = "github.com/opszero/terraform-aws-kubespot?ref=v10.1.1"

...

Expand Down Expand Up @@ -308,7 +308,7 @@ EOT
}

module "iam" {
source = "github.com/opszero/mrmgr//modules/aws"
source = "github.com/opszero/terraform-aws-iam?ref=v4.0.0"

gitlab = {
"deployer" = {
Expand All @@ -317,7 +317,7 @@ module "iam" {
gitlab_url = "https://gitlab.com"
match_field = "sub"
match_value = [
"project_path:opszero/mrmgr:ref_type:branch:ref:main"
"project_path:opszero/iam:ref_type:branch:ref:main"
]
policy_arns = [
aws_iam_policy.deployer.arn
Expand Down Expand Up @@ -365,8 +365,8 @@ assume role:
## BitBucket

```bash
module "mrmgr" {
source = "github.com/opszero/terraform-aws-mrmgr"
module "iam" {
source = "github.com/opszero/terraform-aws-iam?ref=v4.0.0"

bitbucket = {
"deployer" = {
Expand Down