Skip to content

Commit

Permalink
Returned Vars to the code output (#28225)
Browse files Browse the repository at this point in the history
Co-authored-by: Nina Torgunakova <ninatorgunakova@gmail.com>
  • Loading branch information
Alex Fornuto and ninaTorgunakova committed Jun 26, 2023
1 parent d3e086b commit e1b12fd
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ Then create the IAM policy:
$ aws iam create-policy --policy-name <Var name="kube-iam-policy"/> --policy-document file://iam-policy.json
{
"Policy": {
"PolicyName": "kube-iam-policy",
"PolicyName": "<Var name="kube-iam-policy"/>",
"PolicyId": "ANPAW2Y2Q2Y2Y2Y2Y2Y2Y",
"Arn": "arn:aws:iam::aws:policy/kube-iam-policy",
"Arn": "arn:aws:iam::aws:policy/<Var name="kube-iam-policy"/>",
"Path": "/",
"DefaultVersionId": "v1",
"AttachmentCount": 0,
Expand Down Expand Up @@ -133,10 +133,10 @@ Kubernetes service account.

```code
$ kubectl create ns <Var name="teleport-agent"/>
namespace/teleport-agent created
namespace/<Var name="teleport-agent"/> created
$ kubectl create sa <Var name="teleport-kube-agent-sa"/> -n <Var name="teleport-agent"/>
serviceaccount/teleport-kube-agent-sa created
serviceaccount/<Var name="teleport-kube-agent-sa"/> created
```

Then we need to create the IAM role and trust relationship. For that, we need
Expand Down

0 comments on commit e1b12fd

Please sign in to comment.