Skip to content

Commit

Permalink
chore: Update README.md example with new controller names (aws-ia#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
askulkarni2 authored Jun 7, 2023
1 parent 356bc1c commit 2bf218c
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,25 @@ Terraform module which provisions [AWS controllers for Kubernetes](https://aws-c
```hcl
module "eks_ack_addons" {
source = "aws-ia/eks-ack-addons/aws"
cluster_id = "example-ack"
ecrpublic_username = local.ecrpublic_username
ecrpublic_token = local.ecrpublic_token
enable_api_gatewayv2 = true
enable_dynamodb = true
enable_s3 = true
enable_rds = true
enable_amp = true
enable_emrcontainers = true
enable_sfn = true
enable_eb = true
# Cluster Info
cluster_name = "<cluster name>"
cluster_endpoint = "<cluster endpoint>"
oidc_provider_arn = "<oidc provider arn>"
# ECR Credentials
ecrpublic_username = "<ecr user name>"
ecrpublic_token = "<ecr token>"
# Controllers to enable
enable_apigatewayv2 = true
enable_dynamodb = true
enable_s3 = true
enable_rds = true
enable_prometheusservice = true
enable_emrcontainers = true
enable_sfn = true
enable_eventbridge = true
tags = {
Environment = "dev"
Expand Down

0 comments on commit 2bf218c

Please sign in to comment.