Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion docs/resources/application.md
Original file line number Diff line number Diff line change
Expand Up @@ -559,8 +559,10 @@ Read-Only:

Import is supported using the following syntax:

The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:

```shell
# ArgoCD applications can be imported using an id consisting of `{name}:{namespace}`. E.g.
# ArgoCD applications can be imported using an id consisting of `{name}:{namespace}`.

terraform import argocd_application.myapp myapp:argocd
```
3 changes: 2 additions & 1 deletion docs/resources/cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,10 @@ Read-Only:

Import is supported using the following syntax:

The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:

```shell
# Cluster credentials can be imported using the server URL.

# Example:
terraform import argocd_cluster.mycluster https://mycluster.io:443
```
3 changes: 2 additions & 1 deletion docs/resources/gpg_key.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,10 @@ EOF

Import is supported using the following syntax:

The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:

```shell
# GPG Keys can be imported using the key ID.

# Example:
terraform import argocd_gpg_key.this 9AD92955401D388D
```
3 changes: 2 additions & 1 deletion docs/resources/project.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,9 +295,10 @@ Optional:

Import is supported using the following syntax:

The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:

```shell
# Projects can be imported using the project name.

# Example:
terraform import argocd_project.myproject myproject
```
3 changes: 2 additions & 1 deletion docs/resources/repository.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ resource "argocd_repository" "private" {

Import is supported using the following syntax:

The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:

```shell
# Repositories can be imported using the repository URL.

Expand All @@ -77,6 +79,5 @@ Import is supported using the following syntax:
# `ssh_private_key` and `tls_client_cert_key` attributes converge to their
# expected values defined within the plan.

# Example:
terraform import argocd_repository.myrepo [email protected]:somerepo.git
```
3 changes: 2 additions & 1 deletion docs/resources/repository_credentials.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ resource "argocd_repository_credentials" "private" {

Import is supported using the following syntax:

The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:

```shell
# Repository credentials can be imported using the repository URL.

Expand All @@ -59,6 +61,5 @@ Import is supported using the following syntax:
# `ssh_private_key` and `tls_client_cert_key` attributes converge to their
# expected values defined within the plan.

# Example:
terraform import argocd_repository_credentials.myrepocreds [email protected]:somerepo.git
```
6 changes: 0 additions & 6 deletions examples/data-sources/application/example_1.tf

This file was deleted.

43 changes: 0 additions & 43 deletions examples/example_1.tf

This file was deleted.

11 changes: 0 additions & 11 deletions examples/resources/account_token/example_1.tf

This file was deleted.

150 changes: 0 additions & 150 deletions examples/resources/application/example_1.tf

This file was deleted.

Loading