Skip to content

Commit

Permalink
changing oktadeveloper to oktadev (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
dangeReis authored Aug 4, 2021
1 parent 2f3a60a commit b93f5ce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Readme.MD
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ This tool has been verified to work on macOS Sierra, High Sierra, Windows Server

1. Run the following in a [PowerShell console](http://technet.microsoft.com/library/hh831491.aspx#start-windows-powershell)
```pwsh
Set-ExecutionPolicy -Scope Process -ExecutionPolicy unrestricted -Force; Invoke-Expression ((New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/oktadeveloper/okta-aws-cli-assume-role/master/bin/Install-OktaAwsCli.ps1')); .$profile
Set-ExecutionPolicy -Scope Process -ExecutionPolicy unrestricted -Force; Invoke-Expression ((New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/oktadev/okta-aws-cli-assume-role/master/bin/Install-OktaAwsCli.ps1')); .$profile
```
2. Customize **%userprofile%\\.okta\\config.properties** and set **OKTA_ORG** and **OKTA_AWS_APP_URL** appropriately. For example,
```properties
Expand All @@ -44,7 +44,7 @@ This tool has been verified to work on macOS Sierra, High Sierra, Windows Server
`PREFIX` value (default: `~/.okta`):

```bash
PREFIX=~/.okta bash <(curl -fsSL https://raw.githubusercontent.com/oktadeveloper/okta-aws-cli-assume-role/master/bin/install.sh) -i
PREFIX=~/.okta bash <(curl -fsSL https://raw.githubusercontent.com/oktadev/okta-aws-cli-assume-role/master/bin/install.sh) -i
```

2. Customize **~/.okta/config.properties** and set **OKTA_ORG** and **OKTA_AWS_APP_URL** appropriately. For example,
Expand Down Expand Up @@ -75,7 +75,7 @@ Read more at [@tom-smith-okta's okta-awscli-java Docker repo](https://hub.docker
Create a `.okta` directory in your home directory. For example, `~/.okta`.
Download the latest release JAR and put it in `.okta`:
https://github.com/oktadeveloper/okta-aws-cli-assume-role/releases
https://github.com/oktadev/okta-aws-cli-assume-role/releases
Create `~/.okta/config.properties` and set
**OKTA_ORG** and **OKTA_AWS_APP_URL** appropriately. For example,
Expand Down Expand Up @@ -121,7 +121,7 @@ The proxy URI _must_ be of the form `http://host:port/`. Both the host and port

## Compiling the application

The application was built and compiled with [JetBrains' IntelliJ IDEA](https://www.jetbrains.com/idea/). Note that you don't have to compile the application in order to be able to execute it, since the compiled executable (a JAR file) is available [on GitHub](https://github.com/oktadeveloper/okta-aws-cli-assume-role/releases).
The application was built and compiled with [JetBrains' IntelliJ IDEA](https://www.jetbrains.com/idea/). Note that you don't have to compile the application in order to be able to execute it, since the compiled executable (a JAR file) is available [on GitHub](https://github.com/oktadev/okta-aws-cli-assume-role/releases).

### Prerequisites
First of all, it goes without saying that you will need to install the [Java SE 11x](http://www.oracle.com/technetwork/java/javase/downloads/index.html) or the [Java JDK 11x](https://www.oracle.com/technetwork/java/javase/downloads/jdk11-downloads-5066655.html).
Expand All @@ -132,7 +132,7 @@ Then you will need [Maven 2 or later](https://maven.apache.org/install.html) to

Get a single JAR with all dependencies:

Use ```git clone https://github.com/oktadeveloper/okta-aws-cli-assume-role.git``` to clone the repository locally. Then, build with Maven:
Use ```git clone https://github.com/oktadev/okta-aws-cli-assume-role.git``` to clone the repository locally. Then, build with Maven:

```bash
mvn package
Expand Down
2 changes: 1 addition & 1 deletion bin/Install-OktaAwsCli.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function Install-OktaAwsCli {
New-Item -ItemType File -Path $HOME\.okta\uptodate -Force | Out-Null
# .NET apparently doesn't default to TLS 1.2 and GitHub requires it
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12
$LatestReleaseResponse = Invoke-RestMethod -Uri "https://api.github.com/repos/oktadeveloper/okta-aws-cli-assume-role/releases/latest"
$LatestReleaseResponse = Invoke-RestMethod -Uri "https://api.github.com/repos/oktadev/okta-aws-cli-assume-role/releases/latest"
$Asset = $LatestReleaseResponse.assets | Where-Object { $_.content_type -eq "application/java-archive" }
$Client = New-Object System.Net.WebClient
$Client.DownloadFile($Asset.browser_download_url, "$Home\.okta\okta-aws-cli.jar")
Expand Down
2 changes: 1 addition & 1 deletion bin/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
repo_url="https://github.com/oktadeveloper/okta-aws-cli-assume-role"
repo_url="https://github.com/oktadev/okta-aws-cli-assume-role"
dotokta="${HOME}/.okta"

printusage() {
Expand Down

0 comments on commit b93f5ce

Please sign in to comment.