index.html 212 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="prev" href="../generator/github/">
  7. <link rel="next" href="../controller-options/">
  8. <link rel="icon" href="../../pictures/eso-round-logo.svg">
  9. <meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.22">
  10. <title>API specification - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.732c4fb1.min.css">
  12. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  13. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  14. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  15. <script>__md_scope=new URL("../..",location),__md_hash=e=>[...e].reduce((e,_)=>(e<<5)-e+_.charCodeAt(0),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  16. <script id="__analytics">function __md_analytics(){function n(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],n("js",new Date),n("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",function(){document.forms.search&&document.forms.search.query.addEventListener("blur",function(){this.value&&n("event","search",{search_term:this.value})}),document$.subscribe(function(){var a=document.forms.feedback;if(void 0!==a)for(var e of a.querySelectorAll("[type=submit]"))e.addEventListener("click",function(e){e.preventDefault();var t=document.location.pathname,e=this.getAttribute("data-md-value");n("event","feedback",{page:t,data:e}),a.firstElementChild.disabled=!0;e=a.querySelector(".md-feedback__note [data-md-value='"+e+"']");e&&(e.hidden=!1)}),a.hidden=!1}),location$.subscribe(function(e){n("config","G-QP38TD8K7V",{page_path:e.pathname})})});var e=document.createElement("script");e.async=!0,e.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",e)}</script>
  17. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  18. </head>
  19. <body dir="ltr">
  20. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  21. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  22. <label class="md-overlay" for="__drawer"></label>
  23. <div data-md-component="skip">
  24. </div>
  25. <div data-md-component="announce">
  26. </div>
  27. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  28. <aside class="md-banner md-banner--warning">
  29. <div class="md-banner__inner md-grid md-typeset">
  30. You're not viewing the latest version.
  31. <a href="../../..">
  32. <strong>Click here to go to latest.</strong>
  33. </a>
  34. </div>
  35. <script>var el=document.querySelector("[data-md-component=outdated]"),outdated=__md_get("__outdated",sessionStorage);!0===outdated&&el&&(el.hidden=!1)</script>
  36. </aside>
  37. </div>
  38. <header class="md-header" data-md-component="header">
  39. <nav class="md-header__inner md-grid" aria-label="Header">
  40. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  41. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  42. </a>
  43. <label class="md-header__button md-icon" for="__drawer">
  44. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
  45. </label>
  46. <div class="md-header__title" data-md-component="header-title">
  47. <div class="md-header__ellipsis">
  48. <div class="md-header__topic">
  49. <span class="md-ellipsis">
  50. External Secrets Operator
  51. </span>
  52. </div>
  53. <div class="md-header__topic" data-md-component="header-topic">
  54. <span class="md-ellipsis">
  55. API specification
  56. </span>
  57. </div>
  58. </div>
  59. </div>
  60. <script>var media,input,key,value,palette=__md_get("__palette");if(palette&&palette.color){"(prefers-color-scheme)"===palette.color.media&&(media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']"),palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent"));for([key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  61. <label class="md-header__button md-icon" for="__search">
  62. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  63. </label>
  64. <div class="md-search" data-md-component="search" role="dialog">
  65. <label class="md-search__overlay" for="__search"></label>
  66. <div class="md-search__inner" role="search">
  67. <form class="md-search__form" name="search">
  68. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  69. <label class="md-search__icon md-icon" for="__search">
  70. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  71. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12Z"/></svg>
  72. </label>
  73. <nav class="md-search__options" aria-label="Search">
  74. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  75. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41Z"/></svg>
  76. </button>
  77. </nav>
  78. </form>
  79. <div class="md-search__output">
  80. <div class="md-search__scrollwrap" data-md-scrollfix>
  81. <div class="md-search-result" data-md-component="search-result">
  82. <div class="md-search-result__meta">
  83. Initializing search
  84. </div>
  85. <ol class="md-search-result__list" role="presentation"></ol>
  86. </div>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. <div class="md-header__source">
  92. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  93. <div class="md-source__icon md-icon">
  94. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  95. </div>
  96. <div class="md-source__repository">
  97. External Secrets Operator
  98. </div>
  99. </a>
  100. </div>
  101. </nav>
  102. </header>
  103. <div class="md-container" data-md-component="container">
  104. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  105. <div class="md-grid">
  106. <ul class="md-tabs__list">
  107. <li class="md-tabs__item">
  108. <a href="../.." class="md-tabs__link">
  109. Introduction
  110. </a>
  111. </li>
  112. <li class="md-tabs__item md-tabs__item--active">
  113. <a href="../components/" class="md-tabs__link">
  114. API
  115. </a>
  116. </li>
  117. <li class="md-tabs__item">
  118. <a href="../../guides/introduction/" class="md-tabs__link">
  119. Guides
  120. </a>
  121. </li>
  122. <li class="md-tabs__item">
  123. <a href="../../provider/aws-secrets-manager/" class="md-tabs__link">
  124. Provider
  125. </a>
  126. </li>
  127. <li class="md-tabs__item">
  128. <a href="../../examples/gitops-using-fluxcd/" class="md-tabs__link">
  129. Examples
  130. </a>
  131. </li>
  132. <li class="md-tabs__item">
  133. <a href="../../contributing/devguide/" class="md-tabs__link">
  134. Community
  135. </a>
  136. </li>
  137. <li class="md-tabs__item">
  138. <a href="../../spec/" class="md-tabs__link">
  139. References
  140. </a>
  141. </li>
  142. </ul>
  143. </div>
  144. </nav>
  145. <main class="md-main" data-md-component="main">
  146. <div class="md-main__inner md-grid">
  147. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  148. <div class="md-sidebar__scrollwrap">
  149. <div class="md-sidebar__inner">
  150. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  151. <label class="md-nav__title" for="__drawer">
  152. <a href="../.." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  153. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  154. </a>
  155. External Secrets Operator
  156. </label>
  157. <div class="md-nav__source">
  158. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  159. <div class="md-source__icon md-icon">
  160. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  161. </div>
  162. <div class="md-source__repository">
  163. External Secrets Operator
  164. </div>
  165. </a>
  166. </div>
  167. <ul class="md-nav__list" data-md-scrollfix>
  168. <li class="md-nav__item md-nav__item--nested">
  169. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  170. <div class="md-nav__link md-nav__container">
  171. <a href="../.." class="md-nav__link ">
  172. <span class="md-ellipsis">
  173. Introduction
  174. </span>
  175. </a>
  176. <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
  177. <span class="md-nav__icon md-icon"></span>
  178. </label>
  179. </div>
  180. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  181. <label class="md-nav__title" for="__nav_1">
  182. <span class="md-nav__icon md-icon"></span>
  183. Introduction
  184. </label>
  185. <ul class="md-nav__list" data-md-scrollfix>
  186. <li class="md-nav__item">
  187. <a href="../../introduction/overview/" class="md-nav__link">
  188. <span class="md-ellipsis">
  189. Overview
  190. </span>
  191. </a>
  192. </li>
  193. <li class="md-nav__item">
  194. <a href="../../introduction/getting-started/" class="md-nav__link">
  195. <span class="md-ellipsis">
  196. Getting started
  197. </span>
  198. </a>
  199. </li>
  200. <li class="md-nav__item">
  201. <a href="../../introduction/faq/" class="md-nav__link">
  202. <span class="md-ellipsis">
  203. FAQ
  204. </span>
  205. </a>
  206. </li>
  207. <li class="md-nav__item">
  208. <a href="../../introduction/stability-support/" class="md-nav__link">
  209. <span class="md-ellipsis">
  210. Stability and Support
  211. </span>
  212. </a>
  213. </li>
  214. <li class="md-nav__item">
  215. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  216. <span class="md-ellipsis">
  217. Deprecation Policy
  218. </span>
  219. </a>
  220. </li>
  221. </ul>
  222. </nav>
  223. </li>
  224. <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
  225. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
  226. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="">
  227. <span class="md-ellipsis">
  228. API
  229. </span>
  230. <span class="md-nav__icon md-icon"></span>
  231. </label>
  232. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="true">
  233. <label class="md-nav__title" for="__nav_2">
  234. <span class="md-nav__icon md-icon"></span>
  235. API
  236. </label>
  237. <ul class="md-nav__list" data-md-scrollfix>
  238. <li class="md-nav__item">
  239. <a href="../components/" class="md-nav__link">
  240. <span class="md-ellipsis">
  241. Components
  242. </span>
  243. </a>
  244. </li>
  245. <li class="md-nav__item md-nav__item--nested">
  246. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  247. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  248. <span class="md-ellipsis">
  249. Core Resources
  250. </span>
  251. <span class="md-nav__icon md-icon"></span>
  252. </label>
  253. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  254. <label class="md-nav__title" for="__nav_2_2">
  255. <span class="md-nav__icon md-icon"></span>
  256. Core Resources
  257. </label>
  258. <ul class="md-nav__list" data-md-scrollfix>
  259. <li class="md-nav__item">
  260. <a href="../externalsecret/" class="md-nav__link">
  261. <span class="md-ellipsis">
  262. ExternalSecret
  263. </span>
  264. </a>
  265. </li>
  266. <li class="md-nav__item">
  267. <a href="../secretstore/" class="md-nav__link">
  268. <span class="md-ellipsis">
  269. SecretStore
  270. </span>
  271. </a>
  272. </li>
  273. <li class="md-nav__item">
  274. <a href="../clustersecretstore/" class="md-nav__link">
  275. <span class="md-ellipsis">
  276. ClusterSecretStore
  277. </span>
  278. </a>
  279. </li>
  280. <li class="md-nav__item">
  281. <a href="../clusterexternalsecret/" class="md-nav__link">
  282. <span class="md-ellipsis">
  283. ClusterExternalSecret
  284. </span>
  285. </a>
  286. </li>
  287. <li class="md-nav__item">
  288. <a href="../pushsecret/" class="md-nav__link">
  289. <span class="md-ellipsis">
  290. PushSecret
  291. </span>
  292. </a>
  293. </li>
  294. </ul>
  295. </nav>
  296. </li>
  297. <li class="md-nav__item md-nav__item--nested">
  298. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  299. <div class="md-nav__link md-nav__container">
  300. <a href="../generator/" class="md-nav__link ">
  301. <span class="md-ellipsis">
  302. Generators
  303. </span>
  304. </a>
  305. <label class="md-nav__link " for="__nav_2_3" id="__nav_2_3_label" tabindex="0">
  306. <span class="md-nav__icon md-icon"></span>
  307. </label>
  308. </div>
  309. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  310. <label class="md-nav__title" for="__nav_2_3">
  311. <span class="md-nav__icon md-icon"></span>
  312. Generators
  313. </label>
  314. <ul class="md-nav__list" data-md-scrollfix>
  315. <li class="md-nav__item">
  316. <a href="../generator/acr/" class="md-nav__link">
  317. <span class="md-ellipsis">
  318. Azure Container Registry
  319. </span>
  320. </a>
  321. </li>
  322. <li class="md-nav__item">
  323. <a href="../generator/ecr/" class="md-nav__link">
  324. <span class="md-ellipsis">
  325. AWS Elastic Container Registry
  326. </span>
  327. </a>
  328. </li>
  329. <li class="md-nav__item">
  330. <a href="../generator/gcr/" class="md-nav__link">
  331. <span class="md-ellipsis">
  332. Google Container Registry
  333. </span>
  334. </a>
  335. </li>
  336. <li class="md-nav__item">
  337. <a href="../generator/vault/" class="md-nav__link">
  338. <span class="md-ellipsis">
  339. Vault Dynamic Secret
  340. </span>
  341. </a>
  342. </li>
  343. <li class="md-nav__item">
  344. <a href="../generator/password/" class="md-nav__link">
  345. <span class="md-ellipsis">
  346. Password
  347. </span>
  348. </a>
  349. </li>
  350. <li class="md-nav__item">
  351. <a href="../generator/fake/" class="md-nav__link">
  352. <span class="md-ellipsis">
  353. Fake
  354. </span>
  355. </a>
  356. </li>
  357. <li class="md-nav__item">
  358. <a href="../generator/webhook/" class="md-nav__link">
  359. <span class="md-ellipsis">
  360. Webhook
  361. </span>
  362. </a>
  363. </li>
  364. <li class="md-nav__item">
  365. <a href="../generator/github/" class="md-nav__link">
  366. <span class="md-ellipsis">
  367. Github
  368. </span>
  369. </a>
  370. </li>
  371. </ul>
  372. </nav>
  373. </li>
  374. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  375. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" checked>
  376. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  377. <span class="md-ellipsis">
  378. Reference Docs
  379. </span>
  380. <span class="md-nav__icon md-icon"></span>
  381. </label>
  382. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="true">
  383. <label class="md-nav__title" for="__nav_2_4">
  384. <span class="md-nav__icon md-icon"></span>
  385. Reference Docs
  386. </label>
  387. <ul class="md-nav__list" data-md-scrollfix>
  388. <li class="md-nav__item md-nav__item--active">
  389. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  390. <a href="./" class="md-nav__link md-nav__link--active">
  391. <span class="md-ellipsis">
  392. API specification
  393. </span>
  394. </a>
  395. </li>
  396. <li class="md-nav__item">
  397. <a href="../controller-options/" class="md-nav__link">
  398. <span class="md-ellipsis">
  399. Controller Options
  400. </span>
  401. </a>
  402. </li>
  403. <li class="md-nav__item">
  404. <a href="../metrics/" class="md-nav__link">
  405. <span class="md-ellipsis">
  406. Metrics
  407. </span>
  408. </a>
  409. </li>
  410. </ul>
  411. </nav>
  412. </li>
  413. </ul>
  414. </nav>
  415. </li>
  416. <li class="md-nav__item md-nav__item--nested">
  417. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  418. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  419. <span class="md-ellipsis">
  420. Guides
  421. </span>
  422. <span class="md-nav__icon md-icon"></span>
  423. </label>
  424. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  425. <label class="md-nav__title" for="__nav_3">
  426. <span class="md-nav__icon md-icon"></span>
  427. Guides
  428. </label>
  429. <ul class="md-nav__list" data-md-scrollfix>
  430. <li class="md-nav__item">
  431. <a href="../../guides/introduction/" class="md-nav__link">
  432. <span class="md-ellipsis">
  433. Introduction
  434. </span>
  435. </a>
  436. </li>
  437. <li class="md-nav__item md-nav__item--nested">
  438. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  439. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  440. <span class="md-ellipsis">
  441. External Secrets
  442. </span>
  443. <span class="md-nav__icon md-icon"></span>
  444. </label>
  445. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  446. <label class="md-nav__title" for="__nav_3_2">
  447. <span class="md-nav__icon md-icon"></span>
  448. External Secrets
  449. </label>
  450. <ul class="md-nav__list" data-md-scrollfix>
  451. <li class="md-nav__item">
  452. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  453. <span class="md-ellipsis">
  454. Extract structured data
  455. </span>
  456. </a>
  457. </li>
  458. <li class="md-nav__item">
  459. <a href="../../guides/getallsecrets/" class="md-nav__link">
  460. <span class="md-ellipsis">
  461. Find Secrets by Name or Metadata
  462. </span>
  463. </a>
  464. </li>
  465. <li class="md-nav__item">
  466. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  467. <span class="md-ellipsis">
  468. Rewriting Keys
  469. </span>
  470. </a>
  471. </li>
  472. <li class="md-nav__item md-nav__item--nested">
  473. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  474. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  475. <span class="md-ellipsis">
  476. Advanced Templating
  477. </span>
  478. <span class="md-nav__icon md-icon"></span>
  479. </label>
  480. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  481. <label class="md-nav__title" for="__nav_3_2_4">
  482. <span class="md-nav__icon md-icon"></span>
  483. Advanced Templating
  484. </label>
  485. <ul class="md-nav__list" data-md-scrollfix>
  486. <li class="md-nav__item">
  487. <a href="../../guides/templating/" class="md-nav__link">
  488. <span class="md-ellipsis">
  489. v2
  490. </span>
  491. </a>
  492. </li>
  493. <li class="md-nav__item">
  494. <a href="../../guides/templating-v1/" class="md-nav__link">
  495. <span class="md-ellipsis">
  496. v1
  497. </span>
  498. </a>
  499. </li>
  500. </ul>
  501. </nav>
  502. </li>
  503. <li class="md-nav__item">
  504. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  505. <span class="md-ellipsis">
  506. Kubernetes Secret Types
  507. </span>
  508. </a>
  509. </li>
  510. <li class="md-nav__item">
  511. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  512. <span class="md-ellipsis">
  513. Lifecycle: ownership & deletion
  514. </span>
  515. </a>
  516. </li>
  517. <li class="md-nav__item">
  518. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  519. <span class="md-ellipsis">
  520. Decoding Strategies
  521. </span>
  522. </a>
  523. </li>
  524. <li class="md-nav__item">
  525. <a href="../../guides/controller-class/" class="md-nav__link">
  526. <span class="md-ellipsis">
  527. Controller Classes
  528. </span>
  529. </a>
  530. </li>
  531. </ul>
  532. </nav>
  533. </li>
  534. <li class="md-nav__item">
  535. <a href="../../guides/generator/" class="md-nav__link">
  536. <span class="md-ellipsis">
  537. Generators
  538. </span>
  539. </a>
  540. </li>
  541. <li class="md-nav__item">
  542. <a href="../../guides/pushsecrets/" class="md-nav__link">
  543. <span class="md-ellipsis">
  544. Push Secrets
  545. </span>
  546. </a>
  547. </li>
  548. <li class="md-nav__item md-nav__item--nested">
  549. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_5" >
  550. <label class="md-nav__link" for="__nav_3_5" id="__nav_3_5_label" tabindex="0">
  551. <span class="md-ellipsis">
  552. Operations
  553. </span>
  554. <span class="md-nav__icon md-icon"></span>
  555. </label>
  556. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_5_label" aria-expanded="false">
  557. <label class="md-nav__title" for="__nav_3_5">
  558. <span class="md-nav__icon md-icon"></span>
  559. Operations
  560. </label>
  561. <ul class="md-nav__list" data-md-scrollfix>
  562. <li class="md-nav__item">
  563. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  564. <span class="md-ellipsis">
  565. Multi Tenancy
  566. </span>
  567. </a>
  568. </li>
  569. <li class="md-nav__item">
  570. <a href="../../guides/security-best-practices/" class="md-nav__link">
  571. <span class="md-ellipsis">
  572. Security Best Practices
  573. </span>
  574. </a>
  575. </li>
  576. <li class="md-nav__item">
  577. <a href="../../guides/threat-model/" class="md-nav__link">
  578. <span class="md-ellipsis">
  579. Threat Model
  580. </span>
  581. </a>
  582. </li>
  583. <li class="md-nav__item">
  584. <a href="../../guides/v1beta1/" class="md-nav__link">
  585. <span class="md-ellipsis">
  586. Upgrading to v1beta1
  587. </span>
  588. </a>
  589. </li>
  590. <li class="md-nav__item">
  591. <a href="../../guides/using-latest-image/" class="md-nav__link">
  592. <span class="md-ellipsis">
  593. Using Latest Image
  594. </span>
  595. </a>
  596. </li>
  597. <li class="md-nav__item">
  598. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  599. <span class="md-ellipsis">
  600. Disable Cluster Features
  601. </span>
  602. </a>
  603. </li>
  604. </ul>
  605. </nav>
  606. </li>
  607. </ul>
  608. </nav>
  609. </li>
  610. <li class="md-nav__item md-nav__item--nested">
  611. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  612. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  613. <span class="md-ellipsis">
  614. Provider
  615. </span>
  616. <span class="md-nav__icon md-icon"></span>
  617. </label>
  618. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  619. <label class="md-nav__title" for="__nav_4">
  620. <span class="md-nav__icon md-icon"></span>
  621. Provider
  622. </label>
  623. <ul class="md-nav__list" data-md-scrollfix>
  624. <li class="md-nav__item">
  625. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  626. <span class="md-ellipsis">
  627. AWS Secrets Manager
  628. </span>
  629. </a>
  630. </li>
  631. <li class="md-nav__item">
  632. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  633. <span class="md-ellipsis">
  634. AWS Parameter Store
  635. </span>
  636. </a>
  637. </li>
  638. <li class="md-nav__item">
  639. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  640. <span class="md-ellipsis">
  641. Azure Key Vault
  642. </span>
  643. </a>
  644. </li>
  645. <li class="md-nav__item">
  646. <a href="../../provider/chef/" class="md-nav__link">
  647. <span class="md-ellipsis">
  648. Chef
  649. </span>
  650. </a>
  651. </li>
  652. <li class="md-nav__item">
  653. <a href="../../provider/conjur/" class="md-nav__link">
  654. <span class="md-ellipsis">
  655. CyberArk Conjur
  656. </span>
  657. </a>
  658. </li>
  659. <li class="md-nav__item">
  660. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  661. <span class="md-ellipsis">
  662. Google Cloud Secret Manager
  663. </span>
  664. </a>
  665. </li>
  666. <li class="md-nav__item">
  667. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  668. <span class="md-ellipsis">
  669. HashiCorp Vault
  670. </span>
  671. </a>
  672. </li>
  673. <li class="md-nav__item">
  674. <a href="../../provider/kubernetes/" class="md-nav__link">
  675. <span class="md-ellipsis">
  676. Kubernetes
  677. </span>
  678. </a>
  679. </li>
  680. <li class="md-nav__item">
  681. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  682. <span class="md-ellipsis">
  683. IBM Secrets Manager
  684. </span>
  685. </a>
  686. </li>
  687. <li class="md-nav__item">
  688. <a href="../../provider/akeyless/" class="md-nav__link">
  689. <span class="md-ellipsis">
  690. Akeyless
  691. </span>
  692. </a>
  693. </li>
  694. <li class="md-nav__item">
  695. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  696. <span class="md-ellipsis">
  697. Yandex Certificate Manager
  698. </span>
  699. </a>
  700. </li>
  701. <li class="md-nav__item">
  702. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  703. <span class="md-ellipsis">
  704. Yandex Lockbox
  705. </span>
  706. </a>
  707. </li>
  708. <li class="md-nav__item">
  709. <a href="../../provider/alibaba/" class="md-nav__link">
  710. <span class="md-ellipsis">
  711. Alibaba Cloud
  712. </span>
  713. </a>
  714. </li>
  715. <li class="md-nav__item">
  716. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  717. <span class="md-ellipsis">
  718. GitLab Variables
  719. </span>
  720. </a>
  721. </li>
  722. <li class="md-nav__item">
  723. <a href="../../provider/oracle-vault/" class="md-nav__link">
  724. <span class="md-ellipsis">
  725. Oracle Vault
  726. </span>
  727. </a>
  728. </li>
  729. <li class="md-nav__item">
  730. <a href="../../provider/1password-automation/" class="md-nav__link">
  731. <span class="md-ellipsis">
  732. 1Password Secrets Automation
  733. </span>
  734. </a>
  735. </li>
  736. <li class="md-nav__item">
  737. <a href="../../provider/webhook/" class="md-nav__link">
  738. <span class="md-ellipsis">
  739. Webhook
  740. </span>
  741. </a>
  742. </li>
  743. <li class="md-nav__item">
  744. <a href="../../provider/fake/" class="md-nav__link">
  745. <span class="md-ellipsis">
  746. Fake
  747. </span>
  748. </a>
  749. </li>
  750. <li class="md-nav__item">
  751. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  752. <span class="md-ellipsis">
  753. senhasegura DevOps Secrets Management (DSM)
  754. </span>
  755. </a>
  756. </li>
  757. <li class="md-nav__item">
  758. <a href="../../provider/doppler/" class="md-nav__link">
  759. <span class="md-ellipsis">
  760. Doppler
  761. </span>
  762. </a>
  763. </li>
  764. <li class="md-nav__item">
  765. <a href="../../provider/keeper-security/" class="md-nav__link">
  766. <span class="md-ellipsis">
  767. Keeper Security
  768. </span>
  769. </a>
  770. </li>
  771. <li class="md-nav__item">
  772. <a href="../../provider/cloak/" class="md-nav__link">
  773. <span class="md-ellipsis">
  774. Cloak End 2 End Encrypted Secrets
  775. </span>
  776. </a>
  777. </li>
  778. <li class="md-nav__item">
  779. <a href="../../provider/scaleway/" class="md-nav__link">
  780. <span class="md-ellipsis">
  781. Scaleway
  782. </span>
  783. </a>
  784. </li>
  785. <li class="md-nav__item">
  786. <a href="../../provider/delinea/" class="md-nav__link">
  787. <span class="md-ellipsis">
  788. Delinea
  789. </span>
  790. </a>
  791. </li>
  792. <li class="md-nav__item">
  793. <a href="../../provider/passbolt/" class="md-nav__link">
  794. <span class="md-ellipsis">
  795. Passbolt
  796. </span>
  797. </a>
  798. </li>
  799. <li class="md-nav__item">
  800. <a href="../../provider/pulumi/" class="md-nav__link">
  801. <span class="md-ellipsis">
  802. Pulumi ESC
  803. </span>
  804. </a>
  805. </li>
  806. <li class="md-nav__item">
  807. <a href="../../provider/onboardbase/" class="md-nav__link">
  808. <span class="md-ellipsis">
  809. Onboardbase
  810. </span>
  811. </a>
  812. </li>
  813. <li class="md-nav__item">
  814. <a href="../../provider-passworddepot/" class="md-nav__link">
  815. <span class="md-ellipsis">
  816. Password Depot
  817. </span>
  818. </a>
  819. </li>
  820. <li class="md-nav__item">
  821. <a href="../../provider/fortanix/" class="md-nav__link">
  822. <span class="md-ellipsis">
  823. Fortanix
  824. </span>
  825. </a>
  826. </li>
  827. </ul>
  828. </nav>
  829. </li>
  830. <li class="md-nav__item md-nav__item--nested">
  831. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  832. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  833. <span class="md-ellipsis">
  834. Examples
  835. </span>
  836. <span class="md-nav__icon md-icon"></span>
  837. </label>
  838. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  839. <label class="md-nav__title" for="__nav_5">
  840. <span class="md-nav__icon md-icon"></span>
  841. Examples
  842. </label>
  843. <ul class="md-nav__list" data-md-scrollfix>
  844. <li class="md-nav__item">
  845. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  846. <span class="md-ellipsis">
  847. FluxCD
  848. </span>
  849. </a>
  850. </li>
  851. <li class="md-nav__item">
  852. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  853. <span class="md-ellipsis">
  854. Anchore Engine
  855. </span>
  856. </a>
  857. </li>
  858. <li class="md-nav__item">
  859. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  860. <span class="md-ellipsis">
  861. Jenkins
  862. </span>
  863. </a>
  864. </li>
  865. <li class="md-nav__item">
  866. <a href="../../examples/bitwarden/" class="md-nav__link">
  867. <span class="md-ellipsis">
  868. BitWarden
  869. </span>
  870. </a>
  871. </li>
  872. </ul>
  873. </nav>
  874. </li>
  875. <li class="md-nav__item md-nav__item--nested">
  876. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  877. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  878. <span class="md-ellipsis">
  879. Community
  880. </span>
  881. <span class="md-nav__icon md-icon"></span>
  882. </label>
  883. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  884. <label class="md-nav__title" for="__nav_6">
  885. <span class="md-nav__icon md-icon"></span>
  886. Community
  887. </label>
  888. <ul class="md-nav__list" data-md-scrollfix>
  889. <li class="md-nav__item md-nav__item--nested">
  890. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  891. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  892. <span class="md-ellipsis">
  893. Contributing
  894. </span>
  895. <span class="md-nav__icon md-icon"></span>
  896. </label>
  897. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  898. <label class="md-nav__title" for="__nav_6_1">
  899. <span class="md-nav__icon md-icon"></span>
  900. Contributing
  901. </label>
  902. <ul class="md-nav__list" data-md-scrollfix>
  903. <li class="md-nav__item">
  904. <a href="../../contributing/devguide/" class="md-nav__link">
  905. <span class="md-ellipsis">
  906. Developer guide
  907. </span>
  908. </a>
  909. </li>
  910. <li class="md-nav__item">
  911. <a href="../../contributing/process/" class="md-nav__link">
  912. <span class="md-ellipsis">
  913. Contributing Process
  914. </span>
  915. </a>
  916. </li>
  917. <li class="md-nav__item">
  918. <a href="../../contributing/release/" class="md-nav__link">
  919. <span class="md-ellipsis">
  920. Release Process
  921. </span>
  922. </a>
  923. </li>
  924. <li class="md-nav__item">
  925. <a href="../../contributing/coc/" class="md-nav__link">
  926. <span class="md-ellipsis">
  927. Code of Conduct
  928. </span>
  929. </a>
  930. </li>
  931. <li class="md-nav__item">
  932. <a href="../../contributing/roadmap/" class="md-nav__link">
  933. <span class="md-ellipsis">
  934. Roadmap
  935. </span>
  936. </a>
  937. </li>
  938. </ul>
  939. </nav>
  940. </li>
  941. <li class="md-nav__item md-nav__item--nested">
  942. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  943. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  944. <span class="md-ellipsis">
  945. External Resources
  946. </span>
  947. <span class="md-nav__icon md-icon"></span>
  948. </label>
  949. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  950. <label class="md-nav__title" for="__nav_6_2">
  951. <span class="md-nav__icon md-icon"></span>
  952. External Resources
  953. </label>
  954. <ul class="md-nav__list" data-md-scrollfix>
  955. <li class="md-nav__item">
  956. <a href="../../eso-talks/" class="md-nav__link">
  957. <span class="md-ellipsis">
  958. Talks
  959. </span>
  960. </a>
  961. </li>
  962. <li class="md-nav__item">
  963. <a href="../../eso-demos/" class="md-nav__link">
  964. <span class="md-ellipsis">
  965. Demos
  966. </span>
  967. </a>
  968. </li>
  969. <li class="md-nav__item">
  970. <a href="../../eso-blogs/" class="md-nav__link">
  971. <span class="md-ellipsis">
  972. Blogs
  973. </span>
  974. </a>
  975. </li>
  976. </ul>
  977. </nav>
  978. </li>
  979. </ul>
  980. </nav>
  981. </li>
  982. <li class="md-nav__item md-nav__item--nested">
  983. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_7" >
  984. <label class="md-nav__link" for="__nav_7" id="__nav_7_label" tabindex="0">
  985. <span class="md-ellipsis">
  986. References
  987. </span>
  988. <span class="md-nav__icon md-icon"></span>
  989. </label>
  990. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_7_label" aria-expanded="false">
  991. <label class="md-nav__title" for="__nav_7">
  992. <span class="md-nav__icon md-icon"></span>
  993. References
  994. </label>
  995. <ul class="md-nav__list" data-md-scrollfix>
  996. <li class="md-nav__item">
  997. <a href="../../spec/" class="md-nav__link">
  998. <span class="md-ellipsis">
  999. API specification
  1000. </span>
  1001. </a>
  1002. </li>
  1003. </ul>
  1004. </nav>
  1005. </li>
  1006. </ul>
  1007. </nav>
  1008. </div>
  1009. </div>
  1010. </div>
  1011. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  1012. <div class="md-sidebar__scrollwrap">
  1013. <div class="md-sidebar__inner">
  1014. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  1015. </nav>
  1016. </div>
  1017. </div>
  1018. </div>
  1019. <div class="md-content" data-md-component="content">
  1020. <article class="md-content__inner md-typeset">
  1021. <h1>API specification</h1>
  1022. <p>Packages:</p>
  1023. <ul>
  1024. <li>
  1025. <a href="#external-secrets.io%2fv1beta1">external-secrets.io/v1beta1</a>
  1026. </li>
  1027. </ul>
  1028. <h2 id="external-secrets.io/v1beta1">external-secrets.io/v1beta1</h2>
  1029. <p>
  1030. <p>Package v1beta1 contains resources for external-secrets</p>
  1031. </p>
  1032. <p>Resource Types:</p>
  1033. <ul></ul>
  1034. <h3 id="external-secrets.io/v1beta1.AWSAuth">AWSAuth
  1035. </h3>
  1036. <p>
  1037. (<em>Appears on:</em>
  1038. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  1039. </p>
  1040. <p>
  1041. <p>AWSAuth tells the controller how to do authentication with aws.
  1042. Only one of secretRef or jwt can be specified.
  1043. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  1044. </p>
  1045. <table>
  1046. <thead>
  1047. <tr>
  1048. <th>Field</th>
  1049. <th>Description</th>
  1050. </tr>
  1051. </thead>
  1052. <tbody>
  1053. <tr>
  1054. <td>
  1055. <code>secretRef</code></br>
  1056. <em>
  1057. <a href="#external-secrets.io/v1beta1.AWSAuthSecretRef">
  1058. AWSAuthSecretRef
  1059. </a>
  1060. </em>
  1061. </td>
  1062. <td>
  1063. <em>(Optional)</em>
  1064. </td>
  1065. </tr>
  1066. <tr>
  1067. <td>
  1068. <code>jwt</code></br>
  1069. <em>
  1070. <a href="#external-secrets.io/v1beta1.AWSJWTAuth">
  1071. AWSJWTAuth
  1072. </a>
  1073. </em>
  1074. </td>
  1075. <td>
  1076. <em>(Optional)</em>
  1077. </td>
  1078. </tr>
  1079. </tbody>
  1080. </table>
  1081. <h3 id="external-secrets.io/v1beta1.AWSAuthSecretRef">AWSAuthSecretRef
  1082. </h3>
  1083. <p>
  1084. (<em>Appears on:</em>
  1085. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  1086. </p>
  1087. <p>
  1088. <p>AWSAuthSecretRef holds secret references for AWS credentials
  1089. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  1090. </p>
  1091. <table>
  1092. <thead>
  1093. <tr>
  1094. <th>Field</th>
  1095. <th>Description</th>
  1096. </tr>
  1097. </thead>
  1098. <tbody>
  1099. <tr>
  1100. <td>
  1101. <code>accessKeyIDSecretRef</code></br>
  1102. <em>
  1103. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1104. External Secrets meta/v1.SecretKeySelector
  1105. </a>
  1106. </em>
  1107. </td>
  1108. <td>
  1109. <p>The AccessKeyID is used for authentication</p>
  1110. </td>
  1111. </tr>
  1112. <tr>
  1113. <td>
  1114. <code>secretAccessKeySecretRef</code></br>
  1115. <em>
  1116. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1117. External Secrets meta/v1.SecretKeySelector
  1118. </a>
  1119. </em>
  1120. </td>
  1121. <td>
  1122. <p>The SecretAccessKey is used for authentication</p>
  1123. </td>
  1124. </tr>
  1125. <tr>
  1126. <td>
  1127. <code>sessionTokenSecretRef</code></br>
  1128. <em>
  1129. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1130. External Secrets meta/v1.SecretKeySelector
  1131. </a>
  1132. </em>
  1133. </td>
  1134. <td>
  1135. <p>The SessionToken used for authentication
  1136. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  1137. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  1138. </td>
  1139. </tr>
  1140. </tbody>
  1141. </table>
  1142. <h3 id="external-secrets.io/v1beta1.AWSJWTAuth">AWSJWTAuth
  1143. </h3>
  1144. <p>
  1145. (<em>Appears on:</em>
  1146. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  1147. </p>
  1148. <p>
  1149. <p>Authenticate against AWS using service account tokens.</p>
  1150. </p>
  1151. <table>
  1152. <thead>
  1153. <tr>
  1154. <th>Field</th>
  1155. <th>Description</th>
  1156. </tr>
  1157. </thead>
  1158. <tbody>
  1159. <tr>
  1160. <td>
  1161. <code>serviceAccountRef</code></br>
  1162. <em>
  1163. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1164. External Secrets meta/v1.ServiceAccountSelector
  1165. </a>
  1166. </em>
  1167. </td>
  1168. <td>
  1169. </td>
  1170. </tr>
  1171. </tbody>
  1172. </table>
  1173. <h3 id="external-secrets.io/v1beta1.AWSProvider">AWSProvider
  1174. </h3>
  1175. <p>
  1176. (<em>Appears on:</em>
  1177. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1178. </p>
  1179. <p>
  1180. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  1181. </p>
  1182. <table>
  1183. <thead>
  1184. <tr>
  1185. <th>Field</th>
  1186. <th>Description</th>
  1187. </tr>
  1188. </thead>
  1189. <tbody>
  1190. <tr>
  1191. <td>
  1192. <code>service</code></br>
  1193. <em>
  1194. <a href="#external-secrets.io/v1beta1.AWSServiceType">
  1195. AWSServiceType
  1196. </a>
  1197. </em>
  1198. </td>
  1199. <td>
  1200. <p>Service defines which service should be used to fetch the secrets</p>
  1201. </td>
  1202. </tr>
  1203. <tr>
  1204. <td>
  1205. <code>auth</code></br>
  1206. <em>
  1207. <a href="#external-secrets.io/v1beta1.AWSAuth">
  1208. AWSAuth
  1209. </a>
  1210. </em>
  1211. </td>
  1212. <td>
  1213. <em>(Optional)</em>
  1214. <p>Auth defines the information necessary to authenticate against AWS
  1215. if not set aws sdk will infer credentials from your environment
  1216. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  1217. </td>
  1218. </tr>
  1219. <tr>
  1220. <td>
  1221. <code>role</code></br>
  1222. <em>
  1223. string
  1224. </em>
  1225. </td>
  1226. <td>
  1227. <em>(Optional)</em>
  1228. <p>Role is a Role ARN which the provider will assume</p>
  1229. </td>
  1230. </tr>
  1231. <tr>
  1232. <td>
  1233. <code>region</code></br>
  1234. <em>
  1235. string
  1236. </em>
  1237. </td>
  1238. <td>
  1239. <p>AWS Region to be used for the provider</p>
  1240. </td>
  1241. </tr>
  1242. <tr>
  1243. <td>
  1244. <code>additionalRoles</code></br>
  1245. <em>
  1246. []string
  1247. </em>
  1248. </td>
  1249. <td>
  1250. <em>(Optional)</em>
  1251. <p>AdditionalRoles is a chained list of Role ARNs which the provider will sequentially assume before assuming the Role</p>
  1252. </td>
  1253. </tr>
  1254. <tr>
  1255. <td>
  1256. <code>externalID</code></br>
  1257. <em>
  1258. string
  1259. </em>
  1260. </td>
  1261. <td>
  1262. <p>AWS External ID set on assumed IAM roles</p>
  1263. </td>
  1264. </tr>
  1265. <tr>
  1266. <td>
  1267. <code>sessionTags</code></br>
  1268. <em>
  1269. <a href="#external-secrets.io/v1beta1.*github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1.Tag">
  1270. []*github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1.Tag
  1271. </a>
  1272. </em>
  1273. </td>
  1274. <td>
  1275. <em>(Optional)</em>
  1276. <p>AWS STS assume role session tags</p>
  1277. </td>
  1278. </tr>
  1279. <tr>
  1280. <td>
  1281. <code>secretsManager</code></br>
  1282. <em>
  1283. <a href="#external-secrets.io/v1beta1.SecretsManager">
  1284. SecretsManager
  1285. </a>
  1286. </em>
  1287. </td>
  1288. <td>
  1289. <em>(Optional)</em>
  1290. <p>SecretsManager defines how the provider behaves when interacting with AWS SecretsManager</p>
  1291. </td>
  1292. </tr>
  1293. <tr>
  1294. <td>
  1295. <code>transitiveTagKeys</code></br>
  1296. <em>
  1297. []*string
  1298. </em>
  1299. </td>
  1300. <td>
  1301. <em>(Optional)</em>
  1302. <p>AWS STS assume role transitive session tags. Required when multiple rules are used with the provider</p>
  1303. </td>
  1304. </tr>
  1305. </tbody>
  1306. </table>
  1307. <h3 id="external-secrets.io/v1beta1.AWSServiceType">AWSServiceType
  1308. (<code>string</code> alias)</p></h3>
  1309. <p>
  1310. (<em>Appears on:</em>
  1311. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  1312. </p>
  1313. <p>
  1314. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  1315. </p>
  1316. <table>
  1317. <thead>
  1318. <tr>
  1319. <th>Value</th>
  1320. <th>Description</th>
  1321. </tr>
  1322. </thead>
  1323. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  1324. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore service.
  1325. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  1326. </td>
  1327. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  1328. <td><p>AWSServiceSecretsManager is the AWS SecretsManager service.
  1329. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  1330. </td>
  1331. </tr></tbody>
  1332. </table>
  1333. <h3 id="external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth
  1334. </h3>
  1335. <p>
  1336. (<em>Appears on:</em>
  1337. <a href="#external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider</a>)
  1338. </p>
  1339. <p>
  1340. </p>
  1341. <table>
  1342. <thead>
  1343. <tr>
  1344. <th>Field</th>
  1345. <th>Description</th>
  1346. </tr>
  1347. </thead>
  1348. <tbody>
  1349. <tr>
  1350. <td>
  1351. <code>secretRef</code></br>
  1352. <em>
  1353. <a href="#external-secrets.io/v1beta1.AkeylessAuthSecretRef">
  1354. AkeylessAuthSecretRef
  1355. </a>
  1356. </em>
  1357. </td>
  1358. <td>
  1359. <em>(Optional)</em>
  1360. <p>Reference to a Secret that contains the details
  1361. to authenticate with Akeyless.</p>
  1362. </td>
  1363. </tr>
  1364. <tr>
  1365. <td>
  1366. <code>kubernetesAuth</code></br>
  1367. <em>
  1368. <a href="#external-secrets.io/v1beta1.AkeylessKubernetesAuth">
  1369. AkeylessKubernetesAuth
  1370. </a>
  1371. </em>
  1372. </td>
  1373. <td>
  1374. <em>(Optional)</em>
  1375. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1376. token stored in the named Secret resource.</p>
  1377. </td>
  1378. </tr>
  1379. </tbody>
  1380. </table>
  1381. <h3 id="external-secrets.io/v1beta1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1382. </h3>
  1383. <p>
  1384. (<em>Appears on:</em>
  1385. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1386. </p>
  1387. <p>
  1388. <p>AkeylessAuthSecretRef
  1389. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1390. </p>
  1391. <table>
  1392. <thead>
  1393. <tr>
  1394. <th>Field</th>
  1395. <th>Description</th>
  1396. </tr>
  1397. </thead>
  1398. <tbody>
  1399. <tr>
  1400. <td>
  1401. <code>accessID</code></br>
  1402. <em>
  1403. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1404. External Secrets meta/v1.SecretKeySelector
  1405. </a>
  1406. </em>
  1407. </td>
  1408. <td>
  1409. <p>The SecretAccessID is used for authentication</p>
  1410. </td>
  1411. </tr>
  1412. <tr>
  1413. <td>
  1414. <code>accessType</code></br>
  1415. <em>
  1416. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1417. External Secrets meta/v1.SecretKeySelector
  1418. </a>
  1419. </em>
  1420. </td>
  1421. <td>
  1422. </td>
  1423. </tr>
  1424. <tr>
  1425. <td>
  1426. <code>accessTypeParam</code></br>
  1427. <em>
  1428. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1429. External Secrets meta/v1.SecretKeySelector
  1430. </a>
  1431. </em>
  1432. </td>
  1433. <td>
  1434. </td>
  1435. </tr>
  1436. </tbody>
  1437. </table>
  1438. <h3 id="external-secrets.io/v1beta1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1439. </h3>
  1440. <p>
  1441. (<em>Appears on:</em>
  1442. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1443. </p>
  1444. <p>
  1445. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1446. </p>
  1447. <table>
  1448. <thead>
  1449. <tr>
  1450. <th>Field</th>
  1451. <th>Description</th>
  1452. </tr>
  1453. </thead>
  1454. <tbody>
  1455. <tr>
  1456. <td>
  1457. <code>accessID</code></br>
  1458. <em>
  1459. string
  1460. </em>
  1461. </td>
  1462. <td>
  1463. <p>the Akeyless Kubernetes auth-method access-id</p>
  1464. </td>
  1465. </tr>
  1466. <tr>
  1467. <td>
  1468. <code>k8sConfName</code></br>
  1469. <em>
  1470. string
  1471. </em>
  1472. </td>
  1473. <td>
  1474. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1475. </td>
  1476. </tr>
  1477. <tr>
  1478. <td>
  1479. <code>serviceAccountRef</code></br>
  1480. <em>
  1481. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1482. External Secrets meta/v1.ServiceAccountSelector
  1483. </a>
  1484. </em>
  1485. </td>
  1486. <td>
  1487. <em>(Optional)</em>
  1488. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1489. If the service account is specified, the service account secret token JWT will be used
  1490. for authenticating with Akeyless. If the service account selector is not supplied,
  1491. the secretRef will be used instead.</p>
  1492. </td>
  1493. </tr>
  1494. <tr>
  1495. <td>
  1496. <code>secretRef</code></br>
  1497. <em>
  1498. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1499. External Secrets meta/v1.SecretKeySelector
  1500. </a>
  1501. </em>
  1502. </td>
  1503. <td>
  1504. <em>(Optional)</em>
  1505. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1506. for authenticating with Akeyless. If a name is specified without a key,
  1507. <code>token</code> is the default. If one is not specified, the one bound to
  1508. the controller will be used.</p>
  1509. </td>
  1510. </tr>
  1511. </tbody>
  1512. </table>
  1513. <h3 id="external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider
  1514. </h3>
  1515. <p>
  1516. (<em>Appears on:</em>
  1517. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1518. </p>
  1519. <p>
  1520. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1521. </p>
  1522. <table>
  1523. <thead>
  1524. <tr>
  1525. <th>Field</th>
  1526. <th>Description</th>
  1527. </tr>
  1528. </thead>
  1529. <tbody>
  1530. <tr>
  1531. <td>
  1532. <code>akeylessGWApiURL</code></br>
  1533. <em>
  1534. string
  1535. </em>
  1536. </td>
  1537. <td>
  1538. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1539. </td>
  1540. </tr>
  1541. <tr>
  1542. <td>
  1543. <code>authSecretRef</code></br>
  1544. <em>
  1545. <a href="#external-secrets.io/v1beta1.AkeylessAuth">
  1546. AkeylessAuth
  1547. </a>
  1548. </em>
  1549. </td>
  1550. <td>
  1551. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1552. </td>
  1553. </tr>
  1554. <tr>
  1555. <td>
  1556. <code>caBundle</code></br>
  1557. <em>
  1558. []byte
  1559. </em>
  1560. </td>
  1561. <td>
  1562. <em>(Optional)</em>
  1563. <p>PEM/base64 encoded CA bundle used to validate Akeyless Gateway certificate. Only used
  1564. if the AkeylessGWApiURL URL is using HTTPS protocol. If not set the system root certificates
  1565. are used to validate the TLS connection.</p>
  1566. </td>
  1567. </tr>
  1568. <tr>
  1569. <td>
  1570. <code>caProvider</code></br>
  1571. <em>
  1572. <a href="#external-secrets.io/v1beta1.CAProvider">
  1573. CAProvider
  1574. </a>
  1575. </em>
  1576. </td>
  1577. <td>
  1578. <em>(Optional)</em>
  1579. <p>The provider for the CA bundle to use to validate Akeyless Gateway certificate.</p>
  1580. </td>
  1581. </tr>
  1582. </tbody>
  1583. </table>
  1584. <h3 id="external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth
  1585. </h3>
  1586. <p>
  1587. (<em>Appears on:</em>
  1588. <a href="#external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider</a>)
  1589. </p>
  1590. <p>
  1591. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1592. </p>
  1593. <table>
  1594. <thead>
  1595. <tr>
  1596. <th>Field</th>
  1597. <th>Description</th>
  1598. </tr>
  1599. </thead>
  1600. <tbody>
  1601. <tr>
  1602. <td>
  1603. <code>secretRef</code></br>
  1604. <em>
  1605. <a href="#external-secrets.io/v1beta1.AlibabaAuthSecretRef">
  1606. AlibabaAuthSecretRef
  1607. </a>
  1608. </em>
  1609. </td>
  1610. <td>
  1611. <em>(Optional)</em>
  1612. </td>
  1613. </tr>
  1614. <tr>
  1615. <td>
  1616. <code>rrsa</code></br>
  1617. <em>
  1618. <a href="#external-secrets.io/v1beta1.AlibabaRRSAAuth">
  1619. AlibabaRRSAAuth
  1620. </a>
  1621. </em>
  1622. </td>
  1623. <td>
  1624. <em>(Optional)</em>
  1625. </td>
  1626. </tr>
  1627. </tbody>
  1628. </table>
  1629. <h3 id="external-secrets.io/v1beta1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1630. </h3>
  1631. <p>
  1632. (<em>Appears on:</em>
  1633. <a href="#external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth</a>)
  1634. </p>
  1635. <p>
  1636. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1637. </p>
  1638. <table>
  1639. <thead>
  1640. <tr>
  1641. <th>Field</th>
  1642. <th>Description</th>
  1643. </tr>
  1644. </thead>
  1645. <tbody>
  1646. <tr>
  1647. <td>
  1648. <code>accessKeyIDSecretRef</code></br>
  1649. <em>
  1650. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1651. External Secrets meta/v1.SecretKeySelector
  1652. </a>
  1653. </em>
  1654. </td>
  1655. <td>
  1656. <p>The AccessKeyID is used for authentication</p>
  1657. </td>
  1658. </tr>
  1659. <tr>
  1660. <td>
  1661. <code>accessKeySecretSecretRef</code></br>
  1662. <em>
  1663. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1664. External Secrets meta/v1.SecretKeySelector
  1665. </a>
  1666. </em>
  1667. </td>
  1668. <td>
  1669. <p>The AccessKeySecret is used for authentication</p>
  1670. </td>
  1671. </tr>
  1672. </tbody>
  1673. </table>
  1674. <h3 id="external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider
  1675. </h3>
  1676. <p>
  1677. (<em>Appears on:</em>
  1678. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1679. </p>
  1680. <p>
  1681. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1682. </p>
  1683. <table>
  1684. <thead>
  1685. <tr>
  1686. <th>Field</th>
  1687. <th>Description</th>
  1688. </tr>
  1689. </thead>
  1690. <tbody>
  1691. <tr>
  1692. <td>
  1693. <code>auth</code></br>
  1694. <em>
  1695. <a href="#external-secrets.io/v1beta1.AlibabaAuth">
  1696. AlibabaAuth
  1697. </a>
  1698. </em>
  1699. </td>
  1700. <td>
  1701. </td>
  1702. </tr>
  1703. <tr>
  1704. <td>
  1705. <code>regionID</code></br>
  1706. <em>
  1707. string
  1708. </em>
  1709. </td>
  1710. <td>
  1711. <p>Alibaba Region to be used for the provider</p>
  1712. </td>
  1713. </tr>
  1714. </tbody>
  1715. </table>
  1716. <h3 id="external-secrets.io/v1beta1.AlibabaRRSAAuth">AlibabaRRSAAuth
  1717. </h3>
  1718. <p>
  1719. (<em>Appears on:</em>
  1720. <a href="#external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth</a>)
  1721. </p>
  1722. <p>
  1723. <p>Authenticate against Alibaba using RRSA.</p>
  1724. </p>
  1725. <table>
  1726. <thead>
  1727. <tr>
  1728. <th>Field</th>
  1729. <th>Description</th>
  1730. </tr>
  1731. </thead>
  1732. <tbody>
  1733. <tr>
  1734. <td>
  1735. <code>oidcProviderArn</code></br>
  1736. <em>
  1737. string
  1738. </em>
  1739. </td>
  1740. <td>
  1741. </td>
  1742. </tr>
  1743. <tr>
  1744. <td>
  1745. <code>oidcTokenFilePath</code></br>
  1746. <em>
  1747. string
  1748. </em>
  1749. </td>
  1750. <td>
  1751. </td>
  1752. </tr>
  1753. <tr>
  1754. <td>
  1755. <code>roleArn</code></br>
  1756. <em>
  1757. string
  1758. </em>
  1759. </td>
  1760. <td>
  1761. </td>
  1762. </tr>
  1763. <tr>
  1764. <td>
  1765. <code>sessionName</code></br>
  1766. <em>
  1767. string
  1768. </em>
  1769. </td>
  1770. <td>
  1771. </td>
  1772. </tr>
  1773. </tbody>
  1774. </table>
  1775. <h3 id="external-secrets.io/v1beta1.AzureAuthType">AzureAuthType
  1776. (<code>string</code> alias)</p></h3>
  1777. <p>
  1778. (<em>Appears on:</em>
  1779. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1780. </p>
  1781. <p>
  1782. <p>AuthType describes how to authenticate to the Azure Keyvault
  1783. Only one of the following auth types may be specified.
  1784. If none of the following auth type is specified, the default one
  1785. is ServicePrincipal.</p>
  1786. </p>
  1787. <table>
  1788. <thead>
  1789. <tr>
  1790. <th>Value</th>
  1791. <th>Description</th>
  1792. </tr>
  1793. </thead>
  1794. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  1795. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  1796. </td>
  1797. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  1798. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  1799. </td>
  1800. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  1801. <td><p>Using Workload Identity service accounts to authenticate.</p>
  1802. </td>
  1803. </tr></tbody>
  1804. </table>
  1805. <h3 id="external-secrets.io/v1beta1.AzureEnvironmentType">AzureEnvironmentType
  1806. (<code>string</code> alias)</p></h3>
  1807. <p>
  1808. (<em>Appears on:</em>
  1809. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1810. </p>
  1811. <p>
  1812. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  1813. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1814. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1815. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1816. </p>
  1817. <table>
  1818. <thead>
  1819. <tr>
  1820. <th>Value</th>
  1821. <th>Description</th>
  1822. </tr>
  1823. </thead>
  1824. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  1825. <td></td>
  1826. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  1827. <td></td>
  1828. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  1829. <td></td>
  1830. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  1831. <td></td>
  1832. </tr></tbody>
  1833. </table>
  1834. <h3 id="external-secrets.io/v1beta1.AzureKVAuth">AzureKVAuth
  1835. </h3>
  1836. <p>
  1837. (<em>Appears on:</em>
  1838. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1839. </p>
  1840. <p>
  1841. <p>Configuration used to authenticate with Azure.</p>
  1842. </p>
  1843. <table>
  1844. <thead>
  1845. <tr>
  1846. <th>Field</th>
  1847. <th>Description</th>
  1848. </tr>
  1849. </thead>
  1850. <tbody>
  1851. <tr>
  1852. <td>
  1853. <code>clientId</code></br>
  1854. <em>
  1855. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1856. External Secrets meta/v1.SecretKeySelector
  1857. </a>
  1858. </em>
  1859. </td>
  1860. <td>
  1861. <em>(Optional)</em>
  1862. <p>The Azure clientId of the service principle or managed identity used for authentication.</p>
  1863. </td>
  1864. </tr>
  1865. <tr>
  1866. <td>
  1867. <code>tenantId</code></br>
  1868. <em>
  1869. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1870. External Secrets meta/v1.SecretKeySelector
  1871. </a>
  1872. </em>
  1873. </td>
  1874. <td>
  1875. <em>(Optional)</em>
  1876. <p>The Azure tenantId of the managed identity used for authentication.</p>
  1877. </td>
  1878. </tr>
  1879. <tr>
  1880. <td>
  1881. <code>clientSecret</code></br>
  1882. <em>
  1883. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1884. External Secrets meta/v1.SecretKeySelector
  1885. </a>
  1886. </em>
  1887. </td>
  1888. <td>
  1889. <em>(Optional)</em>
  1890. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  1891. </td>
  1892. </tr>
  1893. <tr>
  1894. <td>
  1895. <code>clientCertificate</code></br>
  1896. <em>
  1897. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1898. External Secrets meta/v1.SecretKeySelector
  1899. </a>
  1900. </em>
  1901. </td>
  1902. <td>
  1903. <em>(Optional)</em>
  1904. <p>The Azure ClientCertificate of the service principle used for authentication.</p>
  1905. </td>
  1906. </tr>
  1907. </tbody>
  1908. </table>
  1909. <h3 id="external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider
  1910. </h3>
  1911. <p>
  1912. (<em>Appears on:</em>
  1913. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1914. </p>
  1915. <p>
  1916. <p>Configures an store to sync secrets using Azure KV.</p>
  1917. </p>
  1918. <table>
  1919. <thead>
  1920. <tr>
  1921. <th>Field</th>
  1922. <th>Description</th>
  1923. </tr>
  1924. </thead>
  1925. <tbody>
  1926. <tr>
  1927. <td>
  1928. <code>authType</code></br>
  1929. <em>
  1930. <a href="#external-secrets.io/v1beta1.AzureAuthType">
  1931. AzureAuthType
  1932. </a>
  1933. </em>
  1934. </td>
  1935. <td>
  1936. <em>(Optional)</em>
  1937. <p>Auth type defines how to authenticate to the keyvault service.
  1938. Valid values are:
  1939. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  1940. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  1941. </td>
  1942. </tr>
  1943. <tr>
  1944. <td>
  1945. <code>vaultUrl</code></br>
  1946. <em>
  1947. string
  1948. </em>
  1949. </td>
  1950. <td>
  1951. <p>Vault Url from which the secrets to be fetched from.</p>
  1952. </td>
  1953. </tr>
  1954. <tr>
  1955. <td>
  1956. <code>tenantId</code></br>
  1957. <em>
  1958. string
  1959. </em>
  1960. </td>
  1961. <td>
  1962. <em>(Optional)</em>
  1963. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  1964. </td>
  1965. </tr>
  1966. <tr>
  1967. <td>
  1968. <code>environmentType</code></br>
  1969. <em>
  1970. <a href="#external-secrets.io/v1beta1.AzureEnvironmentType">
  1971. AzureEnvironmentType
  1972. </a>
  1973. </em>
  1974. </td>
  1975. <td>
  1976. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  1977. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1978. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1979. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1980. </td>
  1981. </tr>
  1982. <tr>
  1983. <td>
  1984. <code>authSecretRef</code></br>
  1985. <em>
  1986. <a href="#external-secrets.io/v1beta1.AzureKVAuth">
  1987. AzureKVAuth
  1988. </a>
  1989. </em>
  1990. </td>
  1991. <td>
  1992. <em>(Optional)</em>
  1993. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  1994. </td>
  1995. </tr>
  1996. <tr>
  1997. <td>
  1998. <code>serviceAccountRef</code></br>
  1999. <em>
  2000. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  2001. External Secrets meta/v1.ServiceAccountSelector
  2002. </a>
  2003. </em>
  2004. </td>
  2005. <td>
  2006. <em>(Optional)</em>
  2007. <p>ServiceAccountRef specified the service account
  2008. that should be used when authenticating with WorkloadIdentity.</p>
  2009. </td>
  2010. </tr>
  2011. <tr>
  2012. <td>
  2013. <code>identityId</code></br>
  2014. <em>
  2015. string
  2016. </em>
  2017. </td>
  2018. <td>
  2019. <em>(Optional)</em>
  2020. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  2021. </td>
  2022. </tr>
  2023. </tbody>
  2024. </table>
  2025. <h3 id="external-secrets.io/v1beta1.CAProvider">CAProvider
  2026. </h3>
  2027. <p>
  2028. (<em>Appears on:</em>
  2029. <a href="#external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider</a>,
  2030. <a href="#external-secrets.io/v1beta1.ConjurProvider">ConjurProvider</a>,
  2031. <a href="#external-secrets.io/v1beta1.KubernetesServer">KubernetesServer</a>,
  2032. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  2033. </p>
  2034. <p>
  2035. <p>Used to provide custom certificate authority (CA) certificates
  2036. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  2037. that contains a PEM-encoded certificate.</p>
  2038. </p>
  2039. <table>
  2040. <thead>
  2041. <tr>
  2042. <th>Field</th>
  2043. <th>Description</th>
  2044. </tr>
  2045. </thead>
  2046. <tbody>
  2047. <tr>
  2048. <td>
  2049. <code>type</code></br>
  2050. <em>
  2051. <a href="#external-secrets.io/v1beta1.CAProviderType">
  2052. CAProviderType
  2053. </a>
  2054. </em>
  2055. </td>
  2056. <td>
  2057. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  2058. </td>
  2059. </tr>
  2060. <tr>
  2061. <td>
  2062. <code>name</code></br>
  2063. <em>
  2064. string
  2065. </em>
  2066. </td>
  2067. <td>
  2068. <p>The name of the object located at the provider type.</p>
  2069. </td>
  2070. </tr>
  2071. <tr>
  2072. <td>
  2073. <code>key</code></br>
  2074. <em>
  2075. string
  2076. </em>
  2077. </td>
  2078. <td>
  2079. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  2080. </td>
  2081. </tr>
  2082. <tr>
  2083. <td>
  2084. <code>namespace</code></br>
  2085. <em>
  2086. string
  2087. </em>
  2088. </td>
  2089. <td>
  2090. <em>(Optional)</em>
  2091. <p>The namespace the Provider type is in.
  2092. Can only be defined when used in a ClusterSecretStore.</p>
  2093. </td>
  2094. </tr>
  2095. </tbody>
  2096. </table>
  2097. <h3 id="external-secrets.io/v1beta1.CAProviderType">CAProviderType
  2098. (<code>string</code> alias)</p></h3>
  2099. <p>
  2100. (<em>Appears on:</em>
  2101. <a href="#external-secrets.io/v1beta1.CAProvider">CAProvider</a>)
  2102. </p>
  2103. <p>
  2104. </p>
  2105. <table>
  2106. <thead>
  2107. <tr>
  2108. <th>Value</th>
  2109. <th>Description</th>
  2110. </tr>
  2111. </thead>
  2112. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  2113. <td></td>
  2114. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  2115. <td></td>
  2116. </tr></tbody>
  2117. </table>
  2118. <h3 id="external-secrets.io/v1beta1.CertAuth">CertAuth
  2119. </h3>
  2120. <p>
  2121. (<em>Appears on:</em>
  2122. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  2123. </p>
  2124. <p>
  2125. </p>
  2126. <table>
  2127. <thead>
  2128. <tr>
  2129. <th>Field</th>
  2130. <th>Description</th>
  2131. </tr>
  2132. </thead>
  2133. <tbody>
  2134. <tr>
  2135. <td>
  2136. <code>clientCert</code></br>
  2137. <em>
  2138. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2139. External Secrets meta/v1.SecretKeySelector
  2140. </a>
  2141. </em>
  2142. </td>
  2143. <td>
  2144. </td>
  2145. </tr>
  2146. <tr>
  2147. <td>
  2148. <code>clientKey</code></br>
  2149. <em>
  2150. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2151. External Secrets meta/v1.SecretKeySelector
  2152. </a>
  2153. </em>
  2154. </td>
  2155. <td>
  2156. </td>
  2157. </tr>
  2158. </tbody>
  2159. </table>
  2160. <h3 id="external-secrets.io/v1beta1.ChefAuth">ChefAuth
  2161. </h3>
  2162. <p>
  2163. (<em>Appears on:</em>
  2164. <a href="#external-secrets.io/v1beta1.ChefProvider">ChefProvider</a>)
  2165. </p>
  2166. <p>
  2167. <p>ChefAuth contains a secretRef for credentials.</p>
  2168. </p>
  2169. <table>
  2170. <thead>
  2171. <tr>
  2172. <th>Field</th>
  2173. <th>Description</th>
  2174. </tr>
  2175. </thead>
  2176. <tbody>
  2177. <tr>
  2178. <td>
  2179. <code>secretRef</code></br>
  2180. <em>
  2181. <a href="#external-secrets.io/v1beta1.ChefAuthSecretRef">
  2182. ChefAuthSecretRef
  2183. </a>
  2184. </em>
  2185. </td>
  2186. <td>
  2187. </td>
  2188. </tr>
  2189. </tbody>
  2190. </table>
  2191. <h3 id="external-secrets.io/v1beta1.ChefAuthSecretRef">ChefAuthSecretRef
  2192. </h3>
  2193. <p>
  2194. (<em>Appears on:</em>
  2195. <a href="#external-secrets.io/v1beta1.ChefAuth">ChefAuth</a>)
  2196. </p>
  2197. <p>
  2198. <p>ChefAuthSecretRef holds secret references for chef server login credentials.</p>
  2199. </p>
  2200. <table>
  2201. <thead>
  2202. <tr>
  2203. <th>Field</th>
  2204. <th>Description</th>
  2205. </tr>
  2206. </thead>
  2207. <tbody>
  2208. <tr>
  2209. <td>
  2210. <code>privateKeySecretRef</code></br>
  2211. <em>
  2212. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2213. External Secrets meta/v1.SecretKeySelector
  2214. </a>
  2215. </em>
  2216. </td>
  2217. <td>
  2218. <p>SecretKey is the Signing Key in PEM format, used for authentication.</p>
  2219. </td>
  2220. </tr>
  2221. </tbody>
  2222. </table>
  2223. <h3 id="external-secrets.io/v1beta1.ChefProvider">ChefProvider
  2224. </h3>
  2225. <p>
  2226. (<em>Appears on:</em>
  2227. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  2228. </p>
  2229. <p>
  2230. <p>ChefProvider configures a store to sync secrets using basic chef server connection credentials.</p>
  2231. </p>
  2232. <table>
  2233. <thead>
  2234. <tr>
  2235. <th>Field</th>
  2236. <th>Description</th>
  2237. </tr>
  2238. </thead>
  2239. <tbody>
  2240. <tr>
  2241. <td>
  2242. <code>auth</code></br>
  2243. <em>
  2244. <a href="#external-secrets.io/v1beta1.ChefAuth">
  2245. ChefAuth
  2246. </a>
  2247. </em>
  2248. </td>
  2249. <td>
  2250. <p>Auth defines the information necessary to authenticate against chef Server</p>
  2251. </td>
  2252. </tr>
  2253. <tr>
  2254. <td>
  2255. <code>username</code></br>
  2256. <em>
  2257. string
  2258. </em>
  2259. </td>
  2260. <td>
  2261. <p>UserName should be the user ID on the chef server</p>
  2262. </td>
  2263. </tr>
  2264. <tr>
  2265. <td>
  2266. <code>serverUrl</code></br>
  2267. <em>
  2268. string
  2269. </em>
  2270. </td>
  2271. <td>
  2272. <p>ServerURL is the chef server URL used to connect to. If using orgs you should include your org in the url and terminate the url with a &ldquo;/&rdquo;</p>
  2273. </td>
  2274. </tr>
  2275. </tbody>
  2276. </table>
  2277. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret
  2278. </h3>
  2279. <p>
  2280. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  2281. </p>
  2282. <table>
  2283. <thead>
  2284. <tr>
  2285. <th>Field</th>
  2286. <th>Description</th>
  2287. </tr>
  2288. </thead>
  2289. <tbody>
  2290. <tr>
  2291. <td>
  2292. <code>metadata</code></br>
  2293. <em>
  2294. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  2295. Kubernetes meta/v1.ObjectMeta
  2296. </a>
  2297. </em>
  2298. </td>
  2299. <td>
  2300. Refer to the Kubernetes API documentation for the fields of the
  2301. <code>metadata</code> field.
  2302. </td>
  2303. </tr>
  2304. <tr>
  2305. <td>
  2306. <code>spec</code></br>
  2307. <em>
  2308. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">
  2309. ClusterExternalSecretSpec
  2310. </a>
  2311. </em>
  2312. </td>
  2313. <td>
  2314. <br/>
  2315. <br/>
  2316. <table>
  2317. <tr>
  2318. <td>
  2319. <code>externalSecretSpec</code></br>
  2320. <em>
  2321. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  2322. ExternalSecretSpec
  2323. </a>
  2324. </em>
  2325. </td>
  2326. <td>
  2327. <p>The spec for the ExternalSecrets to be created</p>
  2328. </td>
  2329. </tr>
  2330. <tr>
  2331. <td>
  2332. <code>externalSecretName</code></br>
  2333. <em>
  2334. string
  2335. </em>
  2336. </td>
  2337. <td>
  2338. <em>(Optional)</em>
  2339. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  2340. </td>
  2341. </tr>
  2342. <tr>
  2343. <td>
  2344. <code>externalSecretMetadata</code></br>
  2345. <em>
  2346. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadata">
  2347. ExternalSecretMetadata
  2348. </a>
  2349. </em>
  2350. </td>
  2351. <td>
  2352. <em>(Optional)</em>
  2353. <p>The metadata of the external secrets to be created</p>
  2354. </td>
  2355. </tr>
  2356. <tr>
  2357. <td>
  2358. <code>namespaceSelector</code></br>
  2359. <em>
  2360. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  2361. Kubernetes meta/v1.LabelSelector
  2362. </a>
  2363. </em>
  2364. </td>
  2365. <td>
  2366. <em>(Optional)</em>
  2367. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  2368. Deprecated: Use NamespaceSelectors instead.</p>
  2369. </td>
  2370. </tr>
  2371. <tr>
  2372. <td>
  2373. <code>namespaceSelectors</code></br>
  2374. <em>
  2375. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  2376. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  2377. </a>
  2378. </em>
  2379. </td>
  2380. <td>
  2381. <em>(Optional)</em>
  2382. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  2383. </td>
  2384. </tr>
  2385. <tr>
  2386. <td>
  2387. <code>namespaces</code></br>
  2388. <em>
  2389. []string
  2390. </em>
  2391. </td>
  2392. <td>
  2393. <em>(Optional)</em>
  2394. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.</p>
  2395. </td>
  2396. </tr>
  2397. <tr>
  2398. <td>
  2399. <code>refreshTime</code></br>
  2400. <em>
  2401. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  2402. Kubernetes meta/v1.Duration
  2403. </a>
  2404. </em>
  2405. </td>
  2406. <td>
  2407. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  2408. </td>
  2409. </tr>
  2410. </table>
  2411. </td>
  2412. </tr>
  2413. <tr>
  2414. <td>
  2415. <code>status</code></br>
  2416. <em>
  2417. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">
  2418. ClusterExternalSecretStatus
  2419. </a>
  2420. </em>
  2421. </td>
  2422. <td>
  2423. </td>
  2424. </tr>
  2425. </tbody>
  2426. </table>
  2427. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  2428. (<code>string</code> alias)</p></h3>
  2429. <p>
  2430. (<em>Appears on:</em>
  2431. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  2432. </p>
  2433. <p>
  2434. </p>
  2435. <table>
  2436. <thead>
  2437. <tr>
  2438. <th>Value</th>
  2439. <th>Description</th>
  2440. </tr>
  2441. </thead>
  2442. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  2443. <td></td>
  2444. </tr></tbody>
  2445. </table>
  2446. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  2447. </h3>
  2448. <p>
  2449. (<em>Appears on:</em>
  2450. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  2451. </p>
  2452. <p>
  2453. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  2454. </p>
  2455. <table>
  2456. <thead>
  2457. <tr>
  2458. <th>Field</th>
  2459. <th>Description</th>
  2460. </tr>
  2461. </thead>
  2462. <tbody>
  2463. <tr>
  2464. <td>
  2465. <code>namespace</code></br>
  2466. <em>
  2467. string
  2468. </em>
  2469. </td>
  2470. <td>
  2471. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  2472. </td>
  2473. </tr>
  2474. <tr>
  2475. <td>
  2476. <code>reason</code></br>
  2477. <em>
  2478. string
  2479. </em>
  2480. </td>
  2481. <td>
  2482. <em>(Optional)</em>
  2483. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  2484. </td>
  2485. </tr>
  2486. </tbody>
  2487. </table>
  2488. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  2489. </h3>
  2490. <p>
  2491. (<em>Appears on:</em>
  2492. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  2493. </p>
  2494. <p>
  2495. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  2496. </p>
  2497. <table>
  2498. <thead>
  2499. <tr>
  2500. <th>Field</th>
  2501. <th>Description</th>
  2502. </tr>
  2503. </thead>
  2504. <tbody>
  2505. <tr>
  2506. <td>
  2507. <code>externalSecretSpec</code></br>
  2508. <em>
  2509. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  2510. ExternalSecretSpec
  2511. </a>
  2512. </em>
  2513. </td>
  2514. <td>
  2515. <p>The spec for the ExternalSecrets to be created</p>
  2516. </td>
  2517. </tr>
  2518. <tr>
  2519. <td>
  2520. <code>externalSecretName</code></br>
  2521. <em>
  2522. string
  2523. </em>
  2524. </td>
  2525. <td>
  2526. <em>(Optional)</em>
  2527. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  2528. </td>
  2529. </tr>
  2530. <tr>
  2531. <td>
  2532. <code>externalSecretMetadata</code></br>
  2533. <em>
  2534. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadata">
  2535. ExternalSecretMetadata
  2536. </a>
  2537. </em>
  2538. </td>
  2539. <td>
  2540. <em>(Optional)</em>
  2541. <p>The metadata of the external secrets to be created</p>
  2542. </td>
  2543. </tr>
  2544. <tr>
  2545. <td>
  2546. <code>namespaceSelector</code></br>
  2547. <em>
  2548. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  2549. Kubernetes meta/v1.LabelSelector
  2550. </a>
  2551. </em>
  2552. </td>
  2553. <td>
  2554. <em>(Optional)</em>
  2555. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  2556. Deprecated: Use NamespaceSelectors instead.</p>
  2557. </td>
  2558. </tr>
  2559. <tr>
  2560. <td>
  2561. <code>namespaceSelectors</code></br>
  2562. <em>
  2563. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  2564. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  2565. </a>
  2566. </em>
  2567. </td>
  2568. <td>
  2569. <em>(Optional)</em>
  2570. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  2571. </td>
  2572. </tr>
  2573. <tr>
  2574. <td>
  2575. <code>namespaces</code></br>
  2576. <em>
  2577. []string
  2578. </em>
  2579. </td>
  2580. <td>
  2581. <em>(Optional)</em>
  2582. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.</p>
  2583. </td>
  2584. </tr>
  2585. <tr>
  2586. <td>
  2587. <code>refreshTime</code></br>
  2588. <em>
  2589. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  2590. Kubernetes meta/v1.Duration
  2591. </a>
  2592. </em>
  2593. </td>
  2594. <td>
  2595. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  2596. </td>
  2597. </tr>
  2598. </tbody>
  2599. </table>
  2600. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  2601. </h3>
  2602. <p>
  2603. (<em>Appears on:</em>
  2604. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  2605. </p>
  2606. <p>
  2607. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  2608. </p>
  2609. <table>
  2610. <thead>
  2611. <tr>
  2612. <th>Field</th>
  2613. <th>Description</th>
  2614. </tr>
  2615. </thead>
  2616. <tbody>
  2617. <tr>
  2618. <td>
  2619. <code>externalSecretName</code></br>
  2620. <em>
  2621. string
  2622. </em>
  2623. </td>
  2624. <td>
  2625. <p>ExternalSecretName is the name of the ExternalSecrets created by the ClusterExternalSecret</p>
  2626. </td>
  2627. </tr>
  2628. <tr>
  2629. <td>
  2630. <code>failedNamespaces</code></br>
  2631. <em>
  2632. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">
  2633. []ClusterExternalSecretNamespaceFailure
  2634. </a>
  2635. </em>
  2636. </td>
  2637. <td>
  2638. <em>(Optional)</em>
  2639. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  2640. </td>
  2641. </tr>
  2642. <tr>
  2643. <td>
  2644. <code>provisionedNamespaces</code></br>
  2645. <em>
  2646. []string
  2647. </em>
  2648. </td>
  2649. <td>
  2650. <em>(Optional)</em>
  2651. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  2652. </td>
  2653. </tr>
  2654. <tr>
  2655. <td>
  2656. <code>conditions</code></br>
  2657. <em>
  2658. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">
  2659. []ClusterExternalSecretStatusCondition
  2660. </a>
  2661. </em>
  2662. </td>
  2663. <td>
  2664. <em>(Optional)</em>
  2665. </td>
  2666. </tr>
  2667. </tbody>
  2668. </table>
  2669. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  2670. </h3>
  2671. <p>
  2672. (<em>Appears on:</em>
  2673. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  2674. </p>
  2675. <p>
  2676. </p>
  2677. <table>
  2678. <thead>
  2679. <tr>
  2680. <th>Field</th>
  2681. <th>Description</th>
  2682. </tr>
  2683. </thead>
  2684. <tbody>
  2685. <tr>
  2686. <td>
  2687. <code>type</code></br>
  2688. <em>
  2689. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretConditionType">
  2690. ClusterExternalSecretConditionType
  2691. </a>
  2692. </em>
  2693. </td>
  2694. <td>
  2695. </td>
  2696. </tr>
  2697. <tr>
  2698. <td>
  2699. <code>status</code></br>
  2700. <em>
  2701. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  2702. Kubernetes core/v1.ConditionStatus
  2703. </a>
  2704. </em>
  2705. </td>
  2706. <td>
  2707. </td>
  2708. </tr>
  2709. <tr>
  2710. <td>
  2711. <code>message</code></br>
  2712. <em>
  2713. string
  2714. </em>
  2715. </td>
  2716. <td>
  2717. <em>(Optional)</em>
  2718. </td>
  2719. </tr>
  2720. </tbody>
  2721. </table>
  2722. <h3 id="external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore
  2723. </h3>
  2724. <p>
  2725. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  2726. </p>
  2727. <table>
  2728. <thead>
  2729. <tr>
  2730. <th>Field</th>
  2731. <th>Description</th>
  2732. </tr>
  2733. </thead>
  2734. <tbody>
  2735. <tr>
  2736. <td>
  2737. <code>metadata</code></br>
  2738. <em>
  2739. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  2740. Kubernetes meta/v1.ObjectMeta
  2741. </a>
  2742. </em>
  2743. </td>
  2744. <td>
  2745. Refer to the Kubernetes API documentation for the fields of the
  2746. <code>metadata</code> field.
  2747. </td>
  2748. </tr>
  2749. <tr>
  2750. <td>
  2751. <code>spec</code></br>
  2752. <em>
  2753. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  2754. SecretStoreSpec
  2755. </a>
  2756. </em>
  2757. </td>
  2758. <td>
  2759. <br/>
  2760. <br/>
  2761. <table>
  2762. <tr>
  2763. <td>
  2764. <code>controller</code></br>
  2765. <em>
  2766. string
  2767. </em>
  2768. </td>
  2769. <td>
  2770. <em>(Optional)</em>
  2771. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  2772. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  2773. </td>
  2774. </tr>
  2775. <tr>
  2776. <td>
  2777. <code>provider</code></br>
  2778. <em>
  2779. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  2780. SecretStoreProvider
  2781. </a>
  2782. </em>
  2783. </td>
  2784. <td>
  2785. <p>Used to configure the provider. Only one provider may be set</p>
  2786. </td>
  2787. </tr>
  2788. <tr>
  2789. <td>
  2790. <code>retrySettings</code></br>
  2791. <em>
  2792. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  2793. SecretStoreRetrySettings
  2794. </a>
  2795. </em>
  2796. </td>
  2797. <td>
  2798. <em>(Optional)</em>
  2799. <p>Used to configure http retries if failed</p>
  2800. </td>
  2801. </tr>
  2802. <tr>
  2803. <td>
  2804. <code>refreshInterval</code></br>
  2805. <em>
  2806. int
  2807. </em>
  2808. </td>
  2809. <td>
  2810. <em>(Optional)</em>
  2811. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  2812. </td>
  2813. </tr>
  2814. <tr>
  2815. <td>
  2816. <code>conditions</code></br>
  2817. <em>
  2818. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  2819. []ClusterSecretStoreCondition
  2820. </a>
  2821. </em>
  2822. </td>
  2823. <td>
  2824. <em>(Optional)</em>
  2825. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  2826. </td>
  2827. </tr>
  2828. </table>
  2829. </td>
  2830. </tr>
  2831. <tr>
  2832. <td>
  2833. <code>status</code></br>
  2834. <em>
  2835. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  2836. SecretStoreStatus
  2837. </a>
  2838. </em>
  2839. </td>
  2840. <td>
  2841. </td>
  2842. </tr>
  2843. </tbody>
  2844. </table>
  2845. <h3 id="external-secrets.io/v1beta1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  2846. </h3>
  2847. <p>
  2848. (<em>Appears on:</em>
  2849. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  2850. </p>
  2851. <p>
  2852. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  2853. for a ClusterSecretStore instance.</p>
  2854. </p>
  2855. <table>
  2856. <thead>
  2857. <tr>
  2858. <th>Field</th>
  2859. <th>Description</th>
  2860. </tr>
  2861. </thead>
  2862. <tbody>
  2863. <tr>
  2864. <td>
  2865. <code>namespaceSelector</code></br>
  2866. <em>
  2867. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  2868. Kubernetes meta/v1.LabelSelector
  2869. </a>
  2870. </em>
  2871. </td>
  2872. <td>
  2873. <em>(Optional)</em>
  2874. <p>Choose namespace using a labelSelector</p>
  2875. </td>
  2876. </tr>
  2877. <tr>
  2878. <td>
  2879. <code>namespaces</code></br>
  2880. <em>
  2881. []string
  2882. </em>
  2883. </td>
  2884. <td>
  2885. <p>Choose namespaces by name</p>
  2886. </td>
  2887. </tr>
  2888. </tbody>
  2889. </table>
  2890. <h3 id="external-secrets.io/v1beta1.ConjurAPIKey">ConjurAPIKey
  2891. </h3>
  2892. <p>
  2893. (<em>Appears on:</em>
  2894. <a href="#external-secrets.io/v1beta1.ConjurAuth">ConjurAuth</a>)
  2895. </p>
  2896. <p>
  2897. </p>
  2898. <table>
  2899. <thead>
  2900. <tr>
  2901. <th>Field</th>
  2902. <th>Description</th>
  2903. </tr>
  2904. </thead>
  2905. <tbody>
  2906. <tr>
  2907. <td>
  2908. <code>account</code></br>
  2909. <em>
  2910. string
  2911. </em>
  2912. </td>
  2913. <td>
  2914. </td>
  2915. </tr>
  2916. <tr>
  2917. <td>
  2918. <code>userRef</code></br>
  2919. <em>
  2920. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2921. External Secrets meta/v1.SecretKeySelector
  2922. </a>
  2923. </em>
  2924. </td>
  2925. <td>
  2926. </td>
  2927. </tr>
  2928. <tr>
  2929. <td>
  2930. <code>apiKeyRef</code></br>
  2931. <em>
  2932. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2933. External Secrets meta/v1.SecretKeySelector
  2934. </a>
  2935. </em>
  2936. </td>
  2937. <td>
  2938. </td>
  2939. </tr>
  2940. </tbody>
  2941. </table>
  2942. <h3 id="external-secrets.io/v1beta1.ConjurAuth">ConjurAuth
  2943. </h3>
  2944. <p>
  2945. (<em>Appears on:</em>
  2946. <a href="#external-secrets.io/v1beta1.ConjurProvider">ConjurProvider</a>)
  2947. </p>
  2948. <p>
  2949. </p>
  2950. <table>
  2951. <thead>
  2952. <tr>
  2953. <th>Field</th>
  2954. <th>Description</th>
  2955. </tr>
  2956. </thead>
  2957. <tbody>
  2958. <tr>
  2959. <td>
  2960. <code>apikey</code></br>
  2961. <em>
  2962. <a href="#external-secrets.io/v1beta1.ConjurAPIKey">
  2963. ConjurAPIKey
  2964. </a>
  2965. </em>
  2966. </td>
  2967. <td>
  2968. <em>(Optional)</em>
  2969. </td>
  2970. </tr>
  2971. <tr>
  2972. <td>
  2973. <code>jwt</code></br>
  2974. <em>
  2975. <a href="#external-secrets.io/v1beta1.ConjurJWT">
  2976. ConjurJWT
  2977. </a>
  2978. </em>
  2979. </td>
  2980. <td>
  2981. <em>(Optional)</em>
  2982. </td>
  2983. </tr>
  2984. </tbody>
  2985. </table>
  2986. <h3 id="external-secrets.io/v1beta1.ConjurJWT">ConjurJWT
  2987. </h3>
  2988. <p>
  2989. (<em>Appears on:</em>
  2990. <a href="#external-secrets.io/v1beta1.ConjurAuth">ConjurAuth</a>)
  2991. </p>
  2992. <p>
  2993. </p>
  2994. <table>
  2995. <thead>
  2996. <tr>
  2997. <th>Field</th>
  2998. <th>Description</th>
  2999. </tr>
  3000. </thead>
  3001. <tbody>
  3002. <tr>
  3003. <td>
  3004. <code>account</code></br>
  3005. <em>
  3006. string
  3007. </em>
  3008. </td>
  3009. <td>
  3010. </td>
  3011. </tr>
  3012. <tr>
  3013. <td>
  3014. <code>serviceID</code></br>
  3015. <em>
  3016. string
  3017. </em>
  3018. </td>
  3019. <td>
  3020. <p>The conjur authn jwt webservice id</p>
  3021. </td>
  3022. </tr>
  3023. <tr>
  3024. <td>
  3025. <code>hostId</code></br>
  3026. <em>
  3027. string
  3028. </em>
  3029. </td>
  3030. <td>
  3031. <em>(Optional)</em>
  3032. <p>Optional HostID for JWT authentication. This may be used depending
  3033. on how the Conjur JWT authenticator policy is configured.</p>
  3034. </td>
  3035. </tr>
  3036. <tr>
  3037. <td>
  3038. <code>secretRef</code></br>
  3039. <em>
  3040. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3041. External Secrets meta/v1.SecretKeySelector
  3042. </a>
  3043. </em>
  3044. </td>
  3045. <td>
  3046. <em>(Optional)</em>
  3047. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  3048. authenticate with Conjur using the JWT authentication method.</p>
  3049. </td>
  3050. </tr>
  3051. <tr>
  3052. <td>
  3053. <code>serviceAccountRef</code></br>
  3054. <em>
  3055. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  3056. External Secrets meta/v1.ServiceAccountSelector
  3057. </a>
  3058. </em>
  3059. </td>
  3060. <td>
  3061. <em>(Optional)</em>
  3062. <p>Optional ServiceAccountRef specifies the Kubernetes service account for which to request
  3063. a token for with the <code>TokenRequest</code> API.</p>
  3064. </td>
  3065. </tr>
  3066. </tbody>
  3067. </table>
  3068. <h3 id="external-secrets.io/v1beta1.ConjurProvider">ConjurProvider
  3069. </h3>
  3070. <p>
  3071. (<em>Appears on:</em>
  3072. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3073. </p>
  3074. <p>
  3075. </p>
  3076. <table>
  3077. <thead>
  3078. <tr>
  3079. <th>Field</th>
  3080. <th>Description</th>
  3081. </tr>
  3082. </thead>
  3083. <tbody>
  3084. <tr>
  3085. <td>
  3086. <code>url</code></br>
  3087. <em>
  3088. string
  3089. </em>
  3090. </td>
  3091. <td>
  3092. </td>
  3093. </tr>
  3094. <tr>
  3095. <td>
  3096. <code>caBundle</code></br>
  3097. <em>
  3098. string
  3099. </em>
  3100. </td>
  3101. <td>
  3102. <em>(Optional)</em>
  3103. </td>
  3104. </tr>
  3105. <tr>
  3106. <td>
  3107. <code>caProvider</code></br>
  3108. <em>
  3109. <a href="#external-secrets.io/v1beta1.CAProvider">
  3110. CAProvider
  3111. </a>
  3112. </em>
  3113. </td>
  3114. <td>
  3115. <em>(Optional)</em>
  3116. </td>
  3117. </tr>
  3118. <tr>
  3119. <td>
  3120. <code>auth</code></br>
  3121. <em>
  3122. <a href="#external-secrets.io/v1beta1.ConjurAuth">
  3123. ConjurAuth
  3124. </a>
  3125. </em>
  3126. </td>
  3127. <td>
  3128. </td>
  3129. </tr>
  3130. </tbody>
  3131. </table>
  3132. <h3 id="external-secrets.io/v1beta1.DelineaProvider">DelineaProvider
  3133. </h3>
  3134. <p>
  3135. (<em>Appears on:</em>
  3136. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3137. </p>
  3138. <p>
  3139. <p>See <a href="https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go">https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go</a>.</p>
  3140. </p>
  3141. <table>
  3142. <thead>
  3143. <tr>
  3144. <th>Field</th>
  3145. <th>Description</th>
  3146. </tr>
  3147. </thead>
  3148. <tbody>
  3149. <tr>
  3150. <td>
  3151. <code>clientId</code></br>
  3152. <em>
  3153. <a href="#external-secrets.io/v1beta1.DelineaProviderSecretRef">
  3154. DelineaProviderSecretRef
  3155. </a>
  3156. </em>
  3157. </td>
  3158. <td>
  3159. <p>ClientID is the non-secret part of the credential.</p>
  3160. </td>
  3161. </tr>
  3162. <tr>
  3163. <td>
  3164. <code>clientSecret</code></br>
  3165. <em>
  3166. <a href="#external-secrets.io/v1beta1.DelineaProviderSecretRef">
  3167. DelineaProviderSecretRef
  3168. </a>
  3169. </em>
  3170. </td>
  3171. <td>
  3172. <p>ClientSecret is the secret part of the credential.</p>
  3173. </td>
  3174. </tr>
  3175. <tr>
  3176. <td>
  3177. <code>tenant</code></br>
  3178. <em>
  3179. string
  3180. </em>
  3181. </td>
  3182. <td>
  3183. <p>Tenant is the chosen hostname / site name.</p>
  3184. </td>
  3185. </tr>
  3186. <tr>
  3187. <td>
  3188. <code>urlTemplate</code></br>
  3189. <em>
  3190. string
  3191. </em>
  3192. </td>
  3193. <td>
  3194. <em>(Optional)</em>
  3195. <p>URLTemplate
  3196. If unset, defaults to &ldquo;https://%s.secretsvaultcloud.%s/v1/%s%s&rdquo;.</p>
  3197. </td>
  3198. </tr>
  3199. <tr>
  3200. <td>
  3201. <code>tld</code></br>
  3202. <em>
  3203. string
  3204. </em>
  3205. </td>
  3206. <td>
  3207. <em>(Optional)</em>
  3208. <p>TLD is based on the server location that was chosen during provisioning.
  3209. If unset, defaults to &ldquo;com&rdquo;.</p>
  3210. </td>
  3211. </tr>
  3212. </tbody>
  3213. </table>
  3214. <h3 id="external-secrets.io/v1beta1.DelineaProviderSecretRef">DelineaProviderSecretRef
  3215. </h3>
  3216. <p>
  3217. (<em>Appears on:</em>
  3218. <a href="#external-secrets.io/v1beta1.DelineaProvider">DelineaProvider</a>)
  3219. </p>
  3220. <p>
  3221. </p>
  3222. <table>
  3223. <thead>
  3224. <tr>
  3225. <th>Field</th>
  3226. <th>Description</th>
  3227. </tr>
  3228. </thead>
  3229. <tbody>
  3230. <tr>
  3231. <td>
  3232. <code>value</code></br>
  3233. <em>
  3234. string
  3235. </em>
  3236. </td>
  3237. <td>
  3238. <em>(Optional)</em>
  3239. <p>Value can be specified directly to set a value without using a secret.</p>
  3240. </td>
  3241. </tr>
  3242. <tr>
  3243. <td>
  3244. <code>secretRef</code></br>
  3245. <em>
  3246. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3247. External Secrets meta/v1.SecretKeySelector
  3248. </a>
  3249. </em>
  3250. </td>
  3251. <td>
  3252. <em>(Optional)</em>
  3253. <p>SecretRef references a key in a secret that will be used as value.</p>
  3254. </td>
  3255. </tr>
  3256. </tbody>
  3257. </table>
  3258. <h3 id="external-secrets.io/v1beta1.DopplerAuth">DopplerAuth
  3259. </h3>
  3260. <p>
  3261. (<em>Appears on:</em>
  3262. <a href="#external-secrets.io/v1beta1.DopplerProvider">DopplerProvider</a>)
  3263. </p>
  3264. <p>
  3265. </p>
  3266. <table>
  3267. <thead>
  3268. <tr>
  3269. <th>Field</th>
  3270. <th>Description</th>
  3271. </tr>
  3272. </thead>
  3273. <tbody>
  3274. <tr>
  3275. <td>
  3276. <code>secretRef</code></br>
  3277. <em>
  3278. <a href="#external-secrets.io/v1beta1.DopplerAuthSecretRef">
  3279. DopplerAuthSecretRef
  3280. </a>
  3281. </em>
  3282. </td>
  3283. <td>
  3284. </td>
  3285. </tr>
  3286. </tbody>
  3287. </table>
  3288. <h3 id="external-secrets.io/v1beta1.DopplerAuthSecretRef">DopplerAuthSecretRef
  3289. </h3>
  3290. <p>
  3291. (<em>Appears on:</em>
  3292. <a href="#external-secrets.io/v1beta1.DopplerAuth">DopplerAuth</a>)
  3293. </p>
  3294. <p>
  3295. </p>
  3296. <table>
  3297. <thead>
  3298. <tr>
  3299. <th>Field</th>
  3300. <th>Description</th>
  3301. </tr>
  3302. </thead>
  3303. <tbody>
  3304. <tr>
  3305. <td>
  3306. <code>dopplerToken</code></br>
  3307. <em>
  3308. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3309. External Secrets meta/v1.SecretKeySelector
  3310. </a>
  3311. </em>
  3312. </td>
  3313. <td>
  3314. <p>The DopplerToken is used for authentication.
  3315. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  3316. The Key attribute defaults to dopplerToken if not specified.</p>
  3317. </td>
  3318. </tr>
  3319. </tbody>
  3320. </table>
  3321. <h3 id="external-secrets.io/v1beta1.DopplerProvider">DopplerProvider
  3322. </h3>
  3323. <p>
  3324. (<em>Appears on:</em>
  3325. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3326. </p>
  3327. <p>
  3328. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  3329. Project and Config are required if not using a Service Token.</p>
  3330. </p>
  3331. <table>
  3332. <thead>
  3333. <tr>
  3334. <th>Field</th>
  3335. <th>Description</th>
  3336. </tr>
  3337. </thead>
  3338. <tbody>
  3339. <tr>
  3340. <td>
  3341. <code>auth</code></br>
  3342. <em>
  3343. <a href="#external-secrets.io/v1beta1.DopplerAuth">
  3344. DopplerAuth
  3345. </a>
  3346. </em>
  3347. </td>
  3348. <td>
  3349. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  3350. </td>
  3351. </tr>
  3352. <tr>
  3353. <td>
  3354. <code>project</code></br>
  3355. <em>
  3356. string
  3357. </em>
  3358. </td>
  3359. <td>
  3360. <em>(Optional)</em>
  3361. <p>Doppler project (required if not using a Service Token)</p>
  3362. </td>
  3363. </tr>
  3364. <tr>
  3365. <td>
  3366. <code>config</code></br>
  3367. <em>
  3368. string
  3369. </em>
  3370. </td>
  3371. <td>
  3372. <em>(Optional)</em>
  3373. <p>Doppler config (required if not using a Service Token)</p>
  3374. </td>
  3375. </tr>
  3376. <tr>
  3377. <td>
  3378. <code>nameTransformer</code></br>
  3379. <em>
  3380. string
  3381. </em>
  3382. </td>
  3383. <td>
  3384. <em>(Optional)</em>
  3385. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  3386. </td>
  3387. </tr>
  3388. <tr>
  3389. <td>
  3390. <code>format</code></br>
  3391. <em>
  3392. string
  3393. </em>
  3394. </td>
  3395. <td>
  3396. <em>(Optional)</em>
  3397. <p>Format enables the downloading of secrets as a file (string)</p>
  3398. </td>
  3399. </tr>
  3400. </tbody>
  3401. </table>
  3402. <h3 id="external-secrets.io/v1beta1.ExternalSecret">ExternalSecret
  3403. </h3>
  3404. <p>
  3405. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  3406. </p>
  3407. <table>
  3408. <thead>
  3409. <tr>
  3410. <th>Field</th>
  3411. <th>Description</th>
  3412. </tr>
  3413. </thead>
  3414. <tbody>
  3415. <tr>
  3416. <td>
  3417. <code>metadata</code></br>
  3418. <em>
  3419. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3420. Kubernetes meta/v1.ObjectMeta
  3421. </a>
  3422. </em>
  3423. </td>
  3424. <td>
  3425. Refer to the Kubernetes API documentation for the fields of the
  3426. <code>metadata</code> field.
  3427. </td>
  3428. </tr>
  3429. <tr>
  3430. <td>
  3431. <code>spec</code></br>
  3432. <em>
  3433. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  3434. ExternalSecretSpec
  3435. </a>
  3436. </em>
  3437. </td>
  3438. <td>
  3439. <br/>
  3440. <br/>
  3441. <table>
  3442. <tr>
  3443. <td>
  3444. <code>secretStoreRef</code></br>
  3445. <em>
  3446. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  3447. SecretStoreRef
  3448. </a>
  3449. </em>
  3450. </td>
  3451. <td>
  3452. <em>(Optional)</em>
  3453. </td>
  3454. </tr>
  3455. <tr>
  3456. <td>
  3457. <code>target</code></br>
  3458. <em>
  3459. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  3460. ExternalSecretTarget
  3461. </a>
  3462. </em>
  3463. </td>
  3464. <td>
  3465. <em>(Optional)</em>
  3466. </td>
  3467. </tr>
  3468. <tr>
  3469. <td>
  3470. <code>refreshInterval</code></br>
  3471. <em>
  3472. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3473. Kubernetes meta/v1.Duration
  3474. </a>
  3475. </em>
  3476. </td>
  3477. <td>
  3478. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  3479. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  3480. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  3481. </td>
  3482. </tr>
  3483. <tr>
  3484. <td>
  3485. <code>data</code></br>
  3486. <em>
  3487. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  3488. []ExternalSecretData
  3489. </a>
  3490. </em>
  3491. </td>
  3492. <td>
  3493. <em>(Optional)</em>
  3494. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  3495. </td>
  3496. </tr>
  3497. <tr>
  3498. <td>
  3499. <code>dataFrom</code></br>
  3500. <em>
  3501. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  3502. []ExternalSecretDataFromRemoteRef
  3503. </a>
  3504. </em>
  3505. </td>
  3506. <td>
  3507. <em>(Optional)</em>
  3508. <p>DataFrom is used to fetch all properties from a specific Provider data
  3509. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  3510. </td>
  3511. </tr>
  3512. </table>
  3513. </td>
  3514. </tr>
  3515. <tr>
  3516. <td>
  3517. <code>status</code></br>
  3518. <em>
  3519. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">
  3520. ExternalSecretStatus
  3521. </a>
  3522. </em>
  3523. </td>
  3524. <td>
  3525. </td>
  3526. </tr>
  3527. </tbody>
  3528. </table>
  3529. <h3 id="external-secrets.io/v1beta1.ExternalSecretConditionType">ExternalSecretConditionType
  3530. (<code>string</code> alias)</p></h3>
  3531. <p>
  3532. (<em>Appears on:</em>
  3533. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  3534. </p>
  3535. <p>
  3536. </p>
  3537. <table>
  3538. <thead>
  3539. <tr>
  3540. <th>Value</th>
  3541. <th>Description</th>
  3542. </tr>
  3543. </thead>
  3544. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  3545. <td></td>
  3546. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  3547. <td></td>
  3548. </tr></tbody>
  3549. </table>
  3550. <h3 id="external-secrets.io/v1beta1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  3551. (<code>string</code> alias)</p></h3>
  3552. <p>
  3553. (<em>Appears on:</em>
  3554. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  3555. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  3556. </p>
  3557. <p>
  3558. </p>
  3559. <table>
  3560. <thead>
  3561. <tr>
  3562. <th>Value</th>
  3563. <th>Description</th>
  3564. </tr>
  3565. </thead>
  3566. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  3567. <td></td>
  3568. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  3569. <td></td>
  3570. </tr></tbody>
  3571. </table>
  3572. <h3 id="external-secrets.io/v1beta1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  3573. (<code>string</code> alias)</p></h3>
  3574. <p>
  3575. (<em>Appears on:</em>
  3576. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  3577. </p>
  3578. <p>
  3579. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  3580. </p>
  3581. <table>
  3582. <thead>
  3583. <tr>
  3584. <th>Value</th>
  3585. <th>Description</th>
  3586. </tr>
  3587. </thead>
  3588. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  3589. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  3590. </td>
  3591. </tr><tr><td><p>&#34;None&#34;</p></td>
  3592. <td><p>None does not create a Secret (future use with injector).</p>
  3593. </td>
  3594. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  3595. <td><p>Orphan creates the Secret and does not set the ownerReference.
  3596. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  3597. </td>
  3598. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  3599. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  3600. </td>
  3601. </tr></tbody>
  3602. </table>
  3603. <h3 id="external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData
  3604. </h3>
  3605. <p>
  3606. (<em>Appears on:</em>
  3607. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  3608. </p>
  3609. <p>
  3610. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  3611. </p>
  3612. <table>
  3613. <thead>
  3614. <tr>
  3615. <th>Field</th>
  3616. <th>Description</th>
  3617. </tr>
  3618. </thead>
  3619. <tbody>
  3620. <tr>
  3621. <td>
  3622. <code>secretKey</code></br>
  3623. <em>
  3624. string
  3625. </em>
  3626. </td>
  3627. <td>
  3628. <p>SecretKey defines the key in which the controller stores
  3629. the value. This is the key in the Kind=Secret</p>
  3630. </td>
  3631. </tr>
  3632. <tr>
  3633. <td>
  3634. <code>remoteRef</code></br>
  3635. <em>
  3636. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  3637. ExternalSecretDataRemoteRef
  3638. </a>
  3639. </em>
  3640. </td>
  3641. <td>
  3642. <p>RemoteRef points to the remote secret and defines
  3643. which secret (version/property/..) to fetch.</p>
  3644. </td>
  3645. </tr>
  3646. <tr>
  3647. <td>
  3648. <code>sourceRef</code></br>
  3649. <em>
  3650. <a href="#external-secrets.io/v1beta1.StoreSourceRef">
  3651. StoreSourceRef
  3652. </a>
  3653. </em>
  3654. </td>
  3655. <td>
  3656. <p>SourceRef allows you to override the source
  3657. from which the value will pulled from.</p>
  3658. </td>
  3659. </tr>
  3660. </tbody>
  3661. </table>
  3662. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  3663. </h3>
  3664. <p>
  3665. (<em>Appears on:</em>
  3666. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  3667. </p>
  3668. <p>
  3669. </p>
  3670. <table>
  3671. <thead>
  3672. <tr>
  3673. <th>Field</th>
  3674. <th>Description</th>
  3675. </tr>
  3676. </thead>
  3677. <tbody>
  3678. <tr>
  3679. <td>
  3680. <code>extract</code></br>
  3681. <em>
  3682. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  3683. ExternalSecretDataRemoteRef
  3684. </a>
  3685. </em>
  3686. </td>
  3687. <td>
  3688. <em>(Optional)</em>
  3689. <p>Used to extract multiple key/value pairs from one secret
  3690. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  3691. </td>
  3692. </tr>
  3693. <tr>
  3694. <td>
  3695. <code>find</code></br>
  3696. <em>
  3697. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">
  3698. ExternalSecretFind
  3699. </a>
  3700. </em>
  3701. </td>
  3702. <td>
  3703. <em>(Optional)</em>
  3704. <p>Used to find secrets based on tags or regular expressions
  3705. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  3706. </td>
  3707. </tr>
  3708. <tr>
  3709. <td>
  3710. <code>rewrite</code></br>
  3711. <em>
  3712. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">
  3713. []ExternalSecretRewrite
  3714. </a>
  3715. </em>
  3716. </td>
  3717. <td>
  3718. <em>(Optional)</em>
  3719. <p>Used to rewrite secret Keys after getting them from the secret Provider
  3720. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  3721. </td>
  3722. </tr>
  3723. <tr>
  3724. <td>
  3725. <code>sourceRef</code></br>
  3726. <em>
  3727. <a href="#external-secrets.io/v1beta1.StoreGeneratorSourceRef">
  3728. StoreGeneratorSourceRef
  3729. </a>
  3730. </em>
  3731. </td>
  3732. <td>
  3733. <p>SourceRef points to a store or generator
  3734. which contains secret values ready to use.
  3735. Use this in combination with Extract or Find pull values out of
  3736. a specific SecretStore.
  3737. When sourceRef points to a generator Extract or Find is not supported.
  3738. The generator returns a static map of values</p>
  3739. </td>
  3740. </tr>
  3741. </tbody>
  3742. </table>
  3743. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  3744. </h3>
  3745. <p>
  3746. (<em>Appears on:</em>
  3747. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>,
  3748. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  3749. </p>
  3750. <p>
  3751. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  3752. </p>
  3753. <table>
  3754. <thead>
  3755. <tr>
  3756. <th>Field</th>
  3757. <th>Description</th>
  3758. </tr>
  3759. </thead>
  3760. <tbody>
  3761. <tr>
  3762. <td>
  3763. <code>key</code></br>
  3764. <em>
  3765. string
  3766. </em>
  3767. </td>
  3768. <td>
  3769. <p>Key is the key used in the Provider, mandatory</p>
  3770. </td>
  3771. </tr>
  3772. <tr>
  3773. <td>
  3774. <code>metadataPolicy</code></br>
  3775. <em>
  3776. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">
  3777. ExternalSecretMetadataPolicy
  3778. </a>
  3779. </em>
  3780. </td>
  3781. <td>
  3782. <em>(Optional)</em>
  3783. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  3784. </td>
  3785. </tr>
  3786. <tr>
  3787. <td>
  3788. <code>property</code></br>
  3789. <em>
  3790. string
  3791. </em>
  3792. </td>
  3793. <td>
  3794. <em>(Optional)</em>
  3795. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  3796. </td>
  3797. </tr>
  3798. <tr>
  3799. <td>
  3800. <code>version</code></br>
  3801. <em>
  3802. string
  3803. </em>
  3804. </td>
  3805. <td>
  3806. <em>(Optional)</em>
  3807. <p>Used to select a specific version of the Provider value, if supported</p>
  3808. </td>
  3809. </tr>
  3810. <tr>
  3811. <td>
  3812. <code>conversionStrategy</code></br>
  3813. <em>
  3814. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  3815. ExternalSecretConversionStrategy
  3816. </a>
  3817. </em>
  3818. </td>
  3819. <td>
  3820. <em>(Optional)</em>
  3821. <p>Used to define a conversion Strategy</p>
  3822. </td>
  3823. </tr>
  3824. <tr>
  3825. <td>
  3826. <code>decodingStrategy</code></br>
  3827. <em>
  3828. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  3829. ExternalSecretDecodingStrategy
  3830. </a>
  3831. </em>
  3832. </td>
  3833. <td>
  3834. <em>(Optional)</em>
  3835. <p>Used to define a decoding Strategy</p>
  3836. </td>
  3837. </tr>
  3838. </tbody>
  3839. </table>
  3840. <h3 id="external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  3841. (<code>string</code> alias)</p></h3>
  3842. <p>
  3843. (<em>Appears on:</em>
  3844. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  3845. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  3846. </p>
  3847. <p>
  3848. </p>
  3849. <table>
  3850. <thead>
  3851. <tr>
  3852. <th>Value</th>
  3853. <th>Description</th>
  3854. </tr>
  3855. </thead>
  3856. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  3857. <td></td>
  3858. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  3859. <td></td>
  3860. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  3861. <td></td>
  3862. </tr><tr><td><p>&#34;None&#34;</p></td>
  3863. <td></td>
  3864. </tr></tbody>
  3865. </table>
  3866. <h3 id="external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  3867. (<code>string</code> alias)</p></h3>
  3868. <p>
  3869. (<em>Appears on:</em>
  3870. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  3871. </p>
  3872. <p>
  3873. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  3874. </p>
  3875. <table>
  3876. <thead>
  3877. <tr>
  3878. <th>Value</th>
  3879. <th>Description</th>
  3880. </tr>
  3881. </thead>
  3882. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  3883. <td><p>Delete deletes the secret if all provider secrets are deleted.
  3884. If a secret gets deleted on the provider side and is not accessible
  3885. anymore this is not considered an error and the ExternalSecret
  3886. does not go into SecretSyncedError status.</p>
  3887. </td>
  3888. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  3889. <td><p>Merge removes keys in the secret, but not the secret itself.
  3890. If a secret gets deleted on the provider side and is not accessible
  3891. anymore this is not considered an error and the ExternalSecret
  3892. does not go into SecretSyncedError status.</p>
  3893. </td>
  3894. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  3895. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  3896. If a provider secret does not exist the ExternalSecret gets into the
  3897. SecretSyncedError status.</p>
  3898. </td>
  3899. </tr></tbody>
  3900. </table>
  3901. <h3 id="external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind
  3902. </h3>
  3903. <p>
  3904. (<em>Appears on:</em>
  3905. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  3906. </p>
  3907. <p>
  3908. </p>
  3909. <table>
  3910. <thead>
  3911. <tr>
  3912. <th>Field</th>
  3913. <th>Description</th>
  3914. </tr>
  3915. </thead>
  3916. <tbody>
  3917. <tr>
  3918. <td>
  3919. <code>path</code></br>
  3920. <em>
  3921. string
  3922. </em>
  3923. </td>
  3924. <td>
  3925. <em>(Optional)</em>
  3926. <p>A root path to start the find operations.</p>
  3927. </td>
  3928. </tr>
  3929. <tr>
  3930. <td>
  3931. <code>name</code></br>
  3932. <em>
  3933. <a href="#external-secrets.io/v1beta1.FindName">
  3934. FindName
  3935. </a>
  3936. </em>
  3937. </td>
  3938. <td>
  3939. <em>(Optional)</em>
  3940. <p>Finds secrets based on the name.</p>
  3941. </td>
  3942. </tr>
  3943. <tr>
  3944. <td>
  3945. <code>tags</code></br>
  3946. <em>
  3947. map[string]string
  3948. </em>
  3949. </td>
  3950. <td>
  3951. <em>(Optional)</em>
  3952. <p>Find secrets based on tags.</p>
  3953. </td>
  3954. </tr>
  3955. <tr>
  3956. <td>
  3957. <code>conversionStrategy</code></br>
  3958. <em>
  3959. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  3960. ExternalSecretConversionStrategy
  3961. </a>
  3962. </em>
  3963. </td>
  3964. <td>
  3965. <em>(Optional)</em>
  3966. <p>Used to define a conversion Strategy</p>
  3967. </td>
  3968. </tr>
  3969. <tr>
  3970. <td>
  3971. <code>decodingStrategy</code></br>
  3972. <em>
  3973. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  3974. ExternalSecretDecodingStrategy
  3975. </a>
  3976. </em>
  3977. </td>
  3978. <td>
  3979. <em>(Optional)</em>
  3980. <p>Used to define a decoding Strategy</p>
  3981. </td>
  3982. </tr>
  3983. </tbody>
  3984. </table>
  3985. <h3 id="external-secrets.io/v1beta1.ExternalSecretMetadata">ExternalSecretMetadata
  3986. </h3>
  3987. <p>
  3988. (<em>Appears on:</em>
  3989. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>)
  3990. </p>
  3991. <p>
  3992. <p>ExternalSecretMetadata defines metadata fields for the ExternalSecret generated by the ClusterExternalSecret.</p>
  3993. </p>
  3994. <table>
  3995. <thead>
  3996. <tr>
  3997. <th>Field</th>
  3998. <th>Description</th>
  3999. </tr>
  4000. </thead>
  4001. <tbody>
  4002. <tr>
  4003. <td>
  4004. <code>annotations</code></br>
  4005. <em>
  4006. map[string]string
  4007. </em>
  4008. </td>
  4009. <td>
  4010. <em>(Optional)</em>
  4011. </td>
  4012. </tr>
  4013. <tr>
  4014. <td>
  4015. <code>labels</code></br>
  4016. <em>
  4017. map[string]string
  4018. </em>
  4019. </td>
  4020. <td>
  4021. <em>(Optional)</em>
  4022. </td>
  4023. </tr>
  4024. </tbody>
  4025. </table>
  4026. <h3 id="external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  4027. (<code>string</code> alias)</p></h3>
  4028. <p>
  4029. (<em>Appears on:</em>
  4030. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  4031. </p>
  4032. <p>
  4033. </p>
  4034. <table>
  4035. <thead>
  4036. <tr>
  4037. <th>Value</th>
  4038. <th>Description</th>
  4039. </tr>
  4040. </thead>
  4041. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  4042. <td></td>
  4043. </tr><tr><td><p>&#34;None&#34;</p></td>
  4044. <td></td>
  4045. </tr></tbody>
  4046. </table>
  4047. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite
  4048. </h3>
  4049. <p>
  4050. (<em>Appears on:</em>
  4051. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4052. </p>
  4053. <p>
  4054. </p>
  4055. <table>
  4056. <thead>
  4057. <tr>
  4058. <th>Field</th>
  4059. <th>Description</th>
  4060. </tr>
  4061. </thead>
  4062. <tbody>
  4063. <tr>
  4064. <td>
  4065. <code>regexp</code></br>
  4066. <em>
  4067. <a href="#external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">
  4068. ExternalSecretRewriteRegexp
  4069. </a>
  4070. </em>
  4071. </td>
  4072. <td>
  4073. <em>(Optional)</em>
  4074. <p>Used to rewrite with regular expressions.
  4075. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  4076. </td>
  4077. </tr>
  4078. <tr>
  4079. <td>
  4080. <code>transform</code></br>
  4081. <em>
  4082. <a href="#external-secrets.io/v1beta1.ExternalSecretRewriteTransform">
  4083. ExternalSecretRewriteTransform
  4084. </a>
  4085. </em>
  4086. </td>
  4087. <td>
  4088. <em>(Optional)</em>
  4089. <p>Used to apply string transformation on the secrets.
  4090. The resulting key will be the output of the template applied by the operation.</p>
  4091. </td>
  4092. </tr>
  4093. </tbody>
  4094. </table>
  4095. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  4096. </h3>
  4097. <p>
  4098. (<em>Appears on:</em>
  4099. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  4100. </p>
  4101. <p>
  4102. </p>
  4103. <table>
  4104. <thead>
  4105. <tr>
  4106. <th>Field</th>
  4107. <th>Description</th>
  4108. </tr>
  4109. </thead>
  4110. <tbody>
  4111. <tr>
  4112. <td>
  4113. <code>source</code></br>
  4114. <em>
  4115. string
  4116. </em>
  4117. </td>
  4118. <td>
  4119. <p>Used to define the regular expression of a re.Compiler.</p>
  4120. </td>
  4121. </tr>
  4122. <tr>
  4123. <td>
  4124. <code>target</code></br>
  4125. <em>
  4126. string
  4127. </em>
  4128. </td>
  4129. <td>
  4130. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  4131. </td>
  4132. </tr>
  4133. </tbody>
  4134. </table>
  4135. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewriteTransform">ExternalSecretRewriteTransform
  4136. </h3>
  4137. <p>
  4138. (<em>Appears on:</em>
  4139. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  4140. </p>
  4141. <p>
  4142. </p>
  4143. <table>
  4144. <thead>
  4145. <tr>
  4146. <th>Field</th>
  4147. <th>Description</th>
  4148. </tr>
  4149. </thead>
  4150. <tbody>
  4151. <tr>
  4152. <td>
  4153. <code>template</code></br>
  4154. <em>
  4155. string
  4156. </em>
  4157. </td>
  4158. <td>
  4159. <p>Used to define the template to apply on the secret name.
  4160. <code>.value</code> will specify the secret name in the template.</p>
  4161. </td>
  4162. </tr>
  4163. </tbody>
  4164. </table>
  4165. <h3 id="external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec
  4166. </h3>
  4167. <p>
  4168. (<em>Appears on:</em>
  4169. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  4170. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  4171. </p>
  4172. <p>
  4173. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  4174. </p>
  4175. <table>
  4176. <thead>
  4177. <tr>
  4178. <th>Field</th>
  4179. <th>Description</th>
  4180. </tr>
  4181. </thead>
  4182. <tbody>
  4183. <tr>
  4184. <td>
  4185. <code>secretStoreRef</code></br>
  4186. <em>
  4187. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  4188. SecretStoreRef
  4189. </a>
  4190. </em>
  4191. </td>
  4192. <td>
  4193. <em>(Optional)</em>
  4194. </td>
  4195. </tr>
  4196. <tr>
  4197. <td>
  4198. <code>target</code></br>
  4199. <em>
  4200. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  4201. ExternalSecretTarget
  4202. </a>
  4203. </em>
  4204. </td>
  4205. <td>
  4206. <em>(Optional)</em>
  4207. </td>
  4208. </tr>
  4209. <tr>
  4210. <td>
  4211. <code>refreshInterval</code></br>
  4212. <em>
  4213. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  4214. Kubernetes meta/v1.Duration
  4215. </a>
  4216. </em>
  4217. </td>
  4218. <td>
  4219. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  4220. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  4221. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  4222. </td>
  4223. </tr>
  4224. <tr>
  4225. <td>
  4226. <code>data</code></br>
  4227. <em>
  4228. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  4229. []ExternalSecretData
  4230. </a>
  4231. </em>
  4232. </td>
  4233. <td>
  4234. <em>(Optional)</em>
  4235. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  4236. </td>
  4237. </tr>
  4238. <tr>
  4239. <td>
  4240. <code>dataFrom</code></br>
  4241. <em>
  4242. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  4243. []ExternalSecretDataFromRemoteRef
  4244. </a>
  4245. </em>
  4246. </td>
  4247. <td>
  4248. <em>(Optional)</em>
  4249. <p>DataFrom is used to fetch all properties from a specific Provider data
  4250. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  4251. </td>
  4252. </tr>
  4253. </tbody>
  4254. </table>
  4255. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus
  4256. </h3>
  4257. <p>
  4258. (<em>Appears on:</em>
  4259. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  4260. </p>
  4261. <p>
  4262. </p>
  4263. <table>
  4264. <thead>
  4265. <tr>
  4266. <th>Field</th>
  4267. <th>Description</th>
  4268. </tr>
  4269. </thead>
  4270. <tbody>
  4271. <tr>
  4272. <td>
  4273. <code>refreshTime</code></br>
  4274. <em>
  4275. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  4276. Kubernetes meta/v1.Time
  4277. </a>
  4278. </em>
  4279. </td>
  4280. <td>
  4281. <p>refreshTime is the time and date the external secret was fetched and
  4282. the target secret updated</p>
  4283. </td>
  4284. </tr>
  4285. <tr>
  4286. <td>
  4287. <code>syncedResourceVersion</code></br>
  4288. <em>
  4289. string
  4290. </em>
  4291. </td>
  4292. <td>
  4293. <p>SyncedResourceVersion keeps track of the last synced version</p>
  4294. </td>
  4295. </tr>
  4296. <tr>
  4297. <td>
  4298. <code>conditions</code></br>
  4299. <em>
  4300. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">
  4301. []ExternalSecretStatusCondition
  4302. </a>
  4303. </em>
  4304. </td>
  4305. <td>
  4306. <em>(Optional)</em>
  4307. </td>
  4308. </tr>
  4309. <tr>
  4310. <td>
  4311. <code>binding</code></br>
  4312. <em>
  4313. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#localobjectreference-v1-core">
  4314. Kubernetes core/v1.LocalObjectReference
  4315. </a>
  4316. </em>
  4317. </td>
  4318. <td>
  4319. <p>Binding represents a servicebinding.io Provisioned Service reference to the secret</p>
  4320. </td>
  4321. </tr>
  4322. </tbody>
  4323. </table>
  4324. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  4325. </h3>
  4326. <p>
  4327. (<em>Appears on:</em>
  4328. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus</a>)
  4329. </p>
  4330. <p>
  4331. </p>
  4332. <table>
  4333. <thead>
  4334. <tr>
  4335. <th>Field</th>
  4336. <th>Description</th>
  4337. </tr>
  4338. </thead>
  4339. <tbody>
  4340. <tr>
  4341. <td>
  4342. <code>type</code></br>
  4343. <em>
  4344. <a href="#external-secrets.io/v1beta1.ExternalSecretConditionType">
  4345. ExternalSecretConditionType
  4346. </a>
  4347. </em>
  4348. </td>
  4349. <td>
  4350. </td>
  4351. </tr>
  4352. <tr>
  4353. <td>
  4354. <code>status</code></br>
  4355. <em>
  4356. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  4357. Kubernetes core/v1.ConditionStatus
  4358. </a>
  4359. </em>
  4360. </td>
  4361. <td>
  4362. </td>
  4363. </tr>
  4364. <tr>
  4365. <td>
  4366. <code>reason</code></br>
  4367. <em>
  4368. string
  4369. </em>
  4370. </td>
  4371. <td>
  4372. <em>(Optional)</em>
  4373. </td>
  4374. </tr>
  4375. <tr>
  4376. <td>
  4377. <code>message</code></br>
  4378. <em>
  4379. string
  4380. </em>
  4381. </td>
  4382. <td>
  4383. <em>(Optional)</em>
  4384. </td>
  4385. </tr>
  4386. <tr>
  4387. <td>
  4388. <code>lastTransitionTime</code></br>
  4389. <em>
  4390. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  4391. Kubernetes meta/v1.Time
  4392. </a>
  4393. </em>
  4394. </td>
  4395. <td>
  4396. <em>(Optional)</em>
  4397. </td>
  4398. </tr>
  4399. </tbody>
  4400. </table>
  4401. <h3 id="external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget
  4402. </h3>
  4403. <p>
  4404. (<em>Appears on:</em>
  4405. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4406. </p>
  4407. <p>
  4408. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  4409. There can be only one target per ExternalSecret.</p>
  4410. </p>
  4411. <table>
  4412. <thead>
  4413. <tr>
  4414. <th>Field</th>
  4415. <th>Description</th>
  4416. </tr>
  4417. </thead>
  4418. <tbody>
  4419. <tr>
  4420. <td>
  4421. <code>name</code></br>
  4422. <em>
  4423. string
  4424. </em>
  4425. </td>
  4426. <td>
  4427. <em>(Optional)</em>
  4428. <p>Name defines the name of the Secret resource to be managed
  4429. This field is immutable
  4430. Defaults to the .metadata.name of the ExternalSecret resource</p>
  4431. </td>
  4432. </tr>
  4433. <tr>
  4434. <td>
  4435. <code>creationPolicy</code></br>
  4436. <em>
  4437. <a href="#external-secrets.io/v1beta1.ExternalSecretCreationPolicy">
  4438. ExternalSecretCreationPolicy
  4439. </a>
  4440. </em>
  4441. </td>
  4442. <td>
  4443. <em>(Optional)</em>
  4444. <p>CreationPolicy defines rules on how to create the resulting Secret
  4445. Defaults to &lsquo;Owner&rsquo;</p>
  4446. </td>
  4447. </tr>
  4448. <tr>
  4449. <td>
  4450. <code>deletionPolicy</code></br>
  4451. <em>
  4452. <a href="#external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">
  4453. ExternalSecretDeletionPolicy
  4454. </a>
  4455. </em>
  4456. </td>
  4457. <td>
  4458. <em>(Optional)</em>
  4459. <p>DeletionPolicy defines rules on how to delete the resulting Secret
  4460. Defaults to &lsquo;Retain&rsquo;</p>
  4461. </td>
  4462. </tr>
  4463. <tr>
  4464. <td>
  4465. <code>template</code></br>
  4466. <em>
  4467. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">
  4468. ExternalSecretTemplate
  4469. </a>
  4470. </em>
  4471. </td>
  4472. <td>
  4473. <em>(Optional)</em>
  4474. <p>Template defines a blueprint for the created Secret resource.</p>
  4475. </td>
  4476. </tr>
  4477. <tr>
  4478. <td>
  4479. <code>immutable</code></br>
  4480. <em>
  4481. bool
  4482. </em>
  4483. </td>
  4484. <td>
  4485. <em>(Optional)</em>
  4486. <p>Immutable defines if the final secret will be immutable</p>
  4487. </td>
  4488. </tr>
  4489. </tbody>
  4490. </table>
  4491. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate
  4492. </h3>
  4493. <p>
  4494. (<em>Appears on:</em>
  4495. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4496. </p>
  4497. <p>
  4498. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  4499. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  4500. </p>
  4501. <table>
  4502. <thead>
  4503. <tr>
  4504. <th>Field</th>
  4505. <th>Description</th>
  4506. </tr>
  4507. </thead>
  4508. <tbody>
  4509. <tr>
  4510. <td>
  4511. <code>type</code></br>
  4512. <em>
  4513. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#secrettype-v1-core">
  4514. Kubernetes core/v1.SecretType
  4515. </a>
  4516. </em>
  4517. </td>
  4518. <td>
  4519. <em>(Optional)</em>
  4520. </td>
  4521. </tr>
  4522. <tr>
  4523. <td>
  4524. <code>engineVersion</code></br>
  4525. <em>
  4526. <a href="#external-secrets.io/v1beta1.TemplateEngineVersion">
  4527. TemplateEngineVersion
  4528. </a>
  4529. </em>
  4530. </td>
  4531. <td>
  4532. <p>EngineVersion specifies the template engine version
  4533. that should be used to compile/execute the
  4534. template specified in .data and .templateFrom[].</p>
  4535. </td>
  4536. </tr>
  4537. <tr>
  4538. <td>
  4539. <code>metadata</code></br>
  4540. <em>
  4541. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">
  4542. ExternalSecretTemplateMetadata
  4543. </a>
  4544. </em>
  4545. </td>
  4546. <td>
  4547. <em>(Optional)</em>
  4548. </td>
  4549. </tr>
  4550. <tr>
  4551. <td>
  4552. <code>mergePolicy</code></br>
  4553. <em>
  4554. <a href="#external-secrets.io/v1beta1.TemplateMergePolicy">
  4555. TemplateMergePolicy
  4556. </a>
  4557. </em>
  4558. </td>
  4559. <td>
  4560. </td>
  4561. </tr>
  4562. <tr>
  4563. <td>
  4564. <code>data</code></br>
  4565. <em>
  4566. map[string]string
  4567. </em>
  4568. </td>
  4569. <td>
  4570. <em>(Optional)</em>
  4571. </td>
  4572. </tr>
  4573. <tr>
  4574. <td>
  4575. <code>templateFrom</code></br>
  4576. <em>
  4577. <a href="#external-secrets.io/v1beta1.TemplateFrom">
  4578. []TemplateFrom
  4579. </a>
  4580. </em>
  4581. </td>
  4582. <td>
  4583. <em>(Optional)</em>
  4584. </td>
  4585. </tr>
  4586. </tbody>
  4587. </table>
  4588. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  4589. </h3>
  4590. <p>
  4591. (<em>Appears on:</em>
  4592. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  4593. </p>
  4594. <p>
  4595. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  4596. </p>
  4597. <table>
  4598. <thead>
  4599. <tr>
  4600. <th>Field</th>
  4601. <th>Description</th>
  4602. </tr>
  4603. </thead>
  4604. <tbody>
  4605. <tr>
  4606. <td>
  4607. <code>annotations</code></br>
  4608. <em>
  4609. map[string]string
  4610. </em>
  4611. </td>
  4612. <td>
  4613. <em>(Optional)</em>
  4614. </td>
  4615. </tr>
  4616. <tr>
  4617. <td>
  4618. <code>labels</code></br>
  4619. <em>
  4620. map[string]string
  4621. </em>
  4622. </td>
  4623. <td>
  4624. <em>(Optional)</em>
  4625. </td>
  4626. </tr>
  4627. </tbody>
  4628. </table>
  4629. <h3 id="external-secrets.io/v1beta1.ExternalSecretValidator">ExternalSecretValidator
  4630. </h3>
  4631. <p>
  4632. </p>
  4633. <h3 id="external-secrets.io/v1beta1.FakeProvider">FakeProvider
  4634. </h3>
  4635. <p>
  4636. (<em>Appears on:</em>
  4637. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4638. </p>
  4639. <p>
  4640. <p>FakeProvider configures a fake provider that returns static values.</p>
  4641. </p>
  4642. <table>
  4643. <thead>
  4644. <tr>
  4645. <th>Field</th>
  4646. <th>Description</th>
  4647. </tr>
  4648. </thead>
  4649. <tbody>
  4650. <tr>
  4651. <td>
  4652. <code>data</code></br>
  4653. <em>
  4654. <a href="#external-secrets.io/v1beta1.FakeProviderData">
  4655. []FakeProviderData
  4656. </a>
  4657. </em>
  4658. </td>
  4659. <td>
  4660. </td>
  4661. </tr>
  4662. </tbody>
  4663. </table>
  4664. <h3 id="external-secrets.io/v1beta1.FakeProviderData">FakeProviderData
  4665. </h3>
  4666. <p>
  4667. (<em>Appears on:</em>
  4668. <a href="#external-secrets.io/v1beta1.FakeProvider">FakeProvider</a>)
  4669. </p>
  4670. <p>
  4671. </p>
  4672. <table>
  4673. <thead>
  4674. <tr>
  4675. <th>Field</th>
  4676. <th>Description</th>
  4677. </tr>
  4678. </thead>
  4679. <tbody>
  4680. <tr>
  4681. <td>
  4682. <code>key</code></br>
  4683. <em>
  4684. string
  4685. </em>
  4686. </td>
  4687. <td>
  4688. </td>
  4689. </tr>
  4690. <tr>
  4691. <td>
  4692. <code>value</code></br>
  4693. <em>
  4694. string
  4695. </em>
  4696. </td>
  4697. <td>
  4698. </td>
  4699. </tr>
  4700. <tr>
  4701. <td>
  4702. <code>valueMap</code></br>
  4703. <em>
  4704. map[string]string
  4705. </em>
  4706. </td>
  4707. <td>
  4708. <p>Deprecated: ValueMap is deprecated and is intended to be removed in the future, use the <code>value</code> field instead.</p>
  4709. </td>
  4710. </tr>
  4711. <tr>
  4712. <td>
  4713. <code>version</code></br>
  4714. <em>
  4715. string
  4716. </em>
  4717. </td>
  4718. <td>
  4719. </td>
  4720. </tr>
  4721. </tbody>
  4722. </table>
  4723. <h3 id="external-secrets.io/v1beta1.FindName">FindName
  4724. </h3>
  4725. <p>
  4726. (<em>Appears on:</em>
  4727. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  4728. </p>
  4729. <p>
  4730. </p>
  4731. <table>
  4732. <thead>
  4733. <tr>
  4734. <th>Field</th>
  4735. <th>Description</th>
  4736. </tr>
  4737. </thead>
  4738. <tbody>
  4739. <tr>
  4740. <td>
  4741. <code>regexp</code></br>
  4742. <em>
  4743. string
  4744. </em>
  4745. </td>
  4746. <td>
  4747. <em>(Optional)</em>
  4748. <p>Finds secrets base</p>
  4749. </td>
  4750. </tr>
  4751. </tbody>
  4752. </table>
  4753. <h3 id="external-secrets.io/v1beta1.FortanixProvider">FortanixProvider
  4754. </h3>
  4755. <p>
  4756. (<em>Appears on:</em>
  4757. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4758. </p>
  4759. <p>
  4760. </p>
  4761. <table>
  4762. <thead>
  4763. <tr>
  4764. <th>Field</th>
  4765. <th>Description</th>
  4766. </tr>
  4767. </thead>
  4768. <tbody>
  4769. <tr>
  4770. <td>
  4771. <code>apiUrl</code></br>
  4772. <em>
  4773. string
  4774. </em>
  4775. </td>
  4776. <td>
  4777. <p>APIURL is the URL of SDKMS API. Defaults to <code>sdkms.fortanix.com</code>.</p>
  4778. </td>
  4779. </tr>
  4780. <tr>
  4781. <td>
  4782. <code>apiKey</code></br>
  4783. <em>
  4784. <a href="#external-secrets.io/v1beta1.FortanixProviderSecretRef">
  4785. FortanixProviderSecretRef
  4786. </a>
  4787. </em>
  4788. </td>
  4789. <td>
  4790. <p>APIKey is the API token to access SDKMS Applications.</p>
  4791. </td>
  4792. </tr>
  4793. </tbody>
  4794. </table>
  4795. <h3 id="external-secrets.io/v1beta1.FortanixProviderSecretRef">FortanixProviderSecretRef
  4796. </h3>
  4797. <p>
  4798. (<em>Appears on:</em>
  4799. <a href="#external-secrets.io/v1beta1.FortanixProvider">FortanixProvider</a>)
  4800. </p>
  4801. <p>
  4802. </p>
  4803. <table>
  4804. <thead>
  4805. <tr>
  4806. <th>Field</th>
  4807. <th>Description</th>
  4808. </tr>
  4809. </thead>
  4810. <tbody>
  4811. <tr>
  4812. <td>
  4813. <code>secretRef</code></br>
  4814. <em>
  4815. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4816. External Secrets meta/v1.SecretKeySelector
  4817. </a>
  4818. </em>
  4819. </td>
  4820. <td>
  4821. <p>SecretRef is a reference to a secret containing the SDKMS API Key.</p>
  4822. </td>
  4823. </tr>
  4824. </tbody>
  4825. </table>
  4826. <h3 id="external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth
  4827. </h3>
  4828. <p>
  4829. (<em>Appears on:</em>
  4830. <a href="#external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider</a>)
  4831. </p>
  4832. <p>
  4833. </p>
  4834. <table>
  4835. <thead>
  4836. <tr>
  4837. <th>Field</th>
  4838. <th>Description</th>
  4839. </tr>
  4840. </thead>
  4841. <tbody>
  4842. <tr>
  4843. <td>
  4844. <code>secretRef</code></br>
  4845. <em>
  4846. <a href="#external-secrets.io/v1beta1.GCPSMAuthSecretRef">
  4847. GCPSMAuthSecretRef
  4848. </a>
  4849. </em>
  4850. </td>
  4851. <td>
  4852. <em>(Optional)</em>
  4853. </td>
  4854. </tr>
  4855. <tr>
  4856. <td>
  4857. <code>workloadIdentity</code></br>
  4858. <em>
  4859. <a href="#external-secrets.io/v1beta1.GCPWorkloadIdentity">
  4860. GCPWorkloadIdentity
  4861. </a>
  4862. </em>
  4863. </td>
  4864. <td>
  4865. <em>(Optional)</em>
  4866. </td>
  4867. </tr>
  4868. </tbody>
  4869. </table>
  4870. <h3 id="external-secrets.io/v1beta1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  4871. </h3>
  4872. <p>
  4873. (<em>Appears on:</em>
  4874. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  4875. </p>
  4876. <p>
  4877. </p>
  4878. <table>
  4879. <thead>
  4880. <tr>
  4881. <th>Field</th>
  4882. <th>Description</th>
  4883. </tr>
  4884. </thead>
  4885. <tbody>
  4886. <tr>
  4887. <td>
  4888. <code>secretAccessKeySecretRef</code></br>
  4889. <em>
  4890. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4891. External Secrets meta/v1.SecretKeySelector
  4892. </a>
  4893. </em>
  4894. </td>
  4895. <td>
  4896. <em>(Optional)</em>
  4897. <p>The SecretAccessKey is used for authentication</p>
  4898. </td>
  4899. </tr>
  4900. </tbody>
  4901. </table>
  4902. <h3 id="external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider
  4903. </h3>
  4904. <p>
  4905. (<em>Appears on:</em>
  4906. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4907. </p>
  4908. <p>
  4909. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  4910. </p>
  4911. <table>
  4912. <thead>
  4913. <tr>
  4914. <th>Field</th>
  4915. <th>Description</th>
  4916. </tr>
  4917. </thead>
  4918. <tbody>
  4919. <tr>
  4920. <td>
  4921. <code>auth</code></br>
  4922. <em>
  4923. <a href="#external-secrets.io/v1beta1.GCPSMAuth">
  4924. GCPSMAuth
  4925. </a>
  4926. </em>
  4927. </td>
  4928. <td>
  4929. <em>(Optional)</em>
  4930. <p>Auth defines the information necessary to authenticate against GCP</p>
  4931. </td>
  4932. </tr>
  4933. <tr>
  4934. <td>
  4935. <code>projectID</code></br>
  4936. <em>
  4937. string
  4938. </em>
  4939. </td>
  4940. <td>
  4941. <p>ProjectID project where secret is located</p>
  4942. </td>
  4943. </tr>
  4944. </tbody>
  4945. </table>
  4946. <h3 id="external-secrets.io/v1beta1.GCPWorkloadIdentity">GCPWorkloadIdentity
  4947. </h3>
  4948. <p>
  4949. (<em>Appears on:</em>
  4950. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  4951. </p>
  4952. <p>
  4953. </p>
  4954. <table>
  4955. <thead>
  4956. <tr>
  4957. <th>Field</th>
  4958. <th>Description</th>
  4959. </tr>
  4960. </thead>
  4961. <tbody>
  4962. <tr>
  4963. <td>
  4964. <code>serviceAccountRef</code></br>
  4965. <em>
  4966. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  4967. External Secrets meta/v1.ServiceAccountSelector
  4968. </a>
  4969. </em>
  4970. </td>
  4971. <td>
  4972. </td>
  4973. </tr>
  4974. <tr>
  4975. <td>
  4976. <code>clusterLocation</code></br>
  4977. <em>
  4978. string
  4979. </em>
  4980. </td>
  4981. <td>
  4982. </td>
  4983. </tr>
  4984. <tr>
  4985. <td>
  4986. <code>clusterName</code></br>
  4987. <em>
  4988. string
  4989. </em>
  4990. </td>
  4991. <td>
  4992. </td>
  4993. </tr>
  4994. <tr>
  4995. <td>
  4996. <code>clusterProjectID</code></br>
  4997. <em>
  4998. string
  4999. </em>
  5000. </td>
  5001. <td>
  5002. </td>
  5003. </tr>
  5004. </tbody>
  5005. </table>
  5006. <h3 id="external-secrets.io/v1beta1.GeneratorRef">GeneratorRef
  5007. </h3>
  5008. <p>
  5009. (<em>Appears on:</em>
  5010. <a href="#external-secrets.io/v1beta1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  5011. <a href="#external-secrets.io/v1beta1.StoreSourceRef">StoreSourceRef</a>)
  5012. </p>
  5013. <p>
  5014. <p>GeneratorRef points to a generator custom resource.</p>
  5015. </p>
  5016. <table>
  5017. <thead>
  5018. <tr>
  5019. <th>Field</th>
  5020. <th>Description</th>
  5021. </tr>
  5022. </thead>
  5023. <tbody>
  5024. <tr>
  5025. <td>
  5026. <code>apiVersion</code></br>
  5027. <em>
  5028. string
  5029. </em>
  5030. </td>
  5031. <td>
  5032. <p>Specify the apiVersion of the generator resource</p>
  5033. </td>
  5034. </tr>
  5035. <tr>
  5036. <td>
  5037. <code>kind</code></br>
  5038. <em>
  5039. string
  5040. </em>
  5041. </td>
  5042. <td>
  5043. <p>Specify the Kind of the resource, e.g. Password, ACRAccessToken etc.</p>
  5044. </td>
  5045. </tr>
  5046. <tr>
  5047. <td>
  5048. <code>name</code></br>
  5049. <em>
  5050. string
  5051. </em>
  5052. </td>
  5053. <td>
  5054. <p>Specify the name of the generator resource</p>
  5055. </td>
  5056. </tr>
  5057. </tbody>
  5058. </table>
  5059. <h3 id="external-secrets.io/v1beta1.GenericStore">GenericStore
  5060. </h3>
  5061. <p>
  5062. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  5063. or a namespaced SecretStore.</p>
  5064. </p>
  5065. <h3 id="external-secrets.io/v1beta1.GenericStoreValidator">GenericStoreValidator
  5066. </h3>
  5067. <p>
  5068. </p>
  5069. <h3 id="external-secrets.io/v1beta1.GitlabAuth">GitlabAuth
  5070. </h3>
  5071. <p>
  5072. (<em>Appears on:</em>
  5073. <a href="#external-secrets.io/v1beta1.GitlabProvider">GitlabProvider</a>)
  5074. </p>
  5075. <p>
  5076. </p>
  5077. <table>
  5078. <thead>
  5079. <tr>
  5080. <th>Field</th>
  5081. <th>Description</th>
  5082. </tr>
  5083. </thead>
  5084. <tbody>
  5085. <tr>
  5086. <td>
  5087. <code>SecretRef</code></br>
  5088. <em>
  5089. <a href="#external-secrets.io/v1beta1.GitlabSecretRef">
  5090. GitlabSecretRef
  5091. </a>
  5092. </em>
  5093. </td>
  5094. <td>
  5095. </td>
  5096. </tr>
  5097. </tbody>
  5098. </table>
  5099. <h3 id="external-secrets.io/v1beta1.GitlabProvider">GitlabProvider
  5100. </h3>
  5101. <p>
  5102. (<em>Appears on:</em>
  5103. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5104. </p>
  5105. <p>
  5106. <p>Configures a store to sync secrets with a GitLab instance.</p>
  5107. </p>
  5108. <table>
  5109. <thead>
  5110. <tr>
  5111. <th>Field</th>
  5112. <th>Description</th>
  5113. </tr>
  5114. </thead>
  5115. <tbody>
  5116. <tr>
  5117. <td>
  5118. <code>url</code></br>
  5119. <em>
  5120. string
  5121. </em>
  5122. </td>
  5123. <td>
  5124. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  5125. </td>
  5126. </tr>
  5127. <tr>
  5128. <td>
  5129. <code>auth</code></br>
  5130. <em>
  5131. <a href="#external-secrets.io/v1beta1.GitlabAuth">
  5132. GitlabAuth
  5133. </a>
  5134. </em>
  5135. </td>
  5136. <td>
  5137. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  5138. </td>
  5139. </tr>
  5140. <tr>
  5141. <td>
  5142. <code>projectID</code></br>
  5143. <em>
  5144. string
  5145. </em>
  5146. </td>
  5147. <td>
  5148. <p>ProjectID specifies a project where secrets are located.</p>
  5149. </td>
  5150. </tr>
  5151. <tr>
  5152. <td>
  5153. <code>inheritFromGroups</code></br>
  5154. <em>
  5155. bool
  5156. </em>
  5157. </td>
  5158. <td>
  5159. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  5160. </td>
  5161. </tr>
  5162. <tr>
  5163. <td>
  5164. <code>groupIDs</code></br>
  5165. <em>
  5166. []string
  5167. </em>
  5168. </td>
  5169. <td>
  5170. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  5171. </td>
  5172. </tr>
  5173. <tr>
  5174. <td>
  5175. <code>environment</code></br>
  5176. <em>
  5177. string
  5178. </em>
  5179. </td>
  5180. <td>
  5181. <p>Environment environment_scope of gitlab CI/CD variables (Please see <a href="https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment">https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment</a> on how to create environments)</p>
  5182. </td>
  5183. </tr>
  5184. </tbody>
  5185. </table>
  5186. <h3 id="external-secrets.io/v1beta1.GitlabSecretRef">GitlabSecretRef
  5187. </h3>
  5188. <p>
  5189. (<em>Appears on:</em>
  5190. <a href="#external-secrets.io/v1beta1.GitlabAuth">GitlabAuth</a>)
  5191. </p>
  5192. <p>
  5193. </p>
  5194. <table>
  5195. <thead>
  5196. <tr>
  5197. <th>Field</th>
  5198. <th>Description</th>
  5199. </tr>
  5200. </thead>
  5201. <tbody>
  5202. <tr>
  5203. <td>
  5204. <code>accessToken</code></br>
  5205. <em>
  5206. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5207. External Secrets meta/v1.SecretKeySelector
  5208. </a>
  5209. </em>
  5210. </td>
  5211. <td>
  5212. <p>AccessToken is used for authentication.</p>
  5213. </td>
  5214. </tr>
  5215. </tbody>
  5216. </table>
  5217. <h3 id="external-secrets.io/v1beta1.IBMAuth">IBMAuth
  5218. </h3>
  5219. <p>
  5220. (<em>Appears on:</em>
  5221. <a href="#external-secrets.io/v1beta1.IBMProvider">IBMProvider</a>)
  5222. </p>
  5223. <p>
  5224. </p>
  5225. <table>
  5226. <thead>
  5227. <tr>
  5228. <th>Field</th>
  5229. <th>Description</th>
  5230. </tr>
  5231. </thead>
  5232. <tbody>
  5233. <tr>
  5234. <td>
  5235. <code>secretRef</code></br>
  5236. <em>
  5237. <a href="#external-secrets.io/v1beta1.IBMAuthSecretRef">
  5238. IBMAuthSecretRef
  5239. </a>
  5240. </em>
  5241. </td>
  5242. <td>
  5243. </td>
  5244. </tr>
  5245. <tr>
  5246. <td>
  5247. <code>containerAuth</code></br>
  5248. <em>
  5249. <a href="#external-secrets.io/v1beta1.IBMAuthContainerAuth">
  5250. IBMAuthContainerAuth
  5251. </a>
  5252. </em>
  5253. </td>
  5254. <td>
  5255. </td>
  5256. </tr>
  5257. </tbody>
  5258. </table>
  5259. <h3 id="external-secrets.io/v1beta1.IBMAuthContainerAuth">IBMAuthContainerAuth
  5260. </h3>
  5261. <p>
  5262. (<em>Appears on:</em>
  5263. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  5264. </p>
  5265. <p>
  5266. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  5267. </p>
  5268. <table>
  5269. <thead>
  5270. <tr>
  5271. <th>Field</th>
  5272. <th>Description</th>
  5273. </tr>
  5274. </thead>
  5275. <tbody>
  5276. <tr>
  5277. <td>
  5278. <code>profile</code></br>
  5279. <em>
  5280. string
  5281. </em>
  5282. </td>
  5283. <td>
  5284. <p>the IBM Trusted Profile</p>
  5285. </td>
  5286. </tr>
  5287. <tr>
  5288. <td>
  5289. <code>tokenLocation</code></br>
  5290. <em>
  5291. string
  5292. </em>
  5293. </td>
  5294. <td>
  5295. <p>Location the token is mounted on the pod</p>
  5296. </td>
  5297. </tr>
  5298. <tr>
  5299. <td>
  5300. <code>iamEndpoint</code></br>
  5301. <em>
  5302. string
  5303. </em>
  5304. </td>
  5305. <td>
  5306. </td>
  5307. </tr>
  5308. </tbody>
  5309. </table>
  5310. <h3 id="external-secrets.io/v1beta1.IBMAuthSecretRef">IBMAuthSecretRef
  5311. </h3>
  5312. <p>
  5313. (<em>Appears on:</em>
  5314. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  5315. </p>
  5316. <p>
  5317. </p>
  5318. <table>
  5319. <thead>
  5320. <tr>
  5321. <th>Field</th>
  5322. <th>Description</th>
  5323. </tr>
  5324. </thead>
  5325. <tbody>
  5326. <tr>
  5327. <td>
  5328. <code>secretApiKeySecretRef</code></br>
  5329. <em>
  5330. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5331. External Secrets meta/v1.SecretKeySelector
  5332. </a>
  5333. </em>
  5334. </td>
  5335. <td>
  5336. <p>The SecretAccessKey is used for authentication</p>
  5337. </td>
  5338. </tr>
  5339. </tbody>
  5340. </table>
  5341. <h3 id="external-secrets.io/v1beta1.IBMProvider">IBMProvider
  5342. </h3>
  5343. <p>
  5344. (<em>Appears on:</em>
  5345. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5346. </p>
  5347. <p>
  5348. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  5349. backend.</p>
  5350. </p>
  5351. <table>
  5352. <thead>
  5353. <tr>
  5354. <th>Field</th>
  5355. <th>Description</th>
  5356. </tr>
  5357. </thead>
  5358. <tbody>
  5359. <tr>
  5360. <td>
  5361. <code>auth</code></br>
  5362. <em>
  5363. <a href="#external-secrets.io/v1beta1.IBMAuth">
  5364. IBMAuth
  5365. </a>
  5366. </em>
  5367. </td>
  5368. <td>
  5369. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  5370. </td>
  5371. </tr>
  5372. <tr>
  5373. <td>
  5374. <code>serviceUrl</code></br>
  5375. <em>
  5376. string
  5377. </em>
  5378. </td>
  5379. <td>
  5380. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  5381. </td>
  5382. </tr>
  5383. </tbody>
  5384. </table>
  5385. <h3 id="external-secrets.io/v1beta1.KeeperSecurityProvider">KeeperSecurityProvider
  5386. </h3>
  5387. <p>
  5388. (<em>Appears on:</em>
  5389. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5390. </p>
  5391. <p>
  5392. <p>KeeperSecurityProvider Configures a store to sync secrets using Keeper Security.</p>
  5393. </p>
  5394. <table>
  5395. <thead>
  5396. <tr>
  5397. <th>Field</th>
  5398. <th>Description</th>
  5399. </tr>
  5400. </thead>
  5401. <tbody>
  5402. <tr>
  5403. <td>
  5404. <code>authRef</code></br>
  5405. <em>
  5406. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5407. External Secrets meta/v1.SecretKeySelector
  5408. </a>
  5409. </em>
  5410. </td>
  5411. <td>
  5412. </td>
  5413. </tr>
  5414. <tr>
  5415. <td>
  5416. <code>folderID</code></br>
  5417. <em>
  5418. string
  5419. </em>
  5420. </td>
  5421. <td>
  5422. </td>
  5423. </tr>
  5424. </tbody>
  5425. </table>
  5426. <h3 id="external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth
  5427. </h3>
  5428. <p>
  5429. (<em>Appears on:</em>
  5430. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  5431. </p>
  5432. <p>
  5433. </p>
  5434. <table>
  5435. <thead>
  5436. <tr>
  5437. <th>Field</th>
  5438. <th>Description</th>
  5439. </tr>
  5440. </thead>
  5441. <tbody>
  5442. <tr>
  5443. <td>
  5444. <code>cert</code></br>
  5445. <em>
  5446. <a href="#external-secrets.io/v1beta1.CertAuth">
  5447. CertAuth
  5448. </a>
  5449. </em>
  5450. </td>
  5451. <td>
  5452. <em>(Optional)</em>
  5453. <p>has both clientCert and clientKey as secretKeySelector</p>
  5454. </td>
  5455. </tr>
  5456. <tr>
  5457. <td>
  5458. <code>token</code></br>
  5459. <em>
  5460. <a href="#external-secrets.io/v1beta1.TokenAuth">
  5461. TokenAuth
  5462. </a>
  5463. </em>
  5464. </td>
  5465. <td>
  5466. <em>(Optional)</em>
  5467. <p>use static token to authenticate with</p>
  5468. </td>
  5469. </tr>
  5470. <tr>
  5471. <td>
  5472. <code>serviceAccount</code></br>
  5473. <em>
  5474. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  5475. External Secrets meta/v1.ServiceAccountSelector
  5476. </a>
  5477. </em>
  5478. </td>
  5479. <td>
  5480. <em>(Optional)</em>
  5481. <p>points to a service account that should be used for authentication</p>
  5482. </td>
  5483. </tr>
  5484. </tbody>
  5485. </table>
  5486. <h3 id="external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider
  5487. </h3>
  5488. <p>
  5489. (<em>Appears on:</em>
  5490. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5491. </p>
  5492. <p>
  5493. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  5494. </p>
  5495. <table>
  5496. <thead>
  5497. <tr>
  5498. <th>Field</th>
  5499. <th>Description</th>
  5500. </tr>
  5501. </thead>
  5502. <tbody>
  5503. <tr>
  5504. <td>
  5505. <code>server</code></br>
  5506. <em>
  5507. <a href="#external-secrets.io/v1beta1.KubernetesServer">
  5508. KubernetesServer
  5509. </a>
  5510. </em>
  5511. </td>
  5512. <td>
  5513. <p>configures the Kubernetes server Address.</p>
  5514. </td>
  5515. </tr>
  5516. <tr>
  5517. <td>
  5518. <code>auth</code></br>
  5519. <em>
  5520. <a href="#external-secrets.io/v1beta1.KubernetesAuth">
  5521. KubernetesAuth
  5522. </a>
  5523. </em>
  5524. </td>
  5525. <td>
  5526. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  5527. </td>
  5528. </tr>
  5529. <tr>
  5530. <td>
  5531. <code>remoteNamespace</code></br>
  5532. <em>
  5533. string
  5534. </em>
  5535. </td>
  5536. <td>
  5537. <em>(Optional)</em>
  5538. <p>Remote namespace to fetch the secrets from</p>
  5539. </td>
  5540. </tr>
  5541. </tbody>
  5542. </table>
  5543. <h3 id="external-secrets.io/v1beta1.KubernetesServer">KubernetesServer
  5544. </h3>
  5545. <p>
  5546. (<em>Appears on:</em>
  5547. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  5548. </p>
  5549. <p>
  5550. </p>
  5551. <table>
  5552. <thead>
  5553. <tr>
  5554. <th>Field</th>
  5555. <th>Description</th>
  5556. </tr>
  5557. </thead>
  5558. <tbody>
  5559. <tr>
  5560. <td>
  5561. <code>url</code></br>
  5562. <em>
  5563. string
  5564. </em>
  5565. </td>
  5566. <td>
  5567. <em>(Optional)</em>
  5568. <p>configures the Kubernetes server Address.</p>
  5569. </td>
  5570. </tr>
  5571. <tr>
  5572. <td>
  5573. <code>caBundle</code></br>
  5574. <em>
  5575. []byte
  5576. </em>
  5577. </td>
  5578. <td>
  5579. <em>(Optional)</em>
  5580. <p>CABundle is a base64-encoded CA certificate</p>
  5581. </td>
  5582. </tr>
  5583. <tr>
  5584. <td>
  5585. <code>caProvider</code></br>
  5586. <em>
  5587. <a href="#external-secrets.io/v1beta1.CAProvider">
  5588. CAProvider
  5589. </a>
  5590. </em>
  5591. </td>
  5592. <td>
  5593. <em>(Optional)</em>
  5594. <p>see: <a href="https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  5595. </td>
  5596. </tr>
  5597. </tbody>
  5598. </table>
  5599. <h3 id="external-secrets.io/v1beta1.NoSecretError">NoSecretError
  5600. </h3>
  5601. <p>
  5602. <p>NoSecretError shall be returned when a GetSecret can not find the
  5603. desired secret. This is used for deletionPolicy.</p>
  5604. </p>
  5605. <h3 id="external-secrets.io/v1beta1.OnboardbaseAuthSecretRef">OnboardbaseAuthSecretRef
  5606. </h3>
  5607. <p>
  5608. (<em>Appears on:</em>
  5609. <a href="#external-secrets.io/v1beta1.OnboardbaseProvider">OnboardbaseProvider</a>)
  5610. </p>
  5611. <p>
  5612. <p>OnboardbaseAuthSecretRef holds secret references for onboardbase API Key credentials.</p>
  5613. </p>
  5614. <table>
  5615. <thead>
  5616. <tr>
  5617. <th>Field</th>
  5618. <th>Description</th>
  5619. </tr>
  5620. </thead>
  5621. <tbody>
  5622. <tr>
  5623. <td>
  5624. <code>apiKeyRef</code></br>
  5625. <em>
  5626. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5627. External Secrets meta/v1.SecretKeySelector
  5628. </a>
  5629. </em>
  5630. </td>
  5631. <td>
  5632. <p>OnboardbaseAPIKey is the APIKey generated by an admin account.
  5633. It is used to recognize and authorize access to a project and environment within onboardbase</p>
  5634. </td>
  5635. </tr>
  5636. <tr>
  5637. <td>
  5638. <code>passcodeRef</code></br>
  5639. <em>
  5640. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5641. External Secrets meta/v1.SecretKeySelector
  5642. </a>
  5643. </em>
  5644. </td>
  5645. <td>
  5646. <p>OnboardbasePasscode is the passcode attached to the API Key</p>
  5647. </td>
  5648. </tr>
  5649. </tbody>
  5650. </table>
  5651. <h3 id="external-secrets.io/v1beta1.OnboardbaseProvider">OnboardbaseProvider
  5652. </h3>
  5653. <p>
  5654. (<em>Appears on:</em>
  5655. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5656. </p>
  5657. <p>
  5658. <p>OnboardbaseProvider configures a store to sync secrets using the Onboardbase provider.
  5659. Project and Config are required if not using a Service Token.</p>
  5660. </p>
  5661. <table>
  5662. <thead>
  5663. <tr>
  5664. <th>Field</th>
  5665. <th>Description</th>
  5666. </tr>
  5667. </thead>
  5668. <tbody>
  5669. <tr>
  5670. <td>
  5671. <code>auth</code></br>
  5672. <em>
  5673. <a href="#external-secrets.io/v1beta1.OnboardbaseAuthSecretRef">
  5674. OnboardbaseAuthSecretRef
  5675. </a>
  5676. </em>
  5677. </td>
  5678. <td>
  5679. <p>Auth configures how the Operator authenticates with the Onboardbase API</p>
  5680. </td>
  5681. </tr>
  5682. <tr>
  5683. <td>
  5684. <code>apiHost</code></br>
  5685. <em>
  5686. string
  5687. </em>
  5688. </td>
  5689. <td>
  5690. <p>APIHost use this to configure the host url for the API for selfhosted installation, default is <a href="https://public.onboardbase.com/api/v1/">https://public.onboardbase.com/api/v1/</a></p>
  5691. </td>
  5692. </tr>
  5693. <tr>
  5694. <td>
  5695. <code>project</code></br>
  5696. <em>
  5697. string
  5698. </em>
  5699. </td>
  5700. <td>
  5701. <p>Project is an onboardbase project that the secrets should be pulled from</p>
  5702. </td>
  5703. </tr>
  5704. <tr>
  5705. <td>
  5706. <code>environment</code></br>
  5707. <em>
  5708. string
  5709. </em>
  5710. </td>
  5711. <td>
  5712. <p>Environment is the name of an environmnent within a project to pull the secrets from</p>
  5713. </td>
  5714. </tr>
  5715. </tbody>
  5716. </table>
  5717. <h3 id="external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth
  5718. </h3>
  5719. <p>
  5720. (<em>Appears on:</em>
  5721. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider</a>)
  5722. </p>
  5723. <p>
  5724. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  5725. </p>
  5726. <table>
  5727. <thead>
  5728. <tr>
  5729. <th>Field</th>
  5730. <th>Description</th>
  5731. </tr>
  5732. </thead>
  5733. <tbody>
  5734. <tr>
  5735. <td>
  5736. <code>secretRef</code></br>
  5737. <em>
  5738. <a href="#external-secrets.io/v1beta1.OnePasswordAuthSecretRef">
  5739. OnePasswordAuthSecretRef
  5740. </a>
  5741. </em>
  5742. </td>
  5743. <td>
  5744. </td>
  5745. </tr>
  5746. </tbody>
  5747. </table>
  5748. <h3 id="external-secrets.io/v1beta1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  5749. </h3>
  5750. <p>
  5751. (<em>Appears on:</em>
  5752. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth</a>)
  5753. </p>
  5754. <p>
  5755. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  5756. </p>
  5757. <table>
  5758. <thead>
  5759. <tr>
  5760. <th>Field</th>
  5761. <th>Description</th>
  5762. </tr>
  5763. </thead>
  5764. <tbody>
  5765. <tr>
  5766. <td>
  5767. <code>connectTokenSecretRef</code></br>
  5768. <em>
  5769. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5770. External Secrets meta/v1.SecretKeySelector
  5771. </a>
  5772. </em>
  5773. </td>
  5774. <td>
  5775. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  5776. </td>
  5777. </tr>
  5778. </tbody>
  5779. </table>
  5780. <h3 id="external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider
  5781. </h3>
  5782. <p>
  5783. (<em>Appears on:</em>
  5784. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5785. </p>
  5786. <p>
  5787. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  5788. </p>
  5789. <table>
  5790. <thead>
  5791. <tr>
  5792. <th>Field</th>
  5793. <th>Description</th>
  5794. </tr>
  5795. </thead>
  5796. <tbody>
  5797. <tr>
  5798. <td>
  5799. <code>auth</code></br>
  5800. <em>
  5801. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">
  5802. OnePasswordAuth
  5803. </a>
  5804. </em>
  5805. </td>
  5806. <td>
  5807. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  5808. </td>
  5809. </tr>
  5810. <tr>
  5811. <td>
  5812. <code>connectHost</code></br>
  5813. <em>
  5814. string
  5815. </em>
  5816. </td>
  5817. <td>
  5818. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  5819. </td>
  5820. </tr>
  5821. <tr>
  5822. <td>
  5823. <code>vaults</code></br>
  5824. <em>
  5825. map[string]int
  5826. </em>
  5827. </td>
  5828. <td>
  5829. <p>Vaults defines which OnePassword vaults to search in which order</p>
  5830. </td>
  5831. </tr>
  5832. </tbody>
  5833. </table>
  5834. <h3 id="external-secrets.io/v1beta1.OracleAuth">OracleAuth
  5835. </h3>
  5836. <p>
  5837. (<em>Appears on:</em>
  5838. <a href="#external-secrets.io/v1beta1.OracleProvider">OracleProvider</a>)
  5839. </p>
  5840. <p>
  5841. </p>
  5842. <table>
  5843. <thead>
  5844. <tr>
  5845. <th>Field</th>
  5846. <th>Description</th>
  5847. </tr>
  5848. </thead>
  5849. <tbody>
  5850. <tr>
  5851. <td>
  5852. <code>tenancy</code></br>
  5853. <em>
  5854. string
  5855. </em>
  5856. </td>
  5857. <td>
  5858. <p>Tenancy is the tenancy OCID where user is located.</p>
  5859. </td>
  5860. </tr>
  5861. <tr>
  5862. <td>
  5863. <code>user</code></br>
  5864. <em>
  5865. string
  5866. </em>
  5867. </td>
  5868. <td>
  5869. <p>User is an access OCID specific to the account.</p>
  5870. </td>
  5871. </tr>
  5872. <tr>
  5873. <td>
  5874. <code>secretRef</code></br>
  5875. <em>
  5876. <a href="#external-secrets.io/v1beta1.OracleSecretRef">
  5877. OracleSecretRef
  5878. </a>
  5879. </em>
  5880. </td>
  5881. <td>
  5882. <p>SecretRef to pass through sensitive information.</p>
  5883. </td>
  5884. </tr>
  5885. </tbody>
  5886. </table>
  5887. <h3 id="external-secrets.io/v1beta1.OraclePrincipalType">OraclePrincipalType
  5888. (<code>string</code> alias)</p></h3>
  5889. <p>
  5890. (<em>Appears on:</em>
  5891. <a href="#external-secrets.io/v1beta1.OracleProvider">OracleProvider</a>)
  5892. </p>
  5893. <p>
  5894. </p>
  5895. <table>
  5896. <thead>
  5897. <tr>
  5898. <th>Value</th>
  5899. <th>Description</th>
  5900. </tr>
  5901. </thead>
  5902. <tbody><tr><td><p>&#34;InstancePrincipal&#34;</p></td>
  5903. <td><p>InstancePrincipal represents a instance principal.</p>
  5904. </td>
  5905. </tr><tr><td><p>&#34;UserPrincipal&#34;</p></td>
  5906. <td><p>UserPrincipal represents a user principal.</p>
  5907. </td>
  5908. </tr><tr><td><p>&#34;Workload&#34;</p></td>
  5909. <td><p>WorkloadPrincipal represents a workload principal.</p>
  5910. </td>
  5911. </tr></tbody>
  5912. </table>
  5913. <h3 id="external-secrets.io/v1beta1.OracleProvider">OracleProvider
  5914. </h3>
  5915. <p>
  5916. (<em>Appears on:</em>
  5917. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5918. </p>
  5919. <p>
  5920. <p>Configures an store to sync secrets using a Oracle Vault
  5921. backend.</p>
  5922. </p>
  5923. <table>
  5924. <thead>
  5925. <tr>
  5926. <th>Field</th>
  5927. <th>Description</th>
  5928. </tr>
  5929. </thead>
  5930. <tbody>
  5931. <tr>
  5932. <td>
  5933. <code>region</code></br>
  5934. <em>
  5935. string
  5936. </em>
  5937. </td>
  5938. <td>
  5939. <p>Region is the region where vault is located.</p>
  5940. </td>
  5941. </tr>
  5942. <tr>
  5943. <td>
  5944. <code>vault</code></br>
  5945. <em>
  5946. string
  5947. </em>
  5948. </td>
  5949. <td>
  5950. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  5951. </td>
  5952. </tr>
  5953. <tr>
  5954. <td>
  5955. <code>compartment</code></br>
  5956. <em>
  5957. string
  5958. </em>
  5959. </td>
  5960. <td>
  5961. <em>(Optional)</em>
  5962. <p>Compartment is the vault compartment OCID.
  5963. Required for PushSecret</p>
  5964. </td>
  5965. </tr>
  5966. <tr>
  5967. <td>
  5968. <code>encryptionKey</code></br>
  5969. <em>
  5970. string
  5971. </em>
  5972. </td>
  5973. <td>
  5974. <em>(Optional)</em>
  5975. <p>EncryptionKey is the OCID of the encryption key within the vault.
  5976. Required for PushSecret</p>
  5977. </td>
  5978. </tr>
  5979. <tr>
  5980. <td>
  5981. <code>principalType</code></br>
  5982. <em>
  5983. <a href="#external-secrets.io/v1beta1.OraclePrincipalType">
  5984. OraclePrincipalType
  5985. </a>
  5986. </em>
  5987. </td>
  5988. <td>
  5989. <em>(Optional)</em>
  5990. <p>The type of principal to use for authentication. If left blank, the Auth struct will
  5991. determine the principal type. This optional field must be specified if using
  5992. workload identity.</p>
  5993. </td>
  5994. </tr>
  5995. <tr>
  5996. <td>
  5997. <code>auth</code></br>
  5998. <em>
  5999. <a href="#external-secrets.io/v1beta1.OracleAuth">
  6000. OracleAuth
  6001. </a>
  6002. </em>
  6003. </td>
  6004. <td>
  6005. <em>(Optional)</em>
  6006. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  6007. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  6008. </td>
  6009. </tr>
  6010. <tr>
  6011. <td>
  6012. <code>serviceAccountRef</code></br>
  6013. <em>
  6014. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6015. External Secrets meta/v1.ServiceAccountSelector
  6016. </a>
  6017. </em>
  6018. </td>
  6019. <td>
  6020. <em>(Optional)</em>
  6021. <p>ServiceAccountRef specified the service account
  6022. that should be used when authenticating with WorkloadIdentity.</p>
  6023. </td>
  6024. </tr>
  6025. </tbody>
  6026. </table>
  6027. <h3 id="external-secrets.io/v1beta1.OracleSecretRef">OracleSecretRef
  6028. </h3>
  6029. <p>
  6030. (<em>Appears on:</em>
  6031. <a href="#external-secrets.io/v1beta1.OracleAuth">OracleAuth</a>)
  6032. </p>
  6033. <p>
  6034. </p>
  6035. <table>
  6036. <thead>
  6037. <tr>
  6038. <th>Field</th>
  6039. <th>Description</th>
  6040. </tr>
  6041. </thead>
  6042. <tbody>
  6043. <tr>
  6044. <td>
  6045. <code>privatekey</code></br>
  6046. <em>
  6047. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6048. External Secrets meta/v1.SecretKeySelector
  6049. </a>
  6050. </em>
  6051. </td>
  6052. <td>
  6053. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  6054. </td>
  6055. </tr>
  6056. <tr>
  6057. <td>
  6058. <code>fingerprint</code></br>
  6059. <em>
  6060. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6061. External Secrets meta/v1.SecretKeySelector
  6062. </a>
  6063. </em>
  6064. </td>
  6065. <td>
  6066. <p>Fingerprint is the fingerprint of the API private key.</p>
  6067. </td>
  6068. </tr>
  6069. </tbody>
  6070. </table>
  6071. <h3 id="external-secrets.io/v1beta1.PassboltAuth">PassboltAuth
  6072. </h3>
  6073. <p>
  6074. (<em>Appears on:</em>
  6075. <a href="#external-secrets.io/v1beta1.PassboltProvider">PassboltProvider</a>)
  6076. </p>
  6077. <p>
  6078. <p>Passbolt contains a secretRef for the passbolt credentials.</p>
  6079. </p>
  6080. <table>
  6081. <thead>
  6082. <tr>
  6083. <th>Field</th>
  6084. <th>Description</th>
  6085. </tr>
  6086. </thead>
  6087. <tbody>
  6088. <tr>
  6089. <td>
  6090. <code>passwordSecretRef</code></br>
  6091. <em>
  6092. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6093. External Secrets meta/v1.SecretKeySelector
  6094. </a>
  6095. </em>
  6096. </td>
  6097. <td>
  6098. </td>
  6099. </tr>
  6100. <tr>
  6101. <td>
  6102. <code>privateKeySecretRef</code></br>
  6103. <em>
  6104. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6105. External Secrets meta/v1.SecretKeySelector
  6106. </a>
  6107. </em>
  6108. </td>
  6109. <td>
  6110. </td>
  6111. </tr>
  6112. </tbody>
  6113. </table>
  6114. <h3 id="external-secrets.io/v1beta1.PassboltProvider">PassboltProvider
  6115. </h3>
  6116. <p>
  6117. (<em>Appears on:</em>
  6118. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6119. </p>
  6120. <p>
  6121. </p>
  6122. <table>
  6123. <thead>
  6124. <tr>
  6125. <th>Field</th>
  6126. <th>Description</th>
  6127. </tr>
  6128. </thead>
  6129. <tbody>
  6130. <tr>
  6131. <td>
  6132. <code>auth</code></br>
  6133. <em>
  6134. <a href="#external-secrets.io/v1beta1.PassboltAuth">
  6135. PassboltAuth
  6136. </a>
  6137. </em>
  6138. </td>
  6139. <td>
  6140. <p>Auth defines the information necessary to authenticate against Passbolt Server</p>
  6141. </td>
  6142. </tr>
  6143. <tr>
  6144. <td>
  6145. <code>host</code></br>
  6146. <em>
  6147. string
  6148. </em>
  6149. </td>
  6150. <td>
  6151. <p>Host defines the Passbolt Server to connect to</p>
  6152. </td>
  6153. </tr>
  6154. </tbody>
  6155. </table>
  6156. <h3 id="external-secrets.io/v1beta1.PasswordDepotAuth">PasswordDepotAuth
  6157. </h3>
  6158. <p>
  6159. (<em>Appears on:</em>
  6160. <a href="#external-secrets.io/v1beta1.PasswordDepotProvider">PasswordDepotProvider</a>)
  6161. </p>
  6162. <p>
  6163. </p>
  6164. <table>
  6165. <thead>
  6166. <tr>
  6167. <th>Field</th>
  6168. <th>Description</th>
  6169. </tr>
  6170. </thead>
  6171. <tbody>
  6172. <tr>
  6173. <td>
  6174. <code>secretRef</code></br>
  6175. <em>
  6176. <a href="#external-secrets.io/v1beta1.PasswordDepotSecretRef">
  6177. PasswordDepotSecretRef
  6178. </a>
  6179. </em>
  6180. </td>
  6181. <td>
  6182. </td>
  6183. </tr>
  6184. </tbody>
  6185. </table>
  6186. <h3 id="external-secrets.io/v1beta1.PasswordDepotProvider">PasswordDepotProvider
  6187. </h3>
  6188. <p>
  6189. (<em>Appears on:</em>
  6190. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6191. </p>
  6192. <p>
  6193. <p>Configures a store to sync secrets with a Password Depot instance.</p>
  6194. </p>
  6195. <table>
  6196. <thead>
  6197. <tr>
  6198. <th>Field</th>
  6199. <th>Description</th>
  6200. </tr>
  6201. </thead>
  6202. <tbody>
  6203. <tr>
  6204. <td>
  6205. <code>host</code></br>
  6206. <em>
  6207. string
  6208. </em>
  6209. </td>
  6210. <td>
  6211. <p>URL configures the Password Depot instance URL.</p>
  6212. </td>
  6213. </tr>
  6214. <tr>
  6215. <td>
  6216. <code>database</code></br>
  6217. <em>
  6218. string
  6219. </em>
  6220. </td>
  6221. <td>
  6222. <p>Database to use as source</p>
  6223. </td>
  6224. </tr>
  6225. <tr>
  6226. <td>
  6227. <code>auth</code></br>
  6228. <em>
  6229. <a href="#external-secrets.io/v1beta1.PasswordDepotAuth">
  6230. PasswordDepotAuth
  6231. </a>
  6232. </em>
  6233. </td>
  6234. <td>
  6235. <p>Auth configures how secret-manager authenticates with a Password Depot instance.</p>
  6236. </td>
  6237. </tr>
  6238. </tbody>
  6239. </table>
  6240. <h3 id="external-secrets.io/v1beta1.PasswordDepotSecretRef">PasswordDepotSecretRef
  6241. </h3>
  6242. <p>
  6243. (<em>Appears on:</em>
  6244. <a href="#external-secrets.io/v1beta1.PasswordDepotAuth">PasswordDepotAuth</a>)
  6245. </p>
  6246. <p>
  6247. </p>
  6248. <table>
  6249. <thead>
  6250. <tr>
  6251. <th>Field</th>
  6252. <th>Description</th>
  6253. </tr>
  6254. </thead>
  6255. <tbody>
  6256. <tr>
  6257. <td>
  6258. <code>credentials</code></br>
  6259. <em>
  6260. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6261. External Secrets meta/v1.SecretKeySelector
  6262. </a>
  6263. </em>
  6264. </td>
  6265. <td>
  6266. <em>(Optional)</em>
  6267. <p>Username / Password is used for authentication.</p>
  6268. </td>
  6269. </tr>
  6270. </tbody>
  6271. </table>
  6272. <h3 id="external-secrets.io/v1beta1.Provider">Provider
  6273. </h3>
  6274. <p>
  6275. <p>Provider is a common interface for interacting with secret backends.</p>
  6276. </p>
  6277. <h3 id="external-secrets.io/v1beta1.PulumiProvider">PulumiProvider
  6278. </h3>
  6279. <p>
  6280. (<em>Appears on:</em>
  6281. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6282. </p>
  6283. <p>
  6284. </p>
  6285. <table>
  6286. <thead>
  6287. <tr>
  6288. <th>Field</th>
  6289. <th>Description</th>
  6290. </tr>
  6291. </thead>
  6292. <tbody>
  6293. <tr>
  6294. <td>
  6295. <code>apiUrl</code></br>
  6296. <em>
  6297. string
  6298. </em>
  6299. </td>
  6300. <td>
  6301. <p>APIURL is the URL of the Pulumi API.</p>
  6302. </td>
  6303. </tr>
  6304. <tr>
  6305. <td>
  6306. <code>accessToken</code></br>
  6307. <em>
  6308. <a href="#external-secrets.io/v1beta1.PulumiProviderSecretRef">
  6309. PulumiProviderSecretRef
  6310. </a>
  6311. </em>
  6312. </td>
  6313. <td>
  6314. <p>AccessToken is the access tokens to sign in to the Pulumi Cloud Console.</p>
  6315. </td>
  6316. </tr>
  6317. <tr>
  6318. <td>
  6319. <code>organization</code></br>
  6320. <em>
  6321. string
  6322. </em>
  6323. </td>
  6324. <td>
  6325. <p>Organization are a space to collaborate on shared projects and stacks.
  6326. To create a new organization, visit <a href="https://app.pulumi.com/">https://app.pulumi.com/</a> and click &ldquo;New Organization&rdquo;.</p>
  6327. </td>
  6328. </tr>
  6329. <tr>
  6330. <td>
  6331. <code>environment</code></br>
  6332. <em>
  6333. string
  6334. </em>
  6335. </td>
  6336. <td>
  6337. <p>Environment are YAML documents composed of static key-value pairs, programmatic expressions,
  6338. dynamically retrieved values from supported providers including all major clouds,
  6339. and other Pulumi ESC environments.
  6340. To create a new environment, visit <a href="https://www.pulumi.com/docs/esc/environments/">https://www.pulumi.com/docs/esc/environments/</a> for more information.</p>
  6341. </td>
  6342. </tr>
  6343. </tbody>
  6344. </table>
  6345. <h3 id="external-secrets.io/v1beta1.PulumiProviderSecretRef">PulumiProviderSecretRef
  6346. </h3>
  6347. <p>
  6348. (<em>Appears on:</em>
  6349. <a href="#external-secrets.io/v1beta1.PulumiProvider">PulumiProvider</a>)
  6350. </p>
  6351. <p>
  6352. </p>
  6353. <table>
  6354. <thead>
  6355. <tr>
  6356. <th>Field</th>
  6357. <th>Description</th>
  6358. </tr>
  6359. </thead>
  6360. <tbody>
  6361. <tr>
  6362. <td>
  6363. <code>secretRef</code></br>
  6364. <em>
  6365. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6366. External Secrets meta/v1.SecretKeySelector
  6367. </a>
  6368. </em>
  6369. </td>
  6370. <td>
  6371. <p>SecretRef is a reference to a secret containing the Pulumi API token.</p>
  6372. </td>
  6373. </tr>
  6374. </tbody>
  6375. </table>
  6376. <h3 id="external-secrets.io/v1beta1.PushSecretData">PushSecretData
  6377. </h3>
  6378. <p>
  6379. <p>PushSecretData is an interface to allow using v1alpha1.PushSecretData content in Provider registered in v1beta1.</p>
  6380. </p>
  6381. <h3 id="external-secrets.io/v1beta1.PushSecretRemoteRef">PushSecretRemoteRef
  6382. </h3>
  6383. <p>
  6384. <p>PushSecretRemoteRef is an interface to allow using v1alpha1.PushSecretRemoteRef in Provider registered in v1beta1.</p>
  6385. </p>
  6386. <h3 id="external-secrets.io/v1beta1.ScalewayProvider">ScalewayProvider
  6387. </h3>
  6388. <p>
  6389. (<em>Appears on:</em>
  6390. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6391. </p>
  6392. <p>
  6393. </p>
  6394. <table>
  6395. <thead>
  6396. <tr>
  6397. <th>Field</th>
  6398. <th>Description</th>
  6399. </tr>
  6400. </thead>
  6401. <tbody>
  6402. <tr>
  6403. <td>
  6404. <code>apiUrl</code></br>
  6405. <em>
  6406. string
  6407. </em>
  6408. </td>
  6409. <td>
  6410. <em>(Optional)</em>
  6411. <p>APIURL is the url of the api to use. Defaults to <a href="https://api.scaleway.com">https://api.scaleway.com</a></p>
  6412. </td>
  6413. </tr>
  6414. <tr>
  6415. <td>
  6416. <code>region</code></br>
  6417. <em>
  6418. string
  6419. </em>
  6420. </td>
  6421. <td>
  6422. <p>Region where your secrets are located: <a href="https://developers.scaleway.com/en/quickstart/#region-and-zone">https://developers.scaleway.com/en/quickstart/#region-and-zone</a></p>
  6423. </td>
  6424. </tr>
  6425. <tr>
  6426. <td>
  6427. <code>projectId</code></br>
  6428. <em>
  6429. string
  6430. </em>
  6431. </td>
  6432. <td>
  6433. <p>ProjectID is the id of your project, which you can find in the console: <a href="https://console.scaleway.com/project/settings">https://console.scaleway.com/project/settings</a></p>
  6434. </td>
  6435. </tr>
  6436. <tr>
  6437. <td>
  6438. <code>accessKey</code></br>
  6439. <em>
  6440. <a href="#external-secrets.io/v1beta1.ScalewayProviderSecretRef">
  6441. ScalewayProviderSecretRef
  6442. </a>
  6443. </em>
  6444. </td>
  6445. <td>
  6446. <p>AccessKey is the non-secret part of the api key.</p>
  6447. </td>
  6448. </tr>
  6449. <tr>
  6450. <td>
  6451. <code>secretKey</code></br>
  6452. <em>
  6453. <a href="#external-secrets.io/v1beta1.ScalewayProviderSecretRef">
  6454. ScalewayProviderSecretRef
  6455. </a>
  6456. </em>
  6457. </td>
  6458. <td>
  6459. <p>SecretKey is the non-secret part of the api key.</p>
  6460. </td>
  6461. </tr>
  6462. </tbody>
  6463. </table>
  6464. <h3 id="external-secrets.io/v1beta1.ScalewayProviderSecretRef">ScalewayProviderSecretRef
  6465. </h3>
  6466. <p>
  6467. (<em>Appears on:</em>
  6468. <a href="#external-secrets.io/v1beta1.ScalewayProvider">ScalewayProvider</a>)
  6469. </p>
  6470. <p>
  6471. </p>
  6472. <table>
  6473. <thead>
  6474. <tr>
  6475. <th>Field</th>
  6476. <th>Description</th>
  6477. </tr>
  6478. </thead>
  6479. <tbody>
  6480. <tr>
  6481. <td>
  6482. <code>value</code></br>
  6483. <em>
  6484. string
  6485. </em>
  6486. </td>
  6487. <td>
  6488. <em>(Optional)</em>
  6489. <p>Value can be specified directly to set a value without using a secret.</p>
  6490. </td>
  6491. </tr>
  6492. <tr>
  6493. <td>
  6494. <code>secretRef</code></br>
  6495. <em>
  6496. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6497. External Secrets meta/v1.SecretKeySelector
  6498. </a>
  6499. </em>
  6500. </td>
  6501. <td>
  6502. <em>(Optional)</em>
  6503. <p>SecretRef references a key in a secret that will be used as value.</p>
  6504. </td>
  6505. </tr>
  6506. </tbody>
  6507. </table>
  6508. <h3 id="external-secrets.io/v1beta1.SecretStore">SecretStore
  6509. </h3>
  6510. <p>
  6511. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  6512. </p>
  6513. <table>
  6514. <thead>
  6515. <tr>
  6516. <th>Field</th>
  6517. <th>Description</th>
  6518. </tr>
  6519. </thead>
  6520. <tbody>
  6521. <tr>
  6522. <td>
  6523. <code>metadata</code></br>
  6524. <em>
  6525. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  6526. Kubernetes meta/v1.ObjectMeta
  6527. </a>
  6528. </em>
  6529. </td>
  6530. <td>
  6531. Refer to the Kubernetes API documentation for the fields of the
  6532. <code>metadata</code> field.
  6533. </td>
  6534. </tr>
  6535. <tr>
  6536. <td>
  6537. <code>spec</code></br>
  6538. <em>
  6539. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  6540. SecretStoreSpec
  6541. </a>
  6542. </em>
  6543. </td>
  6544. <td>
  6545. <br/>
  6546. <br/>
  6547. <table>
  6548. <tr>
  6549. <td>
  6550. <code>controller</code></br>
  6551. <em>
  6552. string
  6553. </em>
  6554. </td>
  6555. <td>
  6556. <em>(Optional)</em>
  6557. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  6558. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  6559. </td>
  6560. </tr>
  6561. <tr>
  6562. <td>
  6563. <code>provider</code></br>
  6564. <em>
  6565. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  6566. SecretStoreProvider
  6567. </a>
  6568. </em>
  6569. </td>
  6570. <td>
  6571. <p>Used to configure the provider. Only one provider may be set</p>
  6572. </td>
  6573. </tr>
  6574. <tr>
  6575. <td>
  6576. <code>retrySettings</code></br>
  6577. <em>
  6578. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  6579. SecretStoreRetrySettings
  6580. </a>
  6581. </em>
  6582. </td>
  6583. <td>
  6584. <em>(Optional)</em>
  6585. <p>Used to configure http retries if failed</p>
  6586. </td>
  6587. </tr>
  6588. <tr>
  6589. <td>
  6590. <code>refreshInterval</code></br>
  6591. <em>
  6592. int
  6593. </em>
  6594. </td>
  6595. <td>
  6596. <em>(Optional)</em>
  6597. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  6598. </td>
  6599. </tr>
  6600. <tr>
  6601. <td>
  6602. <code>conditions</code></br>
  6603. <em>
  6604. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  6605. []ClusterSecretStoreCondition
  6606. </a>
  6607. </em>
  6608. </td>
  6609. <td>
  6610. <em>(Optional)</em>
  6611. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  6612. </td>
  6613. </tr>
  6614. </table>
  6615. </td>
  6616. </tr>
  6617. <tr>
  6618. <td>
  6619. <code>status</code></br>
  6620. <em>
  6621. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  6622. SecretStoreStatus
  6623. </a>
  6624. </em>
  6625. </td>
  6626. <td>
  6627. </td>
  6628. </tr>
  6629. </tbody>
  6630. </table>
  6631. <h3 id="external-secrets.io/v1beta1.SecretStoreCapabilities">SecretStoreCapabilities
  6632. (<code>string</code> alias)</p></h3>
  6633. <p>
  6634. (<em>Appears on:</em>
  6635. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus</a>)
  6636. </p>
  6637. <p>
  6638. <p>SecretStoreCapabilities defines the possible operations a SecretStore can do.</p>
  6639. </p>
  6640. <table>
  6641. <thead>
  6642. <tr>
  6643. <th>Value</th>
  6644. <th>Description</th>
  6645. </tr>
  6646. </thead>
  6647. <tbody><tr><td><p>&#34;ReadOnly&#34;</p></td>
  6648. <td></td>
  6649. </tr><tr><td><p>&#34;ReadWrite&#34;</p></td>
  6650. <td></td>
  6651. </tr><tr><td><p>&#34;WriteOnly&#34;</p></td>
  6652. <td></td>
  6653. </tr></tbody>
  6654. </table>
  6655. <h3 id="external-secrets.io/v1beta1.SecretStoreConditionType">SecretStoreConditionType
  6656. (<code>string</code> alias)</p></h3>
  6657. <p>
  6658. (<em>Appears on:</em>
  6659. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  6660. </p>
  6661. <p>
  6662. </p>
  6663. <table>
  6664. <thead>
  6665. <tr>
  6666. <th>Value</th>
  6667. <th>Description</th>
  6668. </tr>
  6669. </thead>
  6670. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  6671. <td></td>
  6672. </tr></tbody>
  6673. </table>
  6674. <h3 id="external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider
  6675. </h3>
  6676. <p>
  6677. (<em>Appears on:</em>
  6678. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  6679. </p>
  6680. <p>
  6681. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  6682. </p>
  6683. <table>
  6684. <thead>
  6685. <tr>
  6686. <th>Field</th>
  6687. <th>Description</th>
  6688. </tr>
  6689. </thead>
  6690. <tbody>
  6691. <tr>
  6692. <td>
  6693. <code>aws</code></br>
  6694. <em>
  6695. <a href="#external-secrets.io/v1beta1.AWSProvider">
  6696. AWSProvider
  6697. </a>
  6698. </em>
  6699. </td>
  6700. <td>
  6701. <em>(Optional)</em>
  6702. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  6703. </td>
  6704. </tr>
  6705. <tr>
  6706. <td>
  6707. <code>azurekv</code></br>
  6708. <em>
  6709. <a href="#external-secrets.io/v1beta1.AzureKVProvider">
  6710. AzureKVProvider
  6711. </a>
  6712. </em>
  6713. </td>
  6714. <td>
  6715. <em>(Optional)</em>
  6716. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  6717. </td>
  6718. </tr>
  6719. <tr>
  6720. <td>
  6721. <code>akeyless</code></br>
  6722. <em>
  6723. <a href="#external-secrets.io/v1beta1.AkeylessProvider">
  6724. AkeylessProvider
  6725. </a>
  6726. </em>
  6727. </td>
  6728. <td>
  6729. <em>(Optional)</em>
  6730. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  6731. </td>
  6732. </tr>
  6733. <tr>
  6734. <td>
  6735. <code>vault</code></br>
  6736. <em>
  6737. <a href="#external-secrets.io/v1beta1.VaultProvider">
  6738. VaultProvider
  6739. </a>
  6740. </em>
  6741. </td>
  6742. <td>
  6743. <em>(Optional)</em>
  6744. <p>Vault configures this store to sync secrets using Hashi provider</p>
  6745. </td>
  6746. </tr>
  6747. <tr>
  6748. <td>
  6749. <code>gcpsm</code></br>
  6750. <em>
  6751. <a href="#external-secrets.io/v1beta1.GCPSMProvider">
  6752. GCPSMProvider
  6753. </a>
  6754. </em>
  6755. </td>
  6756. <td>
  6757. <em>(Optional)</em>
  6758. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  6759. </td>
  6760. </tr>
  6761. <tr>
  6762. <td>
  6763. <code>oracle</code></br>
  6764. <em>
  6765. <a href="#external-secrets.io/v1beta1.OracleProvider">
  6766. OracleProvider
  6767. </a>
  6768. </em>
  6769. </td>
  6770. <td>
  6771. <em>(Optional)</em>
  6772. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  6773. </td>
  6774. </tr>
  6775. <tr>
  6776. <td>
  6777. <code>ibm</code></br>
  6778. <em>
  6779. <a href="#external-secrets.io/v1beta1.IBMProvider">
  6780. IBMProvider
  6781. </a>
  6782. </em>
  6783. </td>
  6784. <td>
  6785. <em>(Optional)</em>
  6786. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  6787. </td>
  6788. </tr>
  6789. <tr>
  6790. <td>
  6791. <code>yandexcertificatemanager</code></br>
  6792. <em>
  6793. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">
  6794. YandexCertificateManagerProvider
  6795. </a>
  6796. </em>
  6797. </td>
  6798. <td>
  6799. <em>(Optional)</em>
  6800. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  6801. </td>
  6802. </tr>
  6803. <tr>
  6804. <td>
  6805. <code>yandexlockbox</code></br>
  6806. <em>
  6807. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">
  6808. YandexLockboxProvider
  6809. </a>
  6810. </em>
  6811. </td>
  6812. <td>
  6813. <em>(Optional)</em>
  6814. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  6815. </td>
  6816. </tr>
  6817. <tr>
  6818. <td>
  6819. <code>gitlab</code></br>
  6820. <em>
  6821. <a href="#external-secrets.io/v1beta1.GitlabProvider">
  6822. GitlabProvider
  6823. </a>
  6824. </em>
  6825. </td>
  6826. <td>
  6827. <em>(Optional)</em>
  6828. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  6829. </td>
  6830. </tr>
  6831. <tr>
  6832. <td>
  6833. <code>alibaba</code></br>
  6834. <em>
  6835. <a href="#external-secrets.io/v1beta1.AlibabaProvider">
  6836. AlibabaProvider
  6837. </a>
  6838. </em>
  6839. </td>
  6840. <td>
  6841. <em>(Optional)</em>
  6842. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  6843. </td>
  6844. </tr>
  6845. <tr>
  6846. <td>
  6847. <code>onepassword</code></br>
  6848. <em>
  6849. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">
  6850. OnePasswordProvider
  6851. </a>
  6852. </em>
  6853. </td>
  6854. <td>
  6855. <em>(Optional)</em>
  6856. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  6857. </td>
  6858. </tr>
  6859. <tr>
  6860. <td>
  6861. <code>webhook</code></br>
  6862. <em>
  6863. <a href="#external-secrets.io/v1beta1.WebhookProvider">
  6864. WebhookProvider
  6865. </a>
  6866. </em>
  6867. </td>
  6868. <td>
  6869. <em>(Optional)</em>
  6870. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  6871. </td>
  6872. </tr>
  6873. <tr>
  6874. <td>
  6875. <code>kubernetes</code></br>
  6876. <em>
  6877. <a href="#external-secrets.io/v1beta1.KubernetesProvider">
  6878. KubernetesProvider
  6879. </a>
  6880. </em>
  6881. </td>
  6882. <td>
  6883. <em>(Optional)</em>
  6884. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  6885. </td>
  6886. </tr>
  6887. <tr>
  6888. <td>
  6889. <code>fake</code></br>
  6890. <em>
  6891. <a href="#external-secrets.io/v1beta1.FakeProvider">
  6892. FakeProvider
  6893. </a>
  6894. </em>
  6895. </td>
  6896. <td>
  6897. <em>(Optional)</em>
  6898. <p>Fake configures a store with static key/value pairs</p>
  6899. </td>
  6900. </tr>
  6901. <tr>
  6902. <td>
  6903. <code>senhasegura</code></br>
  6904. <em>
  6905. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">
  6906. SenhaseguraProvider
  6907. </a>
  6908. </em>
  6909. </td>
  6910. <td>
  6911. <em>(Optional)</em>
  6912. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  6913. </td>
  6914. </tr>
  6915. <tr>
  6916. <td>
  6917. <code>scaleway</code></br>
  6918. <em>
  6919. <a href="#external-secrets.io/v1beta1.ScalewayProvider">
  6920. ScalewayProvider
  6921. </a>
  6922. </em>
  6923. </td>
  6924. <td>
  6925. <em>(Optional)</em>
  6926. <p>Scaleway</p>
  6927. </td>
  6928. </tr>
  6929. <tr>
  6930. <td>
  6931. <code>doppler</code></br>
  6932. <em>
  6933. <a href="#external-secrets.io/v1beta1.DopplerProvider">
  6934. DopplerProvider
  6935. </a>
  6936. </em>
  6937. </td>
  6938. <td>
  6939. <em>(Optional)</em>
  6940. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  6941. </td>
  6942. </tr>
  6943. <tr>
  6944. <td>
  6945. <code>onboardbase</code></br>
  6946. <em>
  6947. <a href="#external-secrets.io/v1beta1.OnboardbaseProvider">
  6948. OnboardbaseProvider
  6949. </a>
  6950. </em>
  6951. </td>
  6952. <td>
  6953. <em>(Optional)</em>
  6954. <p>Onboardbase configures this store to sync secrets using the Onboardbase provider</p>
  6955. </td>
  6956. </tr>
  6957. <tr>
  6958. <td>
  6959. <code>keepersecurity</code></br>
  6960. <em>
  6961. <a href="#external-secrets.io/v1beta1.KeeperSecurityProvider">
  6962. KeeperSecurityProvider
  6963. </a>
  6964. </em>
  6965. </td>
  6966. <td>
  6967. <em>(Optional)</em>
  6968. <p>KeeperSecurity configures this store to sync secrets using the KeeperSecurity provider</p>
  6969. </td>
  6970. </tr>
  6971. <tr>
  6972. <td>
  6973. <code>conjur</code></br>
  6974. <em>
  6975. <a href="#external-secrets.io/v1beta1.ConjurProvider">
  6976. ConjurProvider
  6977. </a>
  6978. </em>
  6979. </td>
  6980. <td>
  6981. <em>(Optional)</em>
  6982. <p>Conjur configures this store to sync secrets using conjur provider</p>
  6983. </td>
  6984. </tr>
  6985. <tr>
  6986. <td>
  6987. <code>delinea</code></br>
  6988. <em>
  6989. <a href="#external-secrets.io/v1beta1.DelineaProvider">
  6990. DelineaProvider
  6991. </a>
  6992. </em>
  6993. </td>
  6994. <td>
  6995. <em>(Optional)</em>
  6996. <p>Delinea DevOps Secrets Vault
  6997. <a href="https://docs.delinea.com/online-help/products/devops-secrets-vault/current">https://docs.delinea.com/online-help/products/devops-secrets-vault/current</a></p>
  6998. </td>
  6999. </tr>
  7000. <tr>
  7001. <td>
  7002. <code>chef</code></br>
  7003. <em>
  7004. <a href="#external-secrets.io/v1beta1.ChefProvider">
  7005. ChefProvider
  7006. </a>
  7007. </em>
  7008. </td>
  7009. <td>
  7010. <em>(Optional)</em>
  7011. <p>Chef configures this store to sync secrets with chef server</p>
  7012. </td>
  7013. </tr>
  7014. <tr>
  7015. <td>
  7016. <code>pulumi</code></br>
  7017. <em>
  7018. <a href="#external-secrets.io/v1beta1.PulumiProvider">
  7019. PulumiProvider
  7020. </a>
  7021. </em>
  7022. </td>
  7023. <td>
  7024. <em>(Optional)</em>
  7025. <p>Pulumi configures this store to sync secrets using the Pulumi provider</p>
  7026. </td>
  7027. </tr>
  7028. <tr>
  7029. <td>
  7030. <code>fortanix</code></br>
  7031. <em>
  7032. <a href="#external-secrets.io/v1beta1.FortanixProvider">
  7033. FortanixProvider
  7034. </a>
  7035. </em>
  7036. </td>
  7037. <td>
  7038. <em>(Optional)</em>
  7039. <p>Fortanix configures this store to sync secrets using the Fortanix provider</p>
  7040. </td>
  7041. </tr>
  7042. <tr>
  7043. <td>
  7044. <code>passworddepot</code></br>
  7045. <em>
  7046. <a href="#external-secrets.io/v1beta1.PasswordDepotProvider">
  7047. PasswordDepotProvider
  7048. </a>
  7049. </em>
  7050. </td>
  7051. <td>
  7052. <em>(Optional)</em>
  7053. </td>
  7054. </tr>
  7055. <tr>
  7056. <td>
  7057. <code>passbolt</code></br>
  7058. <em>
  7059. <a href="#external-secrets.io/v1beta1.PassboltProvider">
  7060. PassboltProvider
  7061. </a>
  7062. </em>
  7063. </td>
  7064. <td>
  7065. <em>(Optional)</em>
  7066. </td>
  7067. </tr>
  7068. </tbody>
  7069. </table>
  7070. <h3 id="external-secrets.io/v1beta1.SecretStoreRef">SecretStoreRef
  7071. </h3>
  7072. <p>
  7073. (<em>Appears on:</em>
  7074. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>,
  7075. <a href="#external-secrets.io/v1beta1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  7076. <a href="#external-secrets.io/v1beta1.StoreSourceRef">StoreSourceRef</a>)
  7077. </p>
  7078. <p>
  7079. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  7080. </p>
  7081. <table>
  7082. <thead>
  7083. <tr>
  7084. <th>Field</th>
  7085. <th>Description</th>
  7086. </tr>
  7087. </thead>
  7088. <tbody>
  7089. <tr>
  7090. <td>
  7091. <code>name</code></br>
  7092. <em>
  7093. string
  7094. </em>
  7095. </td>
  7096. <td>
  7097. <p>Name of the SecretStore resource</p>
  7098. </td>
  7099. </tr>
  7100. <tr>
  7101. <td>
  7102. <code>kind</code></br>
  7103. <em>
  7104. string
  7105. </em>
  7106. </td>
  7107. <td>
  7108. <em>(Optional)</em>
  7109. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  7110. Defaults to <code>SecretStore</code></p>
  7111. </td>
  7112. </tr>
  7113. </tbody>
  7114. </table>
  7115. <h3 id="external-secrets.io/v1beta1.SecretStoreRetrySettings">SecretStoreRetrySettings
  7116. </h3>
  7117. <p>
  7118. (<em>Appears on:</em>
  7119. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  7120. </p>
  7121. <p>
  7122. </p>
  7123. <table>
  7124. <thead>
  7125. <tr>
  7126. <th>Field</th>
  7127. <th>Description</th>
  7128. </tr>
  7129. </thead>
  7130. <tbody>
  7131. <tr>
  7132. <td>
  7133. <code>maxRetries</code></br>
  7134. <em>
  7135. int32
  7136. </em>
  7137. </td>
  7138. <td>
  7139. </td>
  7140. </tr>
  7141. <tr>
  7142. <td>
  7143. <code>retryInterval</code></br>
  7144. <em>
  7145. string
  7146. </em>
  7147. </td>
  7148. <td>
  7149. </td>
  7150. </tr>
  7151. </tbody>
  7152. </table>
  7153. <h3 id="external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec
  7154. </h3>
  7155. <p>
  7156. (<em>Appears on:</em>
  7157. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  7158. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  7159. </p>
  7160. <p>
  7161. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  7162. </p>
  7163. <table>
  7164. <thead>
  7165. <tr>
  7166. <th>Field</th>
  7167. <th>Description</th>
  7168. </tr>
  7169. </thead>
  7170. <tbody>
  7171. <tr>
  7172. <td>
  7173. <code>controller</code></br>
  7174. <em>
  7175. string
  7176. </em>
  7177. </td>
  7178. <td>
  7179. <em>(Optional)</em>
  7180. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  7181. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  7182. </td>
  7183. </tr>
  7184. <tr>
  7185. <td>
  7186. <code>provider</code></br>
  7187. <em>
  7188. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  7189. SecretStoreProvider
  7190. </a>
  7191. </em>
  7192. </td>
  7193. <td>
  7194. <p>Used to configure the provider. Only one provider may be set</p>
  7195. </td>
  7196. </tr>
  7197. <tr>
  7198. <td>
  7199. <code>retrySettings</code></br>
  7200. <em>
  7201. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  7202. SecretStoreRetrySettings
  7203. </a>
  7204. </em>
  7205. </td>
  7206. <td>
  7207. <em>(Optional)</em>
  7208. <p>Used to configure http retries if failed</p>
  7209. </td>
  7210. </tr>
  7211. <tr>
  7212. <td>
  7213. <code>refreshInterval</code></br>
  7214. <em>
  7215. int
  7216. </em>
  7217. </td>
  7218. <td>
  7219. <em>(Optional)</em>
  7220. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  7221. </td>
  7222. </tr>
  7223. <tr>
  7224. <td>
  7225. <code>conditions</code></br>
  7226. <em>
  7227. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  7228. []ClusterSecretStoreCondition
  7229. </a>
  7230. </em>
  7231. </td>
  7232. <td>
  7233. <em>(Optional)</em>
  7234. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  7235. </td>
  7236. </tr>
  7237. </tbody>
  7238. </table>
  7239. <h3 id="external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus
  7240. </h3>
  7241. <p>
  7242. (<em>Appears on:</em>
  7243. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  7244. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  7245. </p>
  7246. <p>
  7247. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  7248. </p>
  7249. <table>
  7250. <thead>
  7251. <tr>
  7252. <th>Field</th>
  7253. <th>Description</th>
  7254. </tr>
  7255. </thead>
  7256. <tbody>
  7257. <tr>
  7258. <td>
  7259. <code>conditions</code></br>
  7260. <em>
  7261. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">
  7262. []SecretStoreStatusCondition
  7263. </a>
  7264. </em>
  7265. </td>
  7266. <td>
  7267. <em>(Optional)</em>
  7268. </td>
  7269. </tr>
  7270. <tr>
  7271. <td>
  7272. <code>capabilities</code></br>
  7273. <em>
  7274. <a href="#external-secrets.io/v1beta1.SecretStoreCapabilities">
  7275. SecretStoreCapabilities
  7276. </a>
  7277. </em>
  7278. </td>
  7279. <td>
  7280. <em>(Optional)</em>
  7281. </td>
  7282. </tr>
  7283. </tbody>
  7284. </table>
  7285. <h3 id="external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition
  7286. </h3>
  7287. <p>
  7288. (<em>Appears on:</em>
  7289. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus</a>)
  7290. </p>
  7291. <p>
  7292. </p>
  7293. <table>
  7294. <thead>
  7295. <tr>
  7296. <th>Field</th>
  7297. <th>Description</th>
  7298. </tr>
  7299. </thead>
  7300. <tbody>
  7301. <tr>
  7302. <td>
  7303. <code>type</code></br>
  7304. <em>
  7305. <a href="#external-secrets.io/v1beta1.SecretStoreConditionType">
  7306. SecretStoreConditionType
  7307. </a>
  7308. </em>
  7309. </td>
  7310. <td>
  7311. </td>
  7312. </tr>
  7313. <tr>
  7314. <td>
  7315. <code>status</code></br>
  7316. <em>
  7317. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  7318. Kubernetes core/v1.ConditionStatus
  7319. </a>
  7320. </em>
  7321. </td>
  7322. <td>
  7323. </td>
  7324. </tr>
  7325. <tr>
  7326. <td>
  7327. <code>reason</code></br>
  7328. <em>
  7329. string
  7330. </em>
  7331. </td>
  7332. <td>
  7333. <em>(Optional)</em>
  7334. </td>
  7335. </tr>
  7336. <tr>
  7337. <td>
  7338. <code>message</code></br>
  7339. <em>
  7340. string
  7341. </em>
  7342. </td>
  7343. <td>
  7344. <em>(Optional)</em>
  7345. </td>
  7346. </tr>
  7347. <tr>
  7348. <td>
  7349. <code>lastTransitionTime</code></br>
  7350. <em>
  7351. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  7352. Kubernetes meta/v1.Time
  7353. </a>
  7354. </em>
  7355. </td>
  7356. <td>
  7357. <em>(Optional)</em>
  7358. </td>
  7359. </tr>
  7360. </tbody>
  7361. </table>
  7362. <h3 id="external-secrets.io/v1beta1.SecretsClient">SecretsClient
  7363. </h3>
  7364. <p>
  7365. <p>SecretsClient provides access to secrets.</p>
  7366. </p>
  7367. <h3 id="external-secrets.io/v1beta1.SecretsManager">SecretsManager
  7368. </h3>
  7369. <p>
  7370. (<em>Appears on:</em>
  7371. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  7372. </p>
  7373. <p>
  7374. <p>SecretsManager defines how the provider behaves when interacting with AWS
  7375. SecretsManager. Some of these settings are only applicable to controlling how
  7376. secrets are deleted, and hence only apply to PushSecret (and only when
  7377. deletionPolicy is set to Delete).</p>
  7378. </p>
  7379. <table>
  7380. <thead>
  7381. <tr>
  7382. <th>Field</th>
  7383. <th>Description</th>
  7384. </tr>
  7385. </thead>
  7386. <tbody>
  7387. <tr>
  7388. <td>
  7389. <code>forceDeleteWithoutRecovery</code></br>
  7390. <em>
  7391. bool
  7392. </em>
  7393. </td>
  7394. <td>
  7395. <em>(Optional)</em>
  7396. <p>Specifies whether to delete the secret without any recovery window. You
  7397. can&rsquo;t use both this parameter and RecoveryWindowInDays in the same call.
  7398. If you don&rsquo;t use either, then by default Secrets Manager uses a 30 day
  7399. recovery window.
  7400. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery</a></p>
  7401. </td>
  7402. </tr>
  7403. <tr>
  7404. <td>
  7405. <code>recoveryWindowInDays</code></br>
  7406. <em>
  7407. int64
  7408. </em>
  7409. </td>
  7410. <td>
  7411. <em>(Optional)</em>
  7412. <p>The number of days from 7 to 30 that Secrets Manager waits before
  7413. permanently deleting the secret. You can&rsquo;t use both this parameter and
  7414. ForceDeleteWithoutRecovery in the same call. If you don&rsquo;t use either,
  7415. then by default Secrets Manager uses a 30 day recovery window.
  7416. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays</a></p>
  7417. </td>
  7418. </tr>
  7419. </tbody>
  7420. </table>
  7421. <h3 id="external-secrets.io/v1beta1.SenhaseguraAuth">SenhaseguraAuth
  7422. </h3>
  7423. <p>
  7424. (<em>Appears on:</em>
  7425. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  7426. </p>
  7427. <p>
  7428. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  7429. </p>
  7430. <table>
  7431. <thead>
  7432. <tr>
  7433. <th>Field</th>
  7434. <th>Description</th>
  7435. </tr>
  7436. </thead>
  7437. <tbody>
  7438. <tr>
  7439. <td>
  7440. <code>clientId</code></br>
  7441. <em>
  7442. string
  7443. </em>
  7444. </td>
  7445. <td>
  7446. </td>
  7447. </tr>
  7448. <tr>
  7449. <td>
  7450. <code>clientSecretSecretRef</code></br>
  7451. <em>
  7452. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7453. External Secrets meta/v1.SecretKeySelector
  7454. </a>
  7455. </em>
  7456. </td>
  7457. <td>
  7458. </td>
  7459. </tr>
  7460. </tbody>
  7461. </table>
  7462. <h3 id="external-secrets.io/v1beta1.SenhaseguraModuleType">SenhaseguraModuleType
  7463. (<code>string</code> alias)</p></h3>
  7464. <p>
  7465. (<em>Appears on:</em>
  7466. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  7467. </p>
  7468. <p>
  7469. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  7470. </p>
  7471. <table>
  7472. <thead>
  7473. <tr>
  7474. <th>Value</th>
  7475. <th>Description</th>
  7476. </tr>
  7477. </thead>
  7478. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  7479. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  7480. see: https://senhasegura.com/devops
  7481. </code></pre>
  7482. </td>
  7483. </tr></tbody>
  7484. </table>
  7485. <h3 id="external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider
  7486. </h3>
  7487. <p>
  7488. (<em>Appears on:</em>
  7489. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  7490. </p>
  7491. <p>
  7492. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  7493. </p>
  7494. <table>
  7495. <thead>
  7496. <tr>
  7497. <th>Field</th>
  7498. <th>Description</th>
  7499. </tr>
  7500. </thead>
  7501. <tbody>
  7502. <tr>
  7503. <td>
  7504. <code>url</code></br>
  7505. <em>
  7506. string
  7507. </em>
  7508. </td>
  7509. <td>
  7510. <p>URL of senhasegura</p>
  7511. </td>
  7512. </tr>
  7513. <tr>
  7514. <td>
  7515. <code>module</code></br>
  7516. <em>
  7517. <a href="#external-secrets.io/v1beta1.SenhaseguraModuleType">
  7518. SenhaseguraModuleType
  7519. </a>
  7520. </em>
  7521. </td>
  7522. <td>
  7523. <p>Module defines which senhasegura module should be used to get secrets</p>
  7524. </td>
  7525. </tr>
  7526. <tr>
  7527. <td>
  7528. <code>auth</code></br>
  7529. <em>
  7530. <a href="#external-secrets.io/v1beta1.SenhaseguraAuth">
  7531. SenhaseguraAuth
  7532. </a>
  7533. </em>
  7534. </td>
  7535. <td>
  7536. <p>Auth defines parameters to authenticate in senhasegura</p>
  7537. </td>
  7538. </tr>
  7539. <tr>
  7540. <td>
  7541. <code>ignoreSslCertificate</code></br>
  7542. <em>
  7543. bool
  7544. </em>
  7545. </td>
  7546. <td>
  7547. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  7548. </td>
  7549. </tr>
  7550. </tbody>
  7551. </table>
  7552. <h3 id="external-secrets.io/v1beta1.StoreGeneratorSourceRef">StoreGeneratorSourceRef
  7553. </h3>
  7554. <p>
  7555. (<em>Appears on:</em>
  7556. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  7557. </p>
  7558. <p>
  7559. <p>StoreGeneratorSourceRef allows you to override the source
  7560. from which the secret will be pulled from.
  7561. You can define at maximum one property.</p>
  7562. </p>
  7563. <table>
  7564. <thead>
  7565. <tr>
  7566. <th>Field</th>
  7567. <th>Description</th>
  7568. </tr>
  7569. </thead>
  7570. <tbody>
  7571. <tr>
  7572. <td>
  7573. <code>storeRef</code></br>
  7574. <em>
  7575. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  7576. SecretStoreRef
  7577. </a>
  7578. </em>
  7579. </td>
  7580. <td>
  7581. <em>(Optional)</em>
  7582. </td>
  7583. </tr>
  7584. <tr>
  7585. <td>
  7586. <code>generatorRef</code></br>
  7587. <em>
  7588. <a href="#external-secrets.io/v1beta1.GeneratorRef">
  7589. GeneratorRef
  7590. </a>
  7591. </em>
  7592. </td>
  7593. <td>
  7594. <em>(Optional)</em>
  7595. <p>GeneratorRef points to a generator custom resource.</p>
  7596. </td>
  7597. </tr>
  7598. </tbody>
  7599. </table>
  7600. <h3 id="external-secrets.io/v1beta1.StoreSourceRef">StoreSourceRef
  7601. </h3>
  7602. <p>
  7603. (<em>Appears on:</em>
  7604. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>)
  7605. </p>
  7606. <p>
  7607. <p>StoreSourceRef allows you to override the SecretStore source
  7608. from which the secret will be pulled from.
  7609. You can define at maximum one property.</p>
  7610. </p>
  7611. <table>
  7612. <thead>
  7613. <tr>
  7614. <th>Field</th>
  7615. <th>Description</th>
  7616. </tr>
  7617. </thead>
  7618. <tbody>
  7619. <tr>
  7620. <td>
  7621. <code>storeRef</code></br>
  7622. <em>
  7623. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  7624. SecretStoreRef
  7625. </a>
  7626. </em>
  7627. </td>
  7628. <td>
  7629. <em>(Optional)</em>
  7630. </td>
  7631. </tr>
  7632. <tr>
  7633. <td>
  7634. <code>generatorRef</code></br>
  7635. <em>
  7636. <a href="#external-secrets.io/v1beta1.GeneratorRef">
  7637. GeneratorRef
  7638. </a>
  7639. </em>
  7640. </td>
  7641. <td>
  7642. <p>GeneratorRef points to a generator custom resource.</p>
  7643. <p>Deprecated: The generatorRef is not implemented in .data[].
  7644. this will be removed with v1.</p>
  7645. </td>
  7646. </tr>
  7647. </tbody>
  7648. </table>
  7649. <h3 id="external-secrets.io/v1beta1.Tag">Tag
  7650. </h3>
  7651. <p>
  7652. </p>
  7653. <table>
  7654. <thead>
  7655. <tr>
  7656. <th>Field</th>
  7657. <th>Description</th>
  7658. </tr>
  7659. </thead>
  7660. <tbody>
  7661. <tr>
  7662. <td>
  7663. <code>key</code></br>
  7664. <em>
  7665. string
  7666. </em>
  7667. </td>
  7668. <td>
  7669. </td>
  7670. </tr>
  7671. <tr>
  7672. <td>
  7673. <code>value</code></br>
  7674. <em>
  7675. string
  7676. </em>
  7677. </td>
  7678. <td>
  7679. </td>
  7680. </tr>
  7681. </tbody>
  7682. </table>
  7683. <h3 id="external-secrets.io/v1beta1.TemplateEngineVersion">TemplateEngineVersion
  7684. (<code>string</code> alias)</p></h3>
  7685. <p>
  7686. (<em>Appears on:</em>
  7687. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  7688. </p>
  7689. <p>
  7690. </p>
  7691. <table>
  7692. <thead>
  7693. <tr>
  7694. <th>Value</th>
  7695. <th>Description</th>
  7696. </tr>
  7697. </thead>
  7698. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  7699. <td></td>
  7700. </tr><tr><td><p>&#34;v2&#34;</p></td>
  7701. <td></td>
  7702. </tr></tbody>
  7703. </table>
  7704. <h3 id="external-secrets.io/v1beta1.TemplateFrom">TemplateFrom
  7705. </h3>
  7706. <p>
  7707. (<em>Appears on:</em>
  7708. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  7709. </p>
  7710. <p>
  7711. </p>
  7712. <table>
  7713. <thead>
  7714. <tr>
  7715. <th>Field</th>
  7716. <th>Description</th>
  7717. </tr>
  7718. </thead>
  7719. <tbody>
  7720. <tr>
  7721. <td>
  7722. <code>configMap</code></br>
  7723. <em>
  7724. <a href="#external-secrets.io/v1beta1.TemplateRef">
  7725. TemplateRef
  7726. </a>
  7727. </em>
  7728. </td>
  7729. <td>
  7730. </td>
  7731. </tr>
  7732. <tr>
  7733. <td>
  7734. <code>secret</code></br>
  7735. <em>
  7736. <a href="#external-secrets.io/v1beta1.TemplateRef">
  7737. TemplateRef
  7738. </a>
  7739. </em>
  7740. </td>
  7741. <td>
  7742. </td>
  7743. </tr>
  7744. <tr>
  7745. <td>
  7746. <code>target</code></br>
  7747. <em>
  7748. <a href="#external-secrets.io/v1beta1.TemplateTarget">
  7749. TemplateTarget
  7750. </a>
  7751. </em>
  7752. </td>
  7753. <td>
  7754. <em>(Optional)</em>
  7755. </td>
  7756. </tr>
  7757. <tr>
  7758. <td>
  7759. <code>literal</code></br>
  7760. <em>
  7761. string
  7762. </em>
  7763. </td>
  7764. <td>
  7765. <em>(Optional)</em>
  7766. </td>
  7767. </tr>
  7768. </tbody>
  7769. </table>
  7770. <h3 id="external-secrets.io/v1beta1.TemplateMergePolicy">TemplateMergePolicy
  7771. (<code>string</code> alias)</p></h3>
  7772. <p>
  7773. (<em>Appears on:</em>
  7774. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  7775. </p>
  7776. <p>
  7777. </p>
  7778. <table>
  7779. <thead>
  7780. <tr>
  7781. <th>Value</th>
  7782. <th>Description</th>
  7783. </tr>
  7784. </thead>
  7785. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  7786. <td></td>
  7787. </tr><tr><td><p>&#34;Replace&#34;</p></td>
  7788. <td></td>
  7789. </tr></tbody>
  7790. </table>
  7791. <h3 id="external-secrets.io/v1beta1.TemplateRef">TemplateRef
  7792. </h3>
  7793. <p>
  7794. (<em>Appears on:</em>
  7795. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  7796. </p>
  7797. <p>
  7798. </p>
  7799. <table>
  7800. <thead>
  7801. <tr>
  7802. <th>Field</th>
  7803. <th>Description</th>
  7804. </tr>
  7805. </thead>
  7806. <tbody>
  7807. <tr>
  7808. <td>
  7809. <code>name</code></br>
  7810. <em>
  7811. string
  7812. </em>
  7813. </td>
  7814. <td>
  7815. </td>
  7816. </tr>
  7817. <tr>
  7818. <td>
  7819. <code>items</code></br>
  7820. <em>
  7821. <a href="#external-secrets.io/v1beta1.TemplateRefItem">
  7822. []TemplateRefItem
  7823. </a>
  7824. </em>
  7825. </td>
  7826. <td>
  7827. </td>
  7828. </tr>
  7829. </tbody>
  7830. </table>
  7831. <h3 id="external-secrets.io/v1beta1.TemplateRefItem">TemplateRefItem
  7832. </h3>
  7833. <p>
  7834. (<em>Appears on:</em>
  7835. <a href="#external-secrets.io/v1beta1.TemplateRef">TemplateRef</a>)
  7836. </p>
  7837. <p>
  7838. </p>
  7839. <table>
  7840. <thead>
  7841. <tr>
  7842. <th>Field</th>
  7843. <th>Description</th>
  7844. </tr>
  7845. </thead>
  7846. <tbody>
  7847. <tr>
  7848. <td>
  7849. <code>key</code></br>
  7850. <em>
  7851. string
  7852. </em>
  7853. </td>
  7854. <td>
  7855. </td>
  7856. </tr>
  7857. <tr>
  7858. <td>
  7859. <code>templateAs</code></br>
  7860. <em>
  7861. <a href="#external-secrets.io/v1beta1.TemplateScope">
  7862. TemplateScope
  7863. </a>
  7864. </em>
  7865. </td>
  7866. <td>
  7867. </td>
  7868. </tr>
  7869. </tbody>
  7870. </table>
  7871. <h3 id="external-secrets.io/v1beta1.TemplateScope">TemplateScope
  7872. (<code>string</code> alias)</p></h3>
  7873. <p>
  7874. (<em>Appears on:</em>
  7875. <a href="#external-secrets.io/v1beta1.TemplateRefItem">TemplateRefItem</a>)
  7876. </p>
  7877. <p>
  7878. </p>
  7879. <table>
  7880. <thead>
  7881. <tr>
  7882. <th>Value</th>
  7883. <th>Description</th>
  7884. </tr>
  7885. </thead>
  7886. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  7887. <td></td>
  7888. </tr><tr><td><p>&#34;Values&#34;</p></td>
  7889. <td></td>
  7890. </tr></tbody>
  7891. </table>
  7892. <h3 id="external-secrets.io/v1beta1.TemplateTarget">TemplateTarget
  7893. (<code>string</code> alias)</p></h3>
  7894. <p>
  7895. (<em>Appears on:</em>
  7896. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  7897. </p>
  7898. <p>
  7899. </p>
  7900. <table>
  7901. <thead>
  7902. <tr>
  7903. <th>Value</th>
  7904. <th>Description</th>
  7905. </tr>
  7906. </thead>
  7907. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  7908. <td></td>
  7909. </tr><tr><td><p>&#34;Data&#34;</p></td>
  7910. <td></td>
  7911. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  7912. <td></td>
  7913. </tr></tbody>
  7914. </table>
  7915. <h3 id="external-secrets.io/v1beta1.TokenAuth">TokenAuth
  7916. </h3>
  7917. <p>
  7918. (<em>Appears on:</em>
  7919. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  7920. </p>
  7921. <p>
  7922. </p>
  7923. <table>
  7924. <thead>
  7925. <tr>
  7926. <th>Field</th>
  7927. <th>Description</th>
  7928. </tr>
  7929. </thead>
  7930. <tbody>
  7931. <tr>
  7932. <td>
  7933. <code>bearerToken</code></br>
  7934. <em>
  7935. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7936. External Secrets meta/v1.SecretKeySelector
  7937. </a>
  7938. </em>
  7939. </td>
  7940. <td>
  7941. </td>
  7942. </tr>
  7943. </tbody>
  7944. </table>
  7945. <h3 id="external-secrets.io/v1beta1.ValidationResult">ValidationResult
  7946. (<code>byte</code> alias)</p></h3>
  7947. <p>
  7948. </p>
  7949. <table>
  7950. <thead>
  7951. <tr>
  7952. <th>Value</th>
  7953. <th>Description</th>
  7954. </tr>
  7955. </thead>
  7956. <tbody><tr><td><p>2</p></td>
  7957. <td><p>Error indicates that there is a misconfiguration.</p>
  7958. </td>
  7959. </tr><tr><td><p>0</p></td>
  7960. <td><p>Ready indicates that the client is configured correctly
  7961. and can be used.</p>
  7962. </td>
  7963. </tr><tr><td><p>1</p></td>
  7964. <td><p>Unknown indicates that the client can be used
  7965. but information is missing and it can not be validated.</p>
  7966. </td>
  7967. </tr></tbody>
  7968. </table>
  7969. <h3 id="external-secrets.io/v1beta1.VaultAppRole">VaultAppRole
  7970. </h3>
  7971. <p>
  7972. (<em>Appears on:</em>
  7973. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  7974. </p>
  7975. <p>
  7976. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  7977. with the role and secret stored in a Kubernetes Secret resource.</p>
  7978. </p>
  7979. <table>
  7980. <thead>
  7981. <tr>
  7982. <th>Field</th>
  7983. <th>Description</th>
  7984. </tr>
  7985. </thead>
  7986. <tbody>
  7987. <tr>
  7988. <td>
  7989. <code>path</code></br>
  7990. <em>
  7991. string
  7992. </em>
  7993. </td>
  7994. <td>
  7995. <p>Path where the App Role authentication backend is mounted
  7996. in Vault, e.g: &ldquo;approle&rdquo;</p>
  7997. </td>
  7998. </tr>
  7999. <tr>
  8000. <td>
  8001. <code>roleId</code></br>
  8002. <em>
  8003. string
  8004. </em>
  8005. </td>
  8006. <td>
  8007. <em>(Optional)</em>
  8008. <p>RoleID configured in the App Role authentication backend when setting
  8009. up the authentication backend in Vault.</p>
  8010. </td>
  8011. </tr>
  8012. <tr>
  8013. <td>
  8014. <code>roleRef</code></br>
  8015. <em>
  8016. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8017. External Secrets meta/v1.SecretKeySelector
  8018. </a>
  8019. </em>
  8020. </td>
  8021. <td>
  8022. <em>(Optional)</em>
  8023. <p>Reference to a key in a Secret that contains the App Role ID used
  8024. to authenticate with Vault.
  8025. The <code>key</code> field must be specified and denotes which entry within the Secret
  8026. resource is used as the app role id.</p>
  8027. </td>
  8028. </tr>
  8029. <tr>
  8030. <td>
  8031. <code>secretRef</code></br>
  8032. <em>
  8033. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8034. External Secrets meta/v1.SecretKeySelector
  8035. </a>
  8036. </em>
  8037. </td>
  8038. <td>
  8039. <p>Reference to a key in a Secret that contains the App Role secret used
  8040. to authenticate with Vault.
  8041. The <code>key</code> field must be specified and denotes which entry within the Secret
  8042. resource is used as the app role secret.</p>
  8043. </td>
  8044. </tr>
  8045. </tbody>
  8046. </table>
  8047. <h3 id="external-secrets.io/v1beta1.VaultAuth">VaultAuth
  8048. </h3>
  8049. <p>
  8050. (<em>Appears on:</em>
  8051. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  8052. </p>
  8053. <p>
  8054. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  8055. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>userPass</code>, <code>jwt</code> or <code>cert</code>
  8056. can be specified. A namespace to authenticate against can optionally be specified.</p>
  8057. </p>
  8058. <table>
  8059. <thead>
  8060. <tr>
  8061. <th>Field</th>
  8062. <th>Description</th>
  8063. </tr>
  8064. </thead>
  8065. <tbody>
  8066. <tr>
  8067. <td>
  8068. <code>namespace</code></br>
  8069. <em>
  8070. string
  8071. </em>
  8072. </td>
  8073. <td>
  8074. <em>(Optional)</em>
  8075. <p>Name of the vault namespace to authenticate to. This can be different than the namespace your secret is in.
  8076. Namespaces is a set of features within Vault Enterprise that allows
  8077. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  8078. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a>
  8079. This will default to Vault.Namespace field if set, or empty otherwise</p>
  8080. </td>
  8081. </tr>
  8082. <tr>
  8083. <td>
  8084. <code>tokenSecretRef</code></br>
  8085. <em>
  8086. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8087. External Secrets meta/v1.SecretKeySelector
  8088. </a>
  8089. </em>
  8090. </td>
  8091. <td>
  8092. <em>(Optional)</em>
  8093. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  8094. </td>
  8095. </tr>
  8096. <tr>
  8097. <td>
  8098. <code>appRole</code></br>
  8099. <em>
  8100. <a href="#external-secrets.io/v1beta1.VaultAppRole">
  8101. VaultAppRole
  8102. </a>
  8103. </em>
  8104. </td>
  8105. <td>
  8106. <em>(Optional)</em>
  8107. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  8108. with the role and secret stored in a Kubernetes Secret resource.</p>
  8109. </td>
  8110. </tr>
  8111. <tr>
  8112. <td>
  8113. <code>kubernetes</code></br>
  8114. <em>
  8115. <a href="#external-secrets.io/v1beta1.VaultKubernetesAuth">
  8116. VaultKubernetesAuth
  8117. </a>
  8118. </em>
  8119. </td>
  8120. <td>
  8121. <em>(Optional)</em>
  8122. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  8123. token stored in the named Secret resource to the Vault server.</p>
  8124. </td>
  8125. </tr>
  8126. <tr>
  8127. <td>
  8128. <code>ldap</code></br>
  8129. <em>
  8130. <a href="#external-secrets.io/v1beta1.VaultLdapAuth">
  8131. VaultLdapAuth
  8132. </a>
  8133. </em>
  8134. </td>
  8135. <td>
  8136. <em>(Optional)</em>
  8137. <p>Ldap authenticates with Vault by passing username/password pair using
  8138. the LDAP authentication method</p>
  8139. </td>
  8140. </tr>
  8141. <tr>
  8142. <td>
  8143. <code>jwt</code></br>
  8144. <em>
  8145. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">
  8146. VaultJwtAuth
  8147. </a>
  8148. </em>
  8149. </td>
  8150. <td>
  8151. <em>(Optional)</em>
  8152. <p>Jwt authenticates with Vault by passing role and JWT token using the
  8153. JWT/OIDC authentication method</p>
  8154. </td>
  8155. </tr>
  8156. <tr>
  8157. <td>
  8158. <code>cert</code></br>
  8159. <em>
  8160. <a href="#external-secrets.io/v1beta1.VaultCertAuth">
  8161. VaultCertAuth
  8162. </a>
  8163. </em>
  8164. </td>
  8165. <td>
  8166. <em>(Optional)</em>
  8167. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  8168. Cert authentication method</p>
  8169. </td>
  8170. </tr>
  8171. <tr>
  8172. <td>
  8173. <code>iam</code></br>
  8174. <em>
  8175. <a href="#external-secrets.io/v1beta1.VaultIamAuth">
  8176. VaultIamAuth
  8177. </a>
  8178. </em>
  8179. </td>
  8180. <td>
  8181. <em>(Optional)</em>
  8182. <p>Iam authenticates with vault by passing a special AWS request signed with AWS IAM credentials
  8183. AWS IAM authentication method</p>
  8184. </td>
  8185. </tr>
  8186. <tr>
  8187. <td>
  8188. <code>userPass</code></br>
  8189. <em>
  8190. <a href="#external-secrets.io/v1beta1.VaultUserPassAuth">
  8191. VaultUserPassAuth
  8192. </a>
  8193. </em>
  8194. </td>
  8195. <td>
  8196. <em>(Optional)</em>
  8197. <p>UserPass authenticates with Vault by passing username/password pair</p>
  8198. </td>
  8199. </tr>
  8200. </tbody>
  8201. </table>
  8202. <h3 id="external-secrets.io/v1beta1.VaultAwsAuth">VaultAwsAuth
  8203. </h3>
  8204. <p>
  8205. <p>VaultAwsAuth tells the controller how to do authentication with aws.
  8206. Only one of secretRef or jwt can be specified.
  8207. if none is specified the controller will try to load credentials from its own service account assuming it is IRSA enabled.</p>
  8208. </p>
  8209. <table>
  8210. <thead>
  8211. <tr>
  8212. <th>Field</th>
  8213. <th>Description</th>
  8214. </tr>
  8215. </thead>
  8216. <tbody>
  8217. <tr>
  8218. <td>
  8219. <code>secretRef</code></br>
  8220. <em>
  8221. <a href="#external-secrets.io/v1beta1.VaultAwsAuthSecretRef">
  8222. VaultAwsAuthSecretRef
  8223. </a>
  8224. </em>
  8225. </td>
  8226. <td>
  8227. <em>(Optional)</em>
  8228. </td>
  8229. </tr>
  8230. <tr>
  8231. <td>
  8232. <code>jwt</code></br>
  8233. <em>
  8234. <a href="#external-secrets.io/v1beta1.VaultAwsJWTAuth">
  8235. VaultAwsJWTAuth
  8236. </a>
  8237. </em>
  8238. </td>
  8239. <td>
  8240. <em>(Optional)</em>
  8241. </td>
  8242. </tr>
  8243. </tbody>
  8244. </table>
  8245. <h3 id="external-secrets.io/v1beta1.VaultAwsAuthSecretRef">VaultAwsAuthSecretRef
  8246. </h3>
  8247. <p>
  8248. (<em>Appears on:</em>
  8249. <a href="#external-secrets.io/v1beta1.VaultAwsAuth">VaultAwsAuth</a>,
  8250. <a href="#external-secrets.io/v1beta1.VaultIamAuth">VaultIamAuth</a>)
  8251. </p>
  8252. <p>
  8253. <p>VaultAWSAuthSecretRef holds secret references for AWS credentials
  8254. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  8255. </p>
  8256. <table>
  8257. <thead>
  8258. <tr>
  8259. <th>Field</th>
  8260. <th>Description</th>
  8261. </tr>
  8262. </thead>
  8263. <tbody>
  8264. <tr>
  8265. <td>
  8266. <code>accessKeyIDSecretRef</code></br>
  8267. <em>
  8268. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8269. External Secrets meta/v1.SecretKeySelector
  8270. </a>
  8271. </em>
  8272. </td>
  8273. <td>
  8274. <p>The AccessKeyID is used for authentication</p>
  8275. </td>
  8276. </tr>
  8277. <tr>
  8278. <td>
  8279. <code>secretAccessKeySecretRef</code></br>
  8280. <em>
  8281. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8282. External Secrets meta/v1.SecretKeySelector
  8283. </a>
  8284. </em>
  8285. </td>
  8286. <td>
  8287. <p>The SecretAccessKey is used for authentication</p>
  8288. </td>
  8289. </tr>
  8290. <tr>
  8291. <td>
  8292. <code>sessionTokenSecretRef</code></br>
  8293. <em>
  8294. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8295. External Secrets meta/v1.SecretKeySelector
  8296. </a>
  8297. </em>
  8298. </td>
  8299. <td>
  8300. <p>The SessionToken used for authentication
  8301. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  8302. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  8303. </td>
  8304. </tr>
  8305. </tbody>
  8306. </table>
  8307. <h3 id="external-secrets.io/v1beta1.VaultAwsJWTAuth">VaultAwsJWTAuth
  8308. </h3>
  8309. <p>
  8310. (<em>Appears on:</em>
  8311. <a href="#external-secrets.io/v1beta1.VaultAwsAuth">VaultAwsAuth</a>,
  8312. <a href="#external-secrets.io/v1beta1.VaultIamAuth">VaultIamAuth</a>)
  8313. </p>
  8314. <p>
  8315. <p>Authenticate against AWS using service account tokens.</p>
  8316. </p>
  8317. <table>
  8318. <thead>
  8319. <tr>
  8320. <th>Field</th>
  8321. <th>Description</th>
  8322. </tr>
  8323. </thead>
  8324. <tbody>
  8325. <tr>
  8326. <td>
  8327. <code>serviceAccountRef</code></br>
  8328. <em>
  8329. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8330. External Secrets meta/v1.ServiceAccountSelector
  8331. </a>
  8332. </em>
  8333. </td>
  8334. <td>
  8335. </td>
  8336. </tr>
  8337. </tbody>
  8338. </table>
  8339. <h3 id="external-secrets.io/v1beta1.VaultCertAuth">VaultCertAuth
  8340. </h3>
  8341. <p>
  8342. (<em>Appears on:</em>
  8343. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8344. </p>
  8345. <p>
  8346. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  8347. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  8348. </p>
  8349. <table>
  8350. <thead>
  8351. <tr>
  8352. <th>Field</th>
  8353. <th>Description</th>
  8354. </tr>
  8355. </thead>
  8356. <tbody>
  8357. <tr>
  8358. <td>
  8359. <code>clientCert</code></br>
  8360. <em>
  8361. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8362. External Secrets meta/v1.SecretKeySelector
  8363. </a>
  8364. </em>
  8365. </td>
  8366. <td>
  8367. <em>(Optional)</em>
  8368. <p>ClientCert is a certificate to authenticate using the Cert Vault
  8369. authentication method</p>
  8370. </td>
  8371. </tr>
  8372. <tr>
  8373. <td>
  8374. <code>secretRef</code></br>
  8375. <em>
  8376. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8377. External Secrets meta/v1.SecretKeySelector
  8378. </a>
  8379. </em>
  8380. </td>
  8381. <td>
  8382. <p>SecretRef to a key in a Secret resource containing client private key to
  8383. authenticate with Vault using the Cert authentication method</p>
  8384. </td>
  8385. </tr>
  8386. </tbody>
  8387. </table>
  8388. <h3 id="external-secrets.io/v1beta1.VaultClientTLS">VaultClientTLS
  8389. </h3>
  8390. <p>
  8391. (<em>Appears on:</em>
  8392. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  8393. </p>
  8394. <p>
  8395. <p>VaultClientTLS is the configuration used for client side related TLS communication,
  8396. when the Vault server requires mutual authentication.</p>
  8397. </p>
  8398. <table>
  8399. <thead>
  8400. <tr>
  8401. <th>Field</th>
  8402. <th>Description</th>
  8403. </tr>
  8404. </thead>
  8405. <tbody>
  8406. <tr>
  8407. <td>
  8408. <code>certSecretRef</code></br>
  8409. <em>
  8410. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8411. External Secrets meta/v1.SecretKeySelector
  8412. </a>
  8413. </em>
  8414. </td>
  8415. <td>
  8416. <p>CertSecretRef is a certificate added to the transport layer
  8417. when communicating with the Vault server.
  8418. If no key for the Secret is specified, external-secret will default to &lsquo;tls.crt&rsquo;.</p>
  8419. </td>
  8420. </tr>
  8421. <tr>
  8422. <td>
  8423. <code>keySecretRef</code></br>
  8424. <em>
  8425. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8426. External Secrets meta/v1.SecretKeySelector
  8427. </a>
  8428. </em>
  8429. </td>
  8430. <td>
  8431. <p>KeySecretRef to a key in a Secret resource containing client private key
  8432. added to the transport layer when communicating with the Vault server.
  8433. If no key for the Secret is specified, external-secret will default to &lsquo;tls.key&rsquo;.</p>
  8434. </td>
  8435. </tr>
  8436. </tbody>
  8437. </table>
  8438. <h3 id="external-secrets.io/v1beta1.VaultIamAuth">VaultIamAuth
  8439. </h3>
  8440. <p>
  8441. (<em>Appears on:</em>
  8442. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8443. </p>
  8444. <p>
  8445. <p>VaultIamAuth authenticates with Vault using the Vault&rsquo;s AWS IAM authentication method. Refer: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  8446. </p>
  8447. <table>
  8448. <thead>
  8449. <tr>
  8450. <th>Field</th>
  8451. <th>Description</th>
  8452. </tr>
  8453. </thead>
  8454. <tbody>
  8455. <tr>
  8456. <td>
  8457. <code>path</code></br>
  8458. <em>
  8459. string
  8460. </em>
  8461. </td>
  8462. <td>
  8463. <p>Path where the AWS auth method is enabled in Vault, e.g: &ldquo;aws&rdquo;</p>
  8464. </td>
  8465. </tr>
  8466. <tr>
  8467. <td>
  8468. <code>region</code></br>
  8469. <em>
  8470. string
  8471. </em>
  8472. </td>
  8473. <td>
  8474. <p>AWS region</p>
  8475. </td>
  8476. </tr>
  8477. <tr>
  8478. <td>
  8479. <code>role</code></br>
  8480. <em>
  8481. string
  8482. </em>
  8483. </td>
  8484. <td>
  8485. <p>This is the AWS role to be assumed before talking to vault</p>
  8486. </td>
  8487. </tr>
  8488. <tr>
  8489. <td>
  8490. <code>vaultRole</code></br>
  8491. <em>
  8492. string
  8493. </em>
  8494. </td>
  8495. <td>
  8496. <p>Vault Role. In vault, a role describes an identity with a set of permissions, groups, or policies you want to attach a user of the secrets engine</p>
  8497. </td>
  8498. </tr>
  8499. <tr>
  8500. <td>
  8501. <code>externalID</code></br>
  8502. <em>
  8503. string
  8504. </em>
  8505. </td>
  8506. <td>
  8507. <p>AWS External ID set on assumed IAM roles</p>
  8508. </td>
  8509. </tr>
  8510. <tr>
  8511. <td>
  8512. <code>vaultAwsIamServerID</code></br>
  8513. <em>
  8514. string
  8515. </em>
  8516. </td>
  8517. <td>
  8518. <p>X-Vault-AWS-IAM-Server-ID is an additional header used by Vault IAM auth method to mitigate against different types of replay attacks. More details here: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  8519. </td>
  8520. </tr>
  8521. <tr>
  8522. <td>
  8523. <code>secretRef</code></br>
  8524. <em>
  8525. <a href="#external-secrets.io/v1beta1.VaultAwsAuthSecretRef">
  8526. VaultAwsAuthSecretRef
  8527. </a>
  8528. </em>
  8529. </td>
  8530. <td>
  8531. <em>(Optional)</em>
  8532. <p>Specify credentials in a Secret object</p>
  8533. </td>
  8534. </tr>
  8535. <tr>
  8536. <td>
  8537. <code>jwt</code></br>
  8538. <em>
  8539. <a href="#external-secrets.io/v1beta1.VaultAwsJWTAuth">
  8540. VaultAwsJWTAuth
  8541. </a>
  8542. </em>
  8543. </td>
  8544. <td>
  8545. <em>(Optional)</em>
  8546. <p>Specify a service account with IRSA enabled</p>
  8547. </td>
  8548. </tr>
  8549. </tbody>
  8550. </table>
  8551. <h3 id="external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth
  8552. </h3>
  8553. <p>
  8554. (<em>Appears on:</em>
  8555. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8556. </p>
  8557. <p>
  8558. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  8559. method, with the role name and a token stored in a Kubernetes Secret resource or
  8560. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  8561. </p>
  8562. <table>
  8563. <thead>
  8564. <tr>
  8565. <th>Field</th>
  8566. <th>Description</th>
  8567. </tr>
  8568. </thead>
  8569. <tbody>
  8570. <tr>
  8571. <td>
  8572. <code>path</code></br>
  8573. <em>
  8574. string
  8575. </em>
  8576. </td>
  8577. <td>
  8578. <p>Path where the JWT authentication backend is mounted
  8579. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  8580. </td>
  8581. </tr>
  8582. <tr>
  8583. <td>
  8584. <code>role</code></br>
  8585. <em>
  8586. string
  8587. </em>
  8588. </td>
  8589. <td>
  8590. <em>(Optional)</em>
  8591. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  8592. authentication method</p>
  8593. </td>
  8594. </tr>
  8595. <tr>
  8596. <td>
  8597. <code>secretRef</code></br>
  8598. <em>
  8599. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8600. External Secrets meta/v1.SecretKeySelector
  8601. </a>
  8602. </em>
  8603. </td>
  8604. <td>
  8605. <em>(Optional)</em>
  8606. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  8607. authenticate with Vault using the JWT/OIDC authentication method.</p>
  8608. </td>
  8609. </tr>
  8610. <tr>
  8611. <td>
  8612. <code>kubernetesServiceAccountToken</code></br>
  8613. <em>
  8614. <a href="#external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">
  8615. VaultKubernetesServiceAccountTokenAuth
  8616. </a>
  8617. </em>
  8618. </td>
  8619. <td>
  8620. <em>(Optional)</em>
  8621. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  8622. a token for with the <code>TokenRequest</code> API.</p>
  8623. </td>
  8624. </tr>
  8625. </tbody>
  8626. </table>
  8627. <h3 id="external-secrets.io/v1beta1.VaultKVStoreVersion">VaultKVStoreVersion
  8628. (<code>string</code> alias)</p></h3>
  8629. <p>
  8630. (<em>Appears on:</em>
  8631. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  8632. </p>
  8633. <p>
  8634. </p>
  8635. <table>
  8636. <thead>
  8637. <tr>
  8638. <th>Value</th>
  8639. <th>Description</th>
  8640. </tr>
  8641. </thead>
  8642. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  8643. <td></td>
  8644. </tr><tr><td><p>&#34;v2&#34;</p></td>
  8645. <td></td>
  8646. </tr></tbody>
  8647. </table>
  8648. <h3 id="external-secrets.io/v1beta1.VaultKubernetesAuth">VaultKubernetesAuth
  8649. </h3>
  8650. <p>
  8651. (<em>Appears on:</em>
  8652. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8653. </p>
  8654. <p>
  8655. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  8656. a Secret.</p>
  8657. </p>
  8658. <table>
  8659. <thead>
  8660. <tr>
  8661. <th>Field</th>
  8662. <th>Description</th>
  8663. </tr>
  8664. </thead>
  8665. <tbody>
  8666. <tr>
  8667. <td>
  8668. <code>mountPath</code></br>
  8669. <em>
  8670. string
  8671. </em>
  8672. </td>
  8673. <td>
  8674. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  8675. &ldquo;kubernetes&rdquo;</p>
  8676. </td>
  8677. </tr>
  8678. <tr>
  8679. <td>
  8680. <code>serviceAccountRef</code></br>
  8681. <em>
  8682. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8683. External Secrets meta/v1.ServiceAccountSelector
  8684. </a>
  8685. </em>
  8686. </td>
  8687. <td>
  8688. <em>(Optional)</em>
  8689. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  8690. If the service account is specified, the service account secret token JWT will be used
  8691. for authenticating with Vault. If the service account selector is not supplied,
  8692. the secretRef will be used instead.</p>
  8693. </td>
  8694. </tr>
  8695. <tr>
  8696. <td>
  8697. <code>secretRef</code></br>
  8698. <em>
  8699. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8700. External Secrets meta/v1.SecretKeySelector
  8701. </a>
  8702. </em>
  8703. </td>
  8704. <td>
  8705. <em>(Optional)</em>
  8706. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  8707. for authenticating with Vault. If a name is specified without a key,
  8708. <code>token</code> is the default. If one is not specified, the one bound to
  8709. the controller will be used.</p>
  8710. </td>
  8711. </tr>
  8712. <tr>
  8713. <td>
  8714. <code>role</code></br>
  8715. <em>
  8716. string
  8717. </em>
  8718. </td>
  8719. <td>
  8720. <p>A required field containing the Vault Role to assume. A Role binds a
  8721. Kubernetes ServiceAccount with a set of Vault policies.</p>
  8722. </td>
  8723. </tr>
  8724. </tbody>
  8725. </table>
  8726. <h3 id="external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  8727. </h3>
  8728. <p>
  8729. (<em>Appears on:</em>
  8730. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth</a>)
  8731. </p>
  8732. <p>
  8733. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  8734. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  8735. </p>
  8736. <table>
  8737. <thead>
  8738. <tr>
  8739. <th>Field</th>
  8740. <th>Description</th>
  8741. </tr>
  8742. </thead>
  8743. <tbody>
  8744. <tr>
  8745. <td>
  8746. <code>serviceAccountRef</code></br>
  8747. <em>
  8748. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8749. External Secrets meta/v1.ServiceAccountSelector
  8750. </a>
  8751. </em>
  8752. </td>
  8753. <td>
  8754. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  8755. </td>
  8756. </tr>
  8757. <tr>
  8758. <td>
  8759. <code>audiences</code></br>
  8760. <em>
  8761. []string
  8762. </em>
  8763. </td>
  8764. <td>
  8765. <em>(Optional)</em>
  8766. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  8767. account token for the service account referenced by <code>serviceAccountRef</code>.
  8768. Defaults to a single audience <code>vault</code> it not specified.
  8769. Deprecated: use serviceAccountRef.Audiences instead</p>
  8770. </td>
  8771. </tr>
  8772. <tr>
  8773. <td>
  8774. <code>expirationSeconds</code></br>
  8775. <em>
  8776. int64
  8777. </em>
  8778. </td>
  8779. <td>
  8780. <em>(Optional)</em>
  8781. <p>Optional expiration time in seconds that will be used to request a temporary
  8782. Kubernetes service account token for the service account referenced by
  8783. <code>serviceAccountRef</code>.
  8784. Deprecated: this will be removed in the future.
  8785. Defaults to 10 minutes.</p>
  8786. </td>
  8787. </tr>
  8788. </tbody>
  8789. </table>
  8790. <h3 id="external-secrets.io/v1beta1.VaultLdapAuth">VaultLdapAuth
  8791. </h3>
  8792. <p>
  8793. (<em>Appears on:</em>
  8794. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8795. </p>
  8796. <p>
  8797. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  8798. with the username and password stored in a Kubernetes Secret resource.</p>
  8799. </p>
  8800. <table>
  8801. <thead>
  8802. <tr>
  8803. <th>Field</th>
  8804. <th>Description</th>
  8805. </tr>
  8806. </thead>
  8807. <tbody>
  8808. <tr>
  8809. <td>
  8810. <code>path</code></br>
  8811. <em>
  8812. string
  8813. </em>
  8814. </td>
  8815. <td>
  8816. <p>Path where the LDAP authentication backend is mounted
  8817. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  8818. </td>
  8819. </tr>
  8820. <tr>
  8821. <td>
  8822. <code>username</code></br>
  8823. <em>
  8824. string
  8825. </em>
  8826. </td>
  8827. <td>
  8828. <p>Username is a LDAP user name used to authenticate using the LDAP Vault
  8829. authentication method</p>
  8830. </td>
  8831. </tr>
  8832. <tr>
  8833. <td>
  8834. <code>secretRef</code></br>
  8835. <em>
  8836. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8837. External Secrets meta/v1.SecretKeySelector
  8838. </a>
  8839. </em>
  8840. </td>
  8841. <td>
  8842. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  8843. user used to authenticate with Vault using the LDAP authentication
  8844. method</p>
  8845. </td>
  8846. </tr>
  8847. </tbody>
  8848. </table>
  8849. <h3 id="external-secrets.io/v1beta1.VaultProvider">VaultProvider
  8850. </h3>
  8851. <p>
  8852. (<em>Appears on:</em>
  8853. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  8854. </p>
  8855. <p>
  8856. <p>Configures an store to sync secrets using a HashiCorp Vault
  8857. KV backend.</p>
  8858. </p>
  8859. <table>
  8860. <thead>
  8861. <tr>
  8862. <th>Field</th>
  8863. <th>Description</th>
  8864. </tr>
  8865. </thead>
  8866. <tbody>
  8867. <tr>
  8868. <td>
  8869. <code>auth</code></br>
  8870. <em>
  8871. <a href="#external-secrets.io/v1beta1.VaultAuth">
  8872. VaultAuth
  8873. </a>
  8874. </em>
  8875. </td>
  8876. <td>
  8877. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  8878. </td>
  8879. </tr>
  8880. <tr>
  8881. <td>
  8882. <code>server</code></br>
  8883. <em>
  8884. string
  8885. </em>
  8886. </td>
  8887. <td>
  8888. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  8889. </td>
  8890. </tr>
  8891. <tr>
  8892. <td>
  8893. <code>path</code></br>
  8894. <em>
  8895. string
  8896. </em>
  8897. </td>
  8898. <td>
  8899. <em>(Optional)</em>
  8900. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  8901. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  8902. for fetching secrets from Vault is optional and will be appended
  8903. if not present in specified path.</p>
  8904. </td>
  8905. </tr>
  8906. <tr>
  8907. <td>
  8908. <code>version</code></br>
  8909. <em>
  8910. <a href="#external-secrets.io/v1beta1.VaultKVStoreVersion">
  8911. VaultKVStoreVersion
  8912. </a>
  8913. </em>
  8914. </td>
  8915. <td>
  8916. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  8917. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  8918. </td>
  8919. </tr>
  8920. <tr>
  8921. <td>
  8922. <code>namespace</code></br>
  8923. <em>
  8924. string
  8925. </em>
  8926. </td>
  8927. <td>
  8928. <em>(Optional)</em>
  8929. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  8930. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  8931. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  8932. </td>
  8933. </tr>
  8934. <tr>
  8935. <td>
  8936. <code>caBundle</code></br>
  8937. <em>
  8938. []byte
  8939. </em>
  8940. </td>
  8941. <td>
  8942. <em>(Optional)</em>
  8943. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  8944. if the Server URL is using HTTPS protocol. This parameter is ignored for
  8945. plain HTTP protocol connection. If not set the system root certificates
  8946. are used to validate the TLS connection.</p>
  8947. </td>
  8948. </tr>
  8949. <tr>
  8950. <td>
  8951. <code>tls</code></br>
  8952. <em>
  8953. <a href="#external-secrets.io/v1beta1.VaultClientTLS">
  8954. VaultClientTLS
  8955. </a>
  8956. </em>
  8957. </td>
  8958. <td>
  8959. <em>(Optional)</em>
  8960. <p>The configuration used for client side related TLS communication, when the Vault server
  8961. requires mutual authentication. Only used if the Server URL is using HTTPS protocol.
  8962. This parameter is ignored for plain HTTP protocol connection.
  8963. It&rsquo;s worth noting this configuration is different from the &ldquo;TLS certificates auth method&rdquo;,
  8964. which is available under the <code>auth.cert</code> section.</p>
  8965. </td>
  8966. </tr>
  8967. <tr>
  8968. <td>
  8969. <code>caProvider</code></br>
  8970. <em>
  8971. <a href="#external-secrets.io/v1beta1.CAProvider">
  8972. CAProvider
  8973. </a>
  8974. </em>
  8975. </td>
  8976. <td>
  8977. <em>(Optional)</em>
  8978. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  8979. </td>
  8980. </tr>
  8981. <tr>
  8982. <td>
  8983. <code>readYourWrites</code></br>
  8984. <em>
  8985. bool
  8986. </em>
  8987. </td>
  8988. <td>
  8989. <em>(Optional)</em>
  8990. <p>ReadYourWrites ensures isolated read-after-write semantics by
  8991. providing discovered cluster replication states in each request.
  8992. More information about eventual consistency in Vault can be found here
  8993. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  8994. </td>
  8995. </tr>
  8996. <tr>
  8997. <td>
  8998. <code>forwardInconsistent</code></br>
  8999. <em>
  9000. bool
  9001. </em>
  9002. </td>
  9003. <td>
  9004. <em>(Optional)</em>
  9005. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  9006. leader instead of simply retrying within a loop. This can increase performance if
  9007. the option is enabled serverside.
  9008. <a href="https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header">https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header</a></p>
  9009. </td>
  9010. </tr>
  9011. </tbody>
  9012. </table>
  9013. <h3 id="external-secrets.io/v1beta1.VaultUserPassAuth">VaultUserPassAuth
  9014. </h3>
  9015. <p>
  9016. (<em>Appears on:</em>
  9017. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  9018. </p>
  9019. <p>
  9020. <p>VaultUserPassAuth authenticates with Vault using UserPass authentication method,
  9021. with the username and password stored in a Kubernetes Secret resource.</p>
  9022. </p>
  9023. <table>
  9024. <thead>
  9025. <tr>
  9026. <th>Field</th>
  9027. <th>Description</th>
  9028. </tr>
  9029. </thead>
  9030. <tbody>
  9031. <tr>
  9032. <td>
  9033. <code>path</code></br>
  9034. <em>
  9035. string
  9036. </em>
  9037. </td>
  9038. <td>
  9039. <p>Path where the UserPassword authentication backend is mounted
  9040. in Vault, e.g: &ldquo;user&rdquo;</p>
  9041. </td>
  9042. </tr>
  9043. <tr>
  9044. <td>
  9045. <code>username</code></br>
  9046. <em>
  9047. string
  9048. </em>
  9049. </td>
  9050. <td>
  9051. <p>Username is a user name used to authenticate using the UserPass Vault
  9052. authentication method</p>
  9053. </td>
  9054. </tr>
  9055. <tr>
  9056. <td>
  9057. <code>secretRef</code></br>
  9058. <em>
  9059. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9060. External Secrets meta/v1.SecretKeySelector
  9061. </a>
  9062. </em>
  9063. </td>
  9064. <td>
  9065. <p>SecretRef to a key in a Secret resource containing password for the
  9066. user used to authenticate with Vault using the UserPass authentication
  9067. method</p>
  9068. </td>
  9069. </tr>
  9070. </tbody>
  9071. </table>
  9072. <h3 id="external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider
  9073. </h3>
  9074. <p>
  9075. (<em>Appears on:</em>
  9076. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  9077. </p>
  9078. <p>
  9079. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  9080. </p>
  9081. <table>
  9082. <thead>
  9083. <tr>
  9084. <th>Field</th>
  9085. <th>Description</th>
  9086. </tr>
  9087. </thead>
  9088. <tbody>
  9089. <tr>
  9090. <td>
  9091. <code>type</code></br>
  9092. <em>
  9093. <a href="#external-secrets.io/v1beta1.WebhookCAProviderType">
  9094. WebhookCAProviderType
  9095. </a>
  9096. </em>
  9097. </td>
  9098. <td>
  9099. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  9100. </td>
  9101. </tr>
  9102. <tr>
  9103. <td>
  9104. <code>name</code></br>
  9105. <em>
  9106. string
  9107. </em>
  9108. </td>
  9109. <td>
  9110. <p>The name of the object located at the provider type.</p>
  9111. </td>
  9112. </tr>
  9113. <tr>
  9114. <td>
  9115. <code>key</code></br>
  9116. <em>
  9117. string
  9118. </em>
  9119. </td>
  9120. <td>
  9121. <p>The key the value inside of the provider type to use, only used with &ldquo;Secret&rdquo; type</p>
  9122. </td>
  9123. </tr>
  9124. <tr>
  9125. <td>
  9126. <code>namespace</code></br>
  9127. <em>
  9128. string
  9129. </em>
  9130. </td>
  9131. <td>
  9132. <em>(Optional)</em>
  9133. <p>The namespace the Provider type is in.</p>
  9134. </td>
  9135. </tr>
  9136. </tbody>
  9137. </table>
  9138. <h3 id="external-secrets.io/v1beta1.WebhookCAProviderType">WebhookCAProviderType
  9139. (<code>string</code> alias)</p></h3>
  9140. <p>
  9141. (<em>Appears on:</em>
  9142. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider</a>)
  9143. </p>
  9144. <p>
  9145. </p>
  9146. <table>
  9147. <thead>
  9148. <tr>
  9149. <th>Value</th>
  9150. <th>Description</th>
  9151. </tr>
  9152. </thead>
  9153. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  9154. <td></td>
  9155. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  9156. <td></td>
  9157. </tr></tbody>
  9158. </table>
  9159. <h3 id="external-secrets.io/v1beta1.WebhookProvider">WebhookProvider
  9160. </h3>
  9161. <p>
  9162. (<em>Appears on:</em>
  9163. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  9164. </p>
  9165. <p>
  9166. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  9167. </p>
  9168. <table>
  9169. <thead>
  9170. <tr>
  9171. <th>Field</th>
  9172. <th>Description</th>
  9173. </tr>
  9174. </thead>
  9175. <tbody>
  9176. <tr>
  9177. <td>
  9178. <code>method</code></br>
  9179. <em>
  9180. string
  9181. </em>
  9182. </td>
  9183. <td>
  9184. <p>Webhook Method</p>
  9185. </td>
  9186. </tr>
  9187. <tr>
  9188. <td>
  9189. <code>url</code></br>
  9190. <em>
  9191. string
  9192. </em>
  9193. </td>
  9194. <td>
  9195. <p>Webhook url to call</p>
  9196. </td>
  9197. </tr>
  9198. <tr>
  9199. <td>
  9200. <code>headers</code></br>
  9201. <em>
  9202. map[string]string
  9203. </em>
  9204. </td>
  9205. <td>
  9206. <em>(Optional)</em>
  9207. <p>Headers</p>
  9208. </td>
  9209. </tr>
  9210. <tr>
  9211. <td>
  9212. <code>body</code></br>
  9213. <em>
  9214. string
  9215. </em>
  9216. </td>
  9217. <td>
  9218. <em>(Optional)</em>
  9219. <p>Body</p>
  9220. </td>
  9221. </tr>
  9222. <tr>
  9223. <td>
  9224. <code>timeout</code></br>
  9225. <em>
  9226. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  9227. Kubernetes meta/v1.Duration
  9228. </a>
  9229. </em>
  9230. </td>
  9231. <td>
  9232. <em>(Optional)</em>
  9233. <p>Timeout</p>
  9234. </td>
  9235. </tr>
  9236. <tr>
  9237. <td>
  9238. <code>result</code></br>
  9239. <em>
  9240. <a href="#external-secrets.io/v1beta1.WebhookResult">
  9241. WebhookResult
  9242. </a>
  9243. </em>
  9244. </td>
  9245. <td>
  9246. <p>Result formatting</p>
  9247. </td>
  9248. </tr>
  9249. <tr>
  9250. <td>
  9251. <code>secrets</code></br>
  9252. <em>
  9253. <a href="#external-secrets.io/v1beta1.WebhookSecret">
  9254. []WebhookSecret
  9255. </a>
  9256. </em>
  9257. </td>
  9258. <td>
  9259. <em>(Optional)</em>
  9260. <p>Secrets to fill in templates
  9261. These secrets will be passed to the templating function as key value pairs under the given name</p>
  9262. </td>
  9263. </tr>
  9264. <tr>
  9265. <td>
  9266. <code>caBundle</code></br>
  9267. <em>
  9268. []byte
  9269. </em>
  9270. </td>
  9271. <td>
  9272. <em>(Optional)</em>
  9273. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  9274. if the Server URL is using HTTPS protocol. This parameter is ignored for
  9275. plain HTTP protocol connection. If not set the system root certificates
  9276. are used to validate the TLS connection.</p>
  9277. </td>
  9278. </tr>
  9279. <tr>
  9280. <td>
  9281. <code>caProvider</code></br>
  9282. <em>
  9283. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">
  9284. WebhookCAProvider
  9285. </a>
  9286. </em>
  9287. </td>
  9288. <td>
  9289. <em>(Optional)</em>
  9290. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  9291. </td>
  9292. </tr>
  9293. </tbody>
  9294. </table>
  9295. <h3 id="external-secrets.io/v1beta1.WebhookResult">WebhookResult
  9296. </h3>
  9297. <p>
  9298. (<em>Appears on:</em>
  9299. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  9300. </p>
  9301. <p>
  9302. </p>
  9303. <table>
  9304. <thead>
  9305. <tr>
  9306. <th>Field</th>
  9307. <th>Description</th>
  9308. </tr>
  9309. </thead>
  9310. <tbody>
  9311. <tr>
  9312. <td>
  9313. <code>jsonPath</code></br>
  9314. <em>
  9315. string
  9316. </em>
  9317. </td>
  9318. <td>
  9319. <em>(Optional)</em>
  9320. <p>Json path of return value</p>
  9321. </td>
  9322. </tr>
  9323. </tbody>
  9324. </table>
  9325. <h3 id="external-secrets.io/v1beta1.WebhookSecret">WebhookSecret
  9326. </h3>
  9327. <p>
  9328. (<em>Appears on:</em>
  9329. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  9330. </p>
  9331. <p>
  9332. </p>
  9333. <table>
  9334. <thead>
  9335. <tr>
  9336. <th>Field</th>
  9337. <th>Description</th>
  9338. </tr>
  9339. </thead>
  9340. <tbody>
  9341. <tr>
  9342. <td>
  9343. <code>name</code></br>
  9344. <em>
  9345. string
  9346. </em>
  9347. </td>
  9348. <td>
  9349. <p>Name of this secret in templates</p>
  9350. </td>
  9351. </tr>
  9352. <tr>
  9353. <td>
  9354. <code>secretRef</code></br>
  9355. <em>
  9356. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9357. External Secrets meta/v1.SecretKeySelector
  9358. </a>
  9359. </em>
  9360. </td>
  9361. <td>
  9362. <p>Secret ref to fill in credentials</p>
  9363. </td>
  9364. </tr>
  9365. </tbody>
  9366. </table>
  9367. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerAuth">YandexCertificateManagerAuth
  9368. </h3>
  9369. <p>
  9370. (<em>Appears on:</em>
  9371. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  9372. </p>
  9373. <p>
  9374. </p>
  9375. <table>
  9376. <thead>
  9377. <tr>
  9378. <th>Field</th>
  9379. <th>Description</th>
  9380. </tr>
  9381. </thead>
  9382. <tbody>
  9383. <tr>
  9384. <td>
  9385. <code>authorizedKeySecretRef</code></br>
  9386. <em>
  9387. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9388. External Secrets meta/v1.SecretKeySelector
  9389. </a>
  9390. </em>
  9391. </td>
  9392. <td>
  9393. <em>(Optional)</em>
  9394. <p>The authorized key used for authentication</p>
  9395. </td>
  9396. </tr>
  9397. </tbody>
  9398. </table>
  9399. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">YandexCertificateManagerCAProvider
  9400. </h3>
  9401. <p>
  9402. (<em>Appears on:</em>
  9403. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  9404. </p>
  9405. <p>
  9406. </p>
  9407. <table>
  9408. <thead>
  9409. <tr>
  9410. <th>Field</th>
  9411. <th>Description</th>
  9412. </tr>
  9413. </thead>
  9414. <tbody>
  9415. <tr>
  9416. <td>
  9417. <code>certSecretRef</code></br>
  9418. <em>
  9419. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9420. External Secrets meta/v1.SecretKeySelector
  9421. </a>
  9422. </em>
  9423. </td>
  9424. <td>
  9425. </td>
  9426. </tr>
  9427. </tbody>
  9428. </table>
  9429. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  9430. </h3>
  9431. <p>
  9432. (<em>Appears on:</em>
  9433. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  9434. </p>
  9435. <p>
  9436. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  9437. </p>
  9438. <table>
  9439. <thead>
  9440. <tr>
  9441. <th>Field</th>
  9442. <th>Description</th>
  9443. </tr>
  9444. </thead>
  9445. <tbody>
  9446. <tr>
  9447. <td>
  9448. <code>apiEndpoint</code></br>
  9449. <em>
  9450. string
  9451. </em>
  9452. </td>
  9453. <td>
  9454. <em>(Optional)</em>
  9455. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  9456. </td>
  9457. </tr>
  9458. <tr>
  9459. <td>
  9460. <code>auth</code></br>
  9461. <em>
  9462. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerAuth">
  9463. YandexCertificateManagerAuth
  9464. </a>
  9465. </em>
  9466. </td>
  9467. <td>
  9468. <p>Auth defines the information necessary to authenticate against Yandex Certificate Manager</p>
  9469. </td>
  9470. </tr>
  9471. <tr>
  9472. <td>
  9473. <code>caProvider</code></br>
  9474. <em>
  9475. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">
  9476. YandexCertificateManagerCAProvider
  9477. </a>
  9478. </em>
  9479. </td>
  9480. <td>
  9481. <em>(Optional)</em>
  9482. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  9483. </td>
  9484. </tr>
  9485. </tbody>
  9486. </table>
  9487. <h3 id="external-secrets.io/v1beta1.YandexLockboxAuth">YandexLockboxAuth
  9488. </h3>
  9489. <p>
  9490. (<em>Appears on:</em>
  9491. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  9492. </p>
  9493. <p>
  9494. </p>
  9495. <table>
  9496. <thead>
  9497. <tr>
  9498. <th>Field</th>
  9499. <th>Description</th>
  9500. </tr>
  9501. </thead>
  9502. <tbody>
  9503. <tr>
  9504. <td>
  9505. <code>authorizedKeySecretRef</code></br>
  9506. <em>
  9507. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9508. External Secrets meta/v1.SecretKeySelector
  9509. </a>
  9510. </em>
  9511. </td>
  9512. <td>
  9513. <em>(Optional)</em>
  9514. <p>The authorized key used for authentication</p>
  9515. </td>
  9516. </tr>
  9517. </tbody>
  9518. </table>
  9519. <h3 id="external-secrets.io/v1beta1.YandexLockboxCAProvider">YandexLockboxCAProvider
  9520. </h3>
  9521. <p>
  9522. (<em>Appears on:</em>
  9523. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  9524. </p>
  9525. <p>
  9526. </p>
  9527. <table>
  9528. <thead>
  9529. <tr>
  9530. <th>Field</th>
  9531. <th>Description</th>
  9532. </tr>
  9533. </thead>
  9534. <tbody>
  9535. <tr>
  9536. <td>
  9537. <code>certSecretRef</code></br>
  9538. <em>
  9539. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9540. External Secrets meta/v1.SecretKeySelector
  9541. </a>
  9542. </em>
  9543. </td>
  9544. <td>
  9545. </td>
  9546. </tr>
  9547. </tbody>
  9548. </table>
  9549. <h3 id="external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider
  9550. </h3>
  9551. <p>
  9552. (<em>Appears on:</em>
  9553. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  9554. </p>
  9555. <p>
  9556. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  9557. </p>
  9558. <table>
  9559. <thead>
  9560. <tr>
  9561. <th>Field</th>
  9562. <th>Description</th>
  9563. </tr>
  9564. </thead>
  9565. <tbody>
  9566. <tr>
  9567. <td>
  9568. <code>apiEndpoint</code></br>
  9569. <em>
  9570. string
  9571. </em>
  9572. </td>
  9573. <td>
  9574. <em>(Optional)</em>
  9575. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  9576. </td>
  9577. </tr>
  9578. <tr>
  9579. <td>
  9580. <code>auth</code></br>
  9581. <em>
  9582. <a href="#external-secrets.io/v1beta1.YandexLockboxAuth">
  9583. YandexLockboxAuth
  9584. </a>
  9585. </em>
  9586. </td>
  9587. <td>
  9588. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  9589. </td>
  9590. </tr>
  9591. <tr>
  9592. <td>
  9593. <code>caProvider</code></br>
  9594. <em>
  9595. <a href="#external-secrets.io/v1beta1.YandexLockboxCAProvider">
  9596. YandexLockboxCAProvider
  9597. </a>
  9598. </em>
  9599. </td>
  9600. <td>
  9601. <em>(Optional)</em>
  9602. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  9603. </td>
  9604. </tr>
  9605. </tbody>
  9606. </table>
  9607. <hr/>
  9608. <p><em>
  9609. Generated with <code>gen-crd-api-reference-docs</code>.
  9610. </em></p>
  9611. </article>
  9612. </div>
  9613. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  9614. </div>
  9615. </main>
  9616. <footer class="md-footer">
  9617. <div class="md-footer-meta md-typeset">
  9618. <div class="md-footer-meta__inner md-grid">
  9619. <div class="md-copyright">
  9620. <div class="md-copyright__highlight">
  9621. &copy; 2024 The external-secrets Authors.<br/>
  9622. &copy; 2024 The Linux Foundation. All rights reserved.<br/><br/>
  9623. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  9624. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  9625. </div>
  9626. Made with
  9627. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  9628. Material for MkDocs
  9629. </a>
  9630. </div>
  9631. </div>
  9632. </div>
  9633. </footer>
  9634. </div>
  9635. <div class="md-dialog" data-md-component="dialog">
  9636. <div class="md-dialog__inner md-typeset"></div>
  9637. </div>
  9638. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  9639. <script src="../../assets/javascripts/bundle.5cfa9459.min.js"></script>
  9640. </body>
  9641. </html>